aboutsummaryrefslogtreecommitdiff
path: root/src/comp/middle/trans.rs
Commit message (Expand)AuthorAgeFilesLines
* Fix some nested patterns in rustcTim Chevalier2011-04-281-0/+2
* Actually perform take/drop on args (oh my!)Graydon Hoare2011-04-281-4/+36
* Cache sha1 values of types, use seq-based mangling for glue as it's private a...Graydon Hoare2011-04-271-10/+17
* Partly disable simplified-type glue optimization due to compile-time cost.Graydon Hoare2011-04-271-1/+11
* rustc: Ignore the return value of native functions that return nil. stage1 ca...Patrick Walton2011-04-261-1/+10
* rustc: Actually write the optimized bitcode when --save-temps is onPatrick Walton2011-04-261-12/+13
* Speed up calls to get_tydesc and kill cname-redundant glue generation.Graydon Hoare2011-04-261-16/+29
* Various bits of trans lint, nothing major.Graydon Hoare2011-04-261-25/+36
* rustc: Use the abbreviated type names to avoid LLVM bitcode size explosionPatrick Walton2011-04-251-2/+3
* Kick ty_var and ty_local entries out of the type store. Pre-compute presence ...Graydon Hoare2011-04-251-6/+7
* rustc: Add a -save-temps option to save bitcode and write output simultaneous...Patrick Walton2011-04-251-6/+49
* rustc: Pass a "type context" around instead of directly passing the type stor...Patrick Walton2011-04-251-233/+223
* Bind tag members as aliases rather than new locals.Graydon Hoare2011-04-251-19/+18
* Fix busted iter/put code. Un-XFAIL foreach-box-drop.rs.Graydon Hoare2011-04-231-95/+94
* rustc: Thread the type store through everything that needs to access type str...Patrick Walton2011-04-221-168/+186
* rustc: Move the type serialization logic to an Encode modulePatrick Walton2011-04-221-1/+4
* rustc: Switch @ty.t to ty.t so that we can change it to a uintPatrick Walton2011-04-221-152/+152
* rustc: Eliminate the direct use of ty.t.structPatrick Walton2011-04-221-32/+32
* Dispose the module.Rafael Ávila de Espíndola2011-04-221-0/+1
* rustc: Intern typesPatrick Walton2011-04-211-2/+2
* rustc: Pass a type store around, which does nothing yetPatrick Walton2011-04-211-82/+115
* rustc: Remove all manual type construction outside ty.rsPatrick Walton2011-04-201-4/+4
* rustc: Remove all uses of plain_ty() and friends from outside of ty.rsPatrick Walton2011-04-201-40/+30
* Remove last uses of fold from trans.rsMarijn Haverbeke2011-04-201-39/+34
* Change trans.collect_items to use walk, not foldMarijn Haverbeke2011-04-201-127/+112
* Integrate walk.rsMarijn Haverbeke2011-04-201-22/+28
* Fix #335, log context needs to be a scope to capture cleanups.Graydon Hoare2011-04-201-1/+1
* rustc: Add a -noverify optionPatrick Walton2011-04-191-6/+9
* Add testcase for bootstrap blocker and fix for each result type to nil.Graydon Hoare2011-04-191-3/+4
* rustc: Cache the results of type_of()Patrick Walton2011-04-191-0/+9
* rustc: Make structured comparison glue instead of emitting it inlinePatrick Walton2011-04-191-196/+333
* rustc: Allow glue to be emitted even for scalar types; this is necessary to s...Patrick Walton2011-04-191-38/+33
* rustc: Don't return "result" types from glue helper functions. This allows gl...Patrick Walton2011-04-191-46/+46
* rustc: Assert that each basic block isn't terminated before adding instructio...Patrick Walton2011-04-191-1/+1
* replace error logging with log_err in stdlib and rustcMarijn Haverbeke2011-04-191-16/+17
* add log_err to rustcMarijn Haverbeke2011-04-191-8/+9
* rustc: Add an operation field to compare glue with ==, <=, and < modesPatrick Walton2011-04-181-9/+12
* rustc: Create stub glue for structural comparisonPatrick Walton2011-04-181-23/+78
* Update foregoing patches to leave rust_crate alone.Marijn Haverbeke2011-04-181-11/+11
* Add a -c option.Rafael Ávila de Espíndola2011-04-181-4/+26
* Make log the log level configurable per moduleMarijn Haverbeke2011-04-181-27/+111
* move rust_crate structure into the actual crate codeMarijn Haverbeke2011-04-181-4/+2
* introduce local_ctxt in trans.rs to keep crate_ctxt globalMarijn Haverbeke2011-04-181-318/+333
* rustc: Capture type parameters into for-each blocks. Add a test case.Patrick Walton2011-04-151-2/+33
* rustc: Use a regular vector instead of a hash table for type descriptorsPatrick Walton2011-04-151-14/+13
* rustc: Remove the "boxed" check, and make the static_size_of_tag recursion-el...Patrick Walton2011-04-151-33/+32
* Add a -S option for producing assembly. I will move more of it toRafael Ávila de Espíndola2011-04-151-11/+23
* rustc: Make fold_ty no longer use an object; introduce walk_tyPatrick Walton2011-04-151-16/+14
* Work on destructors, not entirely functional yet (no tydesc integration).Graydon Hoare2011-04-141-0/+37
* rustc: Remove generalize_ty. Instead, maintain an explicit type parameter sub...Patrick Walton2011-04-141-12/+15