| Age | Commit message (Expand) | Author | Lines |
| 2011-05-13 | Remove rustboot from the repository. | Graydon Hoare | -18438/+0 |
| 2011-04-28 | Fix nested patterns in rustboot | Tim Chevalier | -16/+34 |
| 2011-04-19 | Remove effect system from src. | Graydon Hoare | -392/+12 |
| 2011-04-19 | Overhaul logging system in runtime | Marijn Haverbeke | -4/+4 |
| 2011-04-19 | replace error logging with log_err in stdlib and rustc | Marijn Haverbeke | -2/+4 |
| 2011-04-19 | Add log_err to rustboot | Marijn Haverbeke | -11/+14 |
| 2011-04-08 | Disable effect checking in rustboot | Marijn Haverbeke | -3/+5 |
| 2011-04-02 | Change rust_vec to have a 16-byte header, to 16-byte-align vec-body data. Maj... | Graydon Hoare | -5/+7 |
| 2011-03-25 | Another go at changing compile-command, this time using RBUILD env var. | Graydon Hoare | -14/+14 |
| 2011-03-25 | Revert "Bulk-edit compile commands in emacs chatter to point to assumed build... | Graydon Hoare | -14/+14 |
| 2011-03-25 | Bulk-edit compile commands in emacs chatter to point to assumed build/ dir of... | Graydon Hoare | -14/+14 |
| 2011-03-16 | Switch all vases of vec += elt to vec += vec. Prohibit former in rustboot. Tw... | Graydon Hoare | -3/+1 |
| 2011-03-11 | Switch rustboot from element-wise copying to take+drop+memcpy. Un-XFAIL size-... | Graydon Hoare | -100/+76 |
| 2011-03-10 | Fix seemingly un-noticed thinko in structural copying code in rustboot. | Graydon Hoare | -1/+1 |
| 2011-03-05 | Make ret and fail stmts have 0 out-edges, Closes #250. | Graydon Hoare | -0/+5 |
| 2011-03-03 | Rewrite rustboot's flow-graph wiring passes to be less awful. Add test for ne... | Graydon Hoare | -248/+104 |
| 2011-02-22 | Add ABI tagging to crates, adjust rustc output and runtime stack-frame setup ... | Graydon Hoare | -0/+4 |
| 2011-01-21 | Tweak effect-checking rules in rustboot, remove/rewrite/re-auth impure cases ... | Graydon Hoare | -34/+55 |
| 2011-01-12 | Wrap long line. | Graydon Hoare | -2/+3 |
| 2011-01-12 | Guard a bunch more logging calls. Cut 10s off rustc compile time. | Graydon Hoare | -18/+31 |
| 2011-01-11 | Guard unguarded log calls that snuck in. Shave 5s off building rustc. | Graydon Hoare | -3/+5 |
| 2011-01-11 | Recursively genericize types and spread across glue. Saves 1mb size, 8s compi... | Graydon Hoare | -16/+38 |
| 2011-01-11 | Out-of-line all drop glue. Shaves 50kb from rustc. | Graydon Hoare | -11/+1 |
| 2011-01-11 | Make rustboot fn/obj drops generic; cuts 300kb size, 10s compile time off rustc. | Graydon Hoare | -0/+16 |
| 2010-12-21 | rustboot: Only bottom out at opaque IL types after finding two cycles. DON'T ... | Patrick Walton | -1/+1 |
| 2010-12-03 | Change 'stratum' to the friendlier term 'layer'. | Graydon Hoare | -44/+44 |
| 2010-12-01 | Add code to fail on non-exhaustive alt matching. Fix all cases this picked up... | Graydon Hoare | -1/+8 |
| 2010-11-29 | Change mutability into a type constructor. | Graydon Hoare | -0/+7 |
| 2010-11-19 | rustboot: Say when a binary operator is unimplemented rather than asserting i... | Patrick Walton | -2/+7 |
| 2010-11-19 | Isolate while-header bug to minimal testcase, fix in rustboot, remove workaro... | Graydon Hoare | -33/+70 |
| 2010-11-18 | rustboot: Don't use walk to traverse statements in type.ml; fixes redundant c... | Patrick Walton | -54/+59 |
| 2010-11-16 | Update frame logic to be compatible with SysV x86 ABI. Improves diagnostics. | Graydon Hoare | -15/+26 |
| 2010-11-10 | Redo the scheme for block context chaining and termination, to simplify and s... | Graydon Hoare | -1/+2 |
| 2010-11-09 | Support a special const-value refcount, use it for const strings. | Graydon Hoare | -15/+41 |
| 2010-11-08 | Add a check for binding an alias. Good thing, as we had two instances in our ... | Graydon Hoare | -0/+26 |
| 2010-11-05 | rustboot: Report the alias-ness of function parameters in type errors | Patrick Walton | -1/+6 |
| 2010-11-05 | rustboot: If something that wasn't a type was found where a type was expected... | Patrick Walton | -1/+1 |
| 2010-11-05 | rustboot: Report mismatched effect qualifiers | Patrick Walton | -2/+5 |
| 2010-11-05 | rustboot: Report cyclic import errors at the right location | Patrick Walton | -6/+9 |
| 2010-11-05 | rustboot: Describe the cycle when reporting a cyclic import error | Patrick Walton | -1/+10 |
| 2010-11-03 | rustboot: When resolving recursively, build up error messages recursively as ... | Patrick Walton | -25/+35 |
| 2010-11-03 | rustboot: Say exactly which name was unbound when reporting unbound name errors | Patrick Walton | -52/+73 |
| 2010-11-02 | Shift obj, type, param decls to have strata rather than effects. | Graydon Hoare | -26/+51 |
| 2010-11-02 | Split out stratum-checking pass, implement more-strict (overly aggressive) im... | Graydon Hoare | -93/+142 |
| 2010-11-02 | First pass on splitting stratum and opacity off of effects. WIP. | Graydon Hoare | -34/+47 |
| 2010-10-28 | rustboot: Emit an error instead of asserting in trans when a T is passed by v... | Patrick Walton | -1/+20 |
| 2010-10-28 | Revert "rustboot: Emit an error instead of asserting in trans when a T is pas... | Patrick Walton | -20/+1 |
| 2010-10-28 | rustboot: Emit an error instead of asserting in trans when a T is passed by v... | Patrick Walton | -1/+20 |
| 2010-10-27 | Emit a sensible error message if one or more of the parameters isn't enough c... | Patrick Walton | -4/+9 |
| 2010-10-27 | rustboot: Emit an error message instead of asserting on a type-param mismatch... | Patrick Walton | -6/+10 |