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