aboutsummaryrefslogtreecommitdiff
path: root/src/boot/me
Commit message (Collapse)AuthorAgeFilesLines
* Tweak effect-checking rules in rustboot, remove/rewrite/re-auth impure cases ↵Graydon Hoare2011-01-211-34/+55
| | | | in trans.rs
* Wrap long line.Graydon Hoare2011-01-121-2/+3
|
* Guard a bunch more logging calls. Cut 10s off rustc compile time.Graydon Hoare2011-01-122-18/+31
|
* Guard unguarded log calls that snuck in. Shave 5s off building rustc.Graydon Hoare2011-01-111-3/+5
|
* Recursively genericize types and spread across glue. Saves 1mb size, 8s ↵Graydon Hoare2011-01-112-16/+38
| | | | compile time on rustc.
* Out-of-line all drop glue. Shaves 50kb from rustc.Graydon Hoare2011-01-111-11/+1
|
* Make rustboot fn/obj drops generic; cuts 300kb size, 10s compile time off rustc.Graydon Hoare2011-01-111-0/+16
|
* rustboot: Only bottom out at opaque IL types after finding two cycles. DON'T ↵Patrick Walton2010-12-211-1/+1
| | | | ASK ME WHY THIS WORKS.
* Change 'stratum' to the friendlier term 'layer'.Graydon Hoare2010-12-033-44/+44
|
* Add code to fail on non-exhaustive alt matching. Fix all cases this picked ↵Graydon Hoare2010-12-011-1/+8
| | | | up in rustc.
* Change mutability into a type constructor.Graydon Hoare2010-11-291-0/+7
|
* rustboot: Say when a binary operator is unimplemented rather than asserting ↵Patrick Walton2010-11-191-2/+7
| | | | in trans
* Isolate while-header bug to minimal testcase, fix in rustboot, remove ↵Graydon Hoare2010-11-193-33/+70
| | | | workaround in rustc.
* rustboot: Don't use walk to traverse statements in type.ml; fixes redundant ↵Patrick Walton2010-11-181-54/+59
| | | | checking, improves diagnostics. Also report untyped slots.
* Update frame logic to be compatible with SysV x86 ABI. Improves diagnostics.Graydon Hoare2010-11-162-15/+26
|
* Redo the scheme for block context chaining and termination, to simplify and ↵Graydon Hoare2010-11-101-1/+2
| | | | support ret better.
* Support a special const-value refcount, use it for const strings.Graydon Hoare2010-11-091-15/+41
|
* Add a check for binding an alias. Good thing, as we had two instances in our ↵Graydon Hoare2010-11-081-0/+26
| | | | library.
* rustboot: Report the alias-ness of function parameters in type errorsPatrick Walton2010-11-051-1/+6
|
* rustboot: If something that wasn't a type was found where a type was ↵Patrick Walton2010-11-051-1/+1
| | | | expected, report where the error was
* rustboot: Report mismatched effect qualifiersPatrick Walton2010-11-051-2/+5
|
* rustboot: Report cyclic import errors at the right locationPatrick Walton2010-11-052-6/+9
|
* rustboot: Describe the cycle when reporting a cyclic import errorPatrick Walton2010-11-051-1/+10
|
* rustboot: When resolving recursively, build up error messages recursively as ↵Patrick Walton2010-11-031-25/+35
| | | | well
* rustboot: Say exactly which name was unbound when reporting unbound name errorsPatrick Walton2010-11-034-52/+73
|
* Shift obj, type, param decls to have strata rather than effects.Graydon Hoare2010-11-022-26/+51
|
* Split out stratum-checking pass, implement more-strict (overly aggressive) ↵Graydon Hoare2010-11-022-93/+142
| | | | impure-effect checking.
* First pass on splitting stratum and opacity off of effects. WIP.Graydon Hoare2010-11-024-34/+47
|
* rustboot: Emit an error instead of asserting in trans when a T is passed by ↵Patrick Walton2010-10-281-1/+20
| | | | value
* Revert "rustboot: Emit an error instead of asserting in trans when a T is ↵Patrick Walton2010-10-281-20/+1
| | | | | | passed by value" due to test failures This reverts commit ee901858a27bf00c7dd66e7cfecb9dd97029dba8.
* rustboot: Emit an error instead of asserting in trans when a T is passed by ↵Patrick Walton2010-10-281-1/+20
| | | | value
* Emit a sensible error message if one or more of the parameters isn't enough ↵Patrick Walton2010-10-271-4/+9
| | | | context to instantiate a polymorphic function
* rustboot: Emit an error message instead of asserting on a type-param ↵Patrick Walton2010-10-272-6/+10
| | | | mismatch in tag constructors in patterns
* rustboot: For error reporting, map tag IDs to *tag* names, not to tag ↵Patrick Walton2010-10-261-4/+5
| | | | *variant* names
* rustboot: Use a less hacky method to report tag names in error messages, ↵Patrick Walton2010-10-262-36/+10
| | | | which works for resolve errors as well
* Thread a source location though for type error reporting instead of the ↵Patrick Walton2010-10-251-10/+11
| | | | awful "List.hd scopes" hack
* Prevent Not_found in the unfortunate case when we have to ↵Patrick Walton2010-10-251-1/+2
| | | | "friendly_stringify" a tag type we haven't yet recorded into cx.ctxt_all_tag_info
* rustboot: If the user tries to instantiate a non-parametric type with type ↵Patrick Walton2010-10-222-2/+7
| | | | parameters, report the location of the error
* rustboot: Don't use ridiculous type names when describing simple types like ↵Patrick Walton2010-10-211-1/+1
| | | | int and uint
* Use "friendly" type names when reporting a "mismatched type-params" errorPatrick Walton2010-10-212-88/+79
|
* Move the "friendly" type printer to semantPatrick Walton2010-10-202-87/+85
|
* Eliminate <tag#> stuff from the "friendly" type errorsPatrick Walton2010-10-201-0/+33
|
* Print better error messages when the number of type params is wrongPatrick Walton2010-10-201-1/+6
|
* Make type errors in rustboot report the friendly type of both expected and ↵Graydon Hoare2010-10-181-2/+4
| | | | actual.
* Encode and decode tag types in dwarf properly. Add list module to std. Shift ↵Graydon Hoare2010-10-153-92/+214
| | | | rustc to use std.util.option. Fix various dependent bugs. Closes #73.
* Fix mem += mem bug in vec-append.Graydon Hoare2010-10-141-2/+2
|
* Fix typos in Type.friendly_stringify.Graydon Hoare2010-10-141-3/+3
|
* Typecheck tags in "alt" patternsPatrick Walton2010-10-141-0/+2
|
* Fix crasher in rustc.Graydon Hoare2010-10-141-3/+4
|
* Move the friendly-names table to semant, reuse it in the name mangler.Graydon Hoare2010-10-133-16/+19
|