| Age | Commit message (Expand) | Author | Lines |
| 2011-03-01 | Populate default compilation environment as in rustboot. | Graydon Hoare | -7/+44 |
| 2011-03-01 | Fix typo in comment. | Graydon Hoare | -1/+1 |
| 2011-03-01 | Implement structured compare for rec, tup, tag. Un-XFAIL structured-compare.rs. | Graydon Hoare | -22/+55 |
| 2011-03-01 | rustc: Switch from storing nullary tags as constants to storing their discrim... | Patrick Walton | -22/+31 |
| 2011-02-28 | rustc: Mark tags that have subtypes with dynamic size as dynamic | Patrick Walton | -0/+7 |
| 2011-02-28 | rustc: Trivial cleanup: Remove unused "arity" tag | Patrick Walton | -1/+0 |
| 2011-02-28 | More complete sketch of structural compare. Still not quite working. | Graydon Hoare | -38/+115 |
| 2011-02-28 | Groundwork for structural comparison. Still lacking the actual loop that does... | Graydon Hoare | -26/+118 |
| 2011-02-28 | rustc: Write tag variant discriminants into the crate as integer constants | Patrick Walton | -1/+15 |
| 2011-02-28 | Declare wrappers to the native functions and use those to create | Rafael Ávila de Espíndola | -4/+29 |
| 2011-02-28 | Update the function declarations with rust abi. A cdecl | Rafael Ávila de Espíndola | -1/+12 |
| 2011-02-25 | rustc: Make the tag info table keyed by both tag ID and type parameter. Also ... | Patrick Walton | -14/+24 |
| 2011-02-25 | rustc: Eliminate the "ty_params" field from the tag info | Patrick Walton | -6/+14 |
| 2011-02-25 | rustc: Eliminate the "variants" field from the tag info | Patrick Walton | -37/+22 |
| 2011-02-25 | rustc: Make iter_structural_ty() not use the "variants" field in the tag info | Patrick Walton | -62/+42 |
| 2011-02-25 | Add a tag_variant_count() function to trans that doesn't go through the soon-... | Patrick Walton | -1/+14 |
| 2011-02-25 | rustc: Move all of the logic in type_of() to type_of_inner() | Patrick Walton | -38/+40 |
| 2011-02-25 | Revert "rustc: Push type parameters down through alt tag patterns; add a test... | Patrick Walton | -68/+11 |
| 2011-02-25 | Fix typo in crate directive evaluator. | Graydon Hoare | -1/+1 |
| 2011-02-25 | rustc: Remove FIXME obsoleted by the previous commit | Patrick Walton | -5/+0 |
| 2011-02-25 | rustc: Push type parameters down through alt tag patterns; add a test | Patrick Walton | -6/+68 |
| 2011-02-25 | Pass the abi of native functions all the way to codegen. | Rafael Ávila de Espíndola | -32/+51 |
| 2011-02-25 | There are no native iterators (or at least they are not going to be supported | Rafael Ávila de Espíndola | -33/+38 |
| 2011-02-25 | Disable test that is failing on valgrind. | Rafael Ávila de Espíndola | -1/+2 |
| 2011-02-24 | rustc: Perform type parameter substitutions when emitting glue for generic ta... | Patrick Walton | -32/+56 |
| 2011-02-24 | Support the awful alt-else form in rustboot's cexp grammar, at least transien... | Graydon Hoare | -0/+17 |
| 2011-02-24 | Connect the crate and source parsers together. | Graydon Hoare | -2/+58 |
| 2011-02-24 | Handle the mutant 'let'-block directive in rustboot, temporarily. | Graydon Hoare | -0/+15 |
| 2011-02-24 | Factor crate expr evaluator out of parser, expand to simple scalars and ops, ... | Graydon Hoare | -82/+453 |
| 2011-02-24 | Cast more aggressively to the callee type when calling generic functions. Add... | Patrick Walton | -3/+19 |
| 2011-02-24 | Revert "Cast more aggressively to the callee type when calling generic functi... | Patrick Walton | -13/+3 |
| 2011-02-24 | Cast more aggressively to the callee type when calling generic functions. Add... | Patrick Walton | -3/+13 |
| 2011-02-24 | Parse crate directive tree in one pass, then evaluate it in a second. | Graydon Hoare | -33/+96 |
| 2011-02-24 | Restore working rustc run-pass tests | Brian Anderson | -1/+1 |
| 2011-02-23 | Invert test/run-pass/ for rustc | Patrick Walton | -113/+104 |
| 2011-02-23 | Implement type descriptor binding. Un-XFAIL test/run-pass/generic-bind.rs. | Patrick Walton | -19/+100 |
| 2011-02-23 | Add a type for crate directives, to support intermixing with exprs in crate f... | Graydon Hoare | -1/+17 |
| 2011-02-23 | Parse auth clauses, drop them on the floor. Nothing exists to use them yet an... | Graydon Hoare | -0/+9 |
| 2011-02-23 | Use the computed abi :-( | Rafael Ávila de Espíndola | -1/+1 |
| 2011-02-23 | Parse the abi in native modules. | Rafael Ávila de Espíndola | -11/+49 |
| 2011-02-23 | Handle the new ty_native_fn in type check. | Rafael Ávila de Espíndola | -25/+96 |
| 2011-02-22 | Rustify some comments lifted directly from the sha-1 reference implementation | Brian Anderson | -2/+2 |
| 2011-02-22 | Teach rustc about reserved keywords | Brian Anderson | -1/+58 |
| 2011-02-22 | Rename std._io to std.io since 'io' is no longer a keyword | Brian Anderson | -8/+8 |
| 2011-02-22 | rustc: Perform explicit type substitution as requested by the programmer | Patrick Walton | -0/+66 |
| 2011-02-22 | Un-XFAIL argv.rs and command-line-args.rs. | Graydon Hoare | -0/+2 |
| 2011-02-22 | Drop for-loop temporary at end of scope, fixes memory leak. | Graydon Hoare | -0/+1 |
| 2011-02-22 | Add ABI tagging to crates, adjust rustc output and runtime stack-frame setup ... | Graydon Hoare | -42/+97 |
| 2011-02-22 | Rework typechecking of bind expressions | Patrick Walton | -36/+29 |
| 2011-02-22 | Finish the type of native functions. We now get | Rafael Ávila de Espíndola | -2/+2 |