| Age | Commit message (Expand) | Author | Lines |
| 2011-04-22 | rustc: Move the type serialization logic to an Encode module | Patrick Walton | -97/+108 |
| 2011-04-22 | rustc: Remove direct access to the cname field of types | Patrick Walton | -4/+7 |
| 2011-04-22 | rustc: Switch @ty.t to ty.t so that we can change it to a uint | Patrick Walton | -423/+424 |
| 2011-04-22 | rustc: Eliminate the direct use of ty.t.struct | Patrick Walton | -111/+118 |
| 2011-04-22 | Dispose the module. | Rafael Ávila de Espíndola | -0/+1 |
| 2011-04-22 | rustc: Add a fast path when the types to be unified are exactly equal | Patrick Walton | -0/+3 |
| 2011-04-22 | rustc: Add a fast path if there are no type substitutions to be made | Patrick Walton | -2/+8 |
| 2011-04-22 | rustc: Improve the efficiency of lookup_item_type() slightly | Patrick Walton | -7/+7 |
| 2011-04-22 | Switch to binary search in codemap.lookup_pos | Marijn Haverbeke | -19/+15 |
| 2011-04-21 | rustc: Intern types | Patrick Walton | -331/+73 |
| 2011-04-21 | Fix the signature of expr_ext | Brian Anderson | -8/+8 |
| 2011-04-21 | rustc: Add a shallow type equality function, not used yet | Patrick Walton | -0/+321 |
| 2011-04-21 | rustc: Pass a type store around, which does nothing yet | Patrick Walton | -440/+600 |
| 2011-04-21 | rustc: Make the parser never assign any types, not even ty_nil | Patrick Walton | -5/+4 |
| 2011-04-21 | rustc: Get rid of boring_ann(); it duplicates plain_ann() | Patrick Walton | -17/+14 |
| 2011-04-21 | rustc: Create a unification context | Patrick Walton | -99/+75 |
| 2011-04-21 | rustc: Move ty.unify to a separate namespace | Patrick Walton | -46/+50 |
| 2011-04-21 | Change ty.eq_ty to avoid stringification. | Graydon Hoare | -43/+304 |
| 2011-04-20 | rustc: Create an item collection context during typechecking; move collection... | Patrick Walton | -170/+136 |
| 2011-04-20 | Fix walk bug that coupled with marijns work to regress stage1. | Graydon Hoare | -4/+3 |
| 2011-04-20 | rustc: Add a type unification cache | Patrick Walton | -3/+63 |
| 2011-04-20 | rustc: Define type hashing inductively | Patrick Walton | -12/+97 |
| 2011-04-20 | rustc: Precompute type hashes | Patrick Walton | -39/+56 |
| 2011-04-20 | rustc: Remove all manual type construction outside ty.rs | Patrick Walton | -101/+107 |
| 2011-04-20 | rustc: Remove all uses of plain_ty() and friends from outside of ty.rs | Patrick Walton | -165/+136 |
| 2011-04-20 | rustc: Introduce preferred type constructors, which will eventually precomput... | Patrick Walton | -1/+47 |
| 2011-04-20 | Remove last uses of fold from trans.rs | Marijn Haverbeke | -39/+34 |
| 2011-04-20 | Change trans.collect_items to use walk, not fold | Marijn Haverbeke | -127/+112 |
| 2011-04-20 | Change collect_upvars from using fold to using walk | Marijn Haverbeke | -0/+1 |
| 2011-04-20 | Integrate walk.rs | Marijn Haverbeke | -23/+29 |
| 2011-04-20 | Fix #335, log context needs to be a scope to capture cleanups. | Graydon Hoare | -1/+1 |
| 2011-04-19 | Small fast-path hack to ty.hash_ty and eq_ty. | Graydon Hoare | -0/+45 |
| 2011-04-19 | rustc: Add a -noverify option | Patrick Walton | -11/+20 |
| 2011-04-19 | Add testcase for bootstrap blocker and fix for each result type to nil. | Graydon Hoare | -3/+4 |
| 2011-04-19 | rustc: Cache the results of type_of() | Patrick Walton | -16/+25 |
| 2011-04-19 | rustc: Use marijnh's stringifier for type hash and equality, since it's not s... | Patrick Walton | -2/+9 |
| 2011-04-19 | rustc: Make structured comparison glue instead of emitting it inline | Patrick Walton | -196/+340 |
| 2011-04-19 | Handle nested items correctly in typestate_check | Tim Chevalier | -94/+812 |
| 2011-04-19 | Remove half-baked 'opacity' layer qualifier. | Graydon Hoare | -27/+0 |
| 2011-04-19 | Remove effect system from src. | Graydon Hoare | -348/+285 |
| 2011-04-19 | rustc: Allow glue to be emitted even for scalar types; this is necessary to s... | Patrick Walton | -38/+33 |
| 2011-04-19 | rustc: Don't return "result" types from glue helper functions. This allows gl... | Patrick Walton | -46/+46 |
| 2011-04-19 | rustc: Assert that each basic block isn't terminated before adding instructio... | Patrick Walton | -2/+101 |
| 2011-04-19 | replace error logging with log_err in stdlib and rustc | Marijn Haverbeke | -113/+111 |
| 2011-04-19 | add log_err to rustc | Marijn Haverbeke | -26/+40 |
| 2011-04-19 | Add log_err to rustboot | Marijn Haverbeke | -1/+1 |
| 2011-04-18 | Support 0 flag in #fmt | Brian Anderson | -7/+14 |
| 2011-04-18 | Boilerplate city, for anyone who wants it. | Graydon Hoare | -0/+471 |
| 2011-04-18 | rustc: Add an operation field to compare glue with ==, <=, and < modes | Patrick Walton | -9/+17 |
| 2011-04-18 | rustc: Create stub glue for structural comparison | Patrick Walton | -23/+80 |