aboutsummaryrefslogtreecommitdiff
path: root/src/comp/middle/trans.rs
Commit message (Expand)AuthorAgeFilesLines
...
* First cut at translating const items. Support the literal forms at least. Un-...Graydon Hoare2011-01-211-26/+74
* Fix bug in trans_for, un-XFAIL linear-for-loop.rs.Graydon Hoare2011-01-211-1/+1
* First cut of trans_for.Graydon Hoare2011-01-211-0/+38
* Tweak effect-checking rules in rustboot, remove/rewrite/re-auth impure cases ...Graydon Hoare2011-01-211-149/+164
* M-x indent-region on trans.rs.Graydon Hoare2011-01-211-27/+35
* Implement dynamic GEP enough to permit expr_field to work on tup(T,T,T).Graydon Hoare2011-01-191-2/+104
* Add bzero glue and preliminary code for dynamic size/align calculations.Graydon Hoare2011-01-181-15/+170
* Use homebrew memcpy, not llvm intrinsic. Can't run the latter on a rust stack.Graydon Hoare2011-01-171-32/+58
* Fix a couple bugs in parametric returns.Graydon Hoare2011-01-171-11/+11
* Allocate and reload retslots. Copy into them on polymorphic returns.Graydon Hoare2011-01-171-19/+35
* Whitespace cleanup.Graydon Hoare2011-01-171-9/+9
* Teach copy_ty to finish via memcpy of tydesc-provided size.Graydon Hoare2011-01-171-11/+24
* Pass tydescs to parametric fns, along with (dummy, presently) retptr when nee...Graydon Hoare2011-01-141-66/+82
* Expand generic info in lval_result.Graydon Hoare2011-01-141-12/+17
* Trim long lines.Graydon Hoare2011-01-141-2/+2
* Pass tydescs to parametric fns.Graydon Hoare2011-01-141-6/+33
* Change single-ident expr_ident to greedy/fat multi-ident expr_path, to handle...Graydon Hoare2011-01-131-4/+4
* Figure out what tydescs we need to pass when translating parametric function ...Patrick Walton2011-01-121-4/+13
* Drop closures. Un-XFAIL bind-interior.rs.Graydon Hoare2011-01-071-7/+54
* Synthesize closure thunks, and pass closure pointer into fn calls.Graydon Hoare2011-01-071-30/+170
* Whitespace cleanup, and copy target into closure.Graydon Hoare2011-01-061-7/+10
* Sketch closure-forming logic for nontrivial bindings.Graydon Hoare2011-01-051-4/+73
* Translate trivial bindings. Un-XFAIL bind-trivial.rs.Graydon Hoare2011-01-051-8/+20
* Use uniform pair representation of functions everywhere, including static fun...Graydon Hoare2011-01-051-38/+113
* Correct function pointer type in closure.Graydon Hoare2011-01-041-2/+2
* Begin sketching translation of bind_expr. No captures yet, also crashy.Graydon Hoare2011-01-031-1/+40
* Translate local item decls.Graydon Hoare2010-12-311-0/+3
* Free objects by indirectly dropping fields via enclosed tydesc first.Graydon Hoare2010-12-311-2/+49
* Replace arg Load with load_non_structural in obj ctor.Graydon Hoare2010-12-311-1/+1
* Teach trans to access object fields.Graydon Hoare2010-12-301-14/+100
* rustc: Make parametric return types go through an out pointerPatrick Walton2010-12-291-6/+30
* Add a -shared option to rustc and don't try to look for main if it is given.Rafael Ávila de Espíndola2010-12-291-2/+5
* Modify translation of obj methods to accept an initial recursive-self-typed (...Graydon Hoare2010-12-231-60/+133
* Copy body tydesc and args into obj bodies.Graydon Hoare2010-12-221-3/+30
* Allocate heap cells to store non-empty object bodies.Graydon Hoare2010-12-221-10/+45
* rustc: Move type logic out of typeck so trans doesn't look like it's calling ...Patrick Walton2010-12-211-166/+159
* rustc: Sanitize names better. Puts out burning tinderbox on OS X.Patrick Walton2010-12-201-2/+14
* Null-check on obj box ptr, init to null. Un-XFAIL simple-obj.rs.Graydon Hoare2010-12-201-8/+26
* Support ty_obj in trans_field; simple-obj.rs compiles (but crashes).Graydon Hoare2010-12-201-4/+18
* Mop up cases of s/copy/take/, remove 'binding' terminology, whitespace police...Graydon Hoare2010-12-201-19/+30
* rustc: Use the passed-in tydescs for take and drop glue in parametric fns. Al...Patrick Walton2010-12-201-6/+19
* rustc: Print the type when we die in trans.make_drop_glue_innerPatrick Walton2010-12-201-1/+2
* rustc: Add a type param ID -> type descriptor mapping to function contextsPatrick Walton2010-12-201-16/+30
* Put out burning tree (sizeof / alignof bug).Graydon Hoare2010-12-201-14/+19
* Use gvars for vtbls rather than returning const immediates.Graydon Hoare2010-12-201-1/+7
* Trailing whitespace police.Graydon Hoare2010-12-201-2/+2
* rustc: Build tydescs for types, and make all take and drop operations go thro...Patrick Walton2010-12-201-27/+43
* rustc: Remove the unused "name" parameter from trans.new_builderPatrick Walton2010-12-171-4/+4
* rustc: Make some no-op take and drop glue for scalar typesPatrick Walton2010-12-171-24/+34
* rustc: Make all drop and take glue have the same signature, so we can put the...Patrick Walton2010-12-171-14/+27