| Commit message (Expand) | Author | Age | Files | Lines |
| * | rustc: lowercase the link and link::write modules | Brian Anderson | 2011-05-13 | 1 | -1/+1 |
| * | Downcase std modules again, move to :: for module dereferencing | Marijn Haverbeke | 2011-05-12 | 4 | -114/+114 |
| * | Add --time-llvm-passes. | Graydon Hoare | 2011-05-10 | 1 | -2/+14 |
| * | rustc: Get rid of native Rust glue for all upcalls except the exit task glue | Patrick Walton | 2011-05-10 | 1 | -9/+9 |
| * | rustc: Give our upcall definitions the right values | Patrick Walton | 2011-05-09 | 1 | -40/+50 |
| * | rustc: Declare upcalls with real signatures; preparation for killing rust_nat... | Patrick Walton | 2011-05-09 | 1 | -0/+125 |
| * | rustc: Replace our homebrew list of passes with the standard function and mod... | Patrick Walton | 2011-05-09 | 1 | -50/+16 |
| * | rustc: Make llvm_err() conform to Postel's law a little better | Patrick Walton | 2011-05-06 | 1 | -1/+6 |
| * | Rename std modules to be camelcased | Marijn Haverbeke | 2011-05-06 | 2 | -31/+31 |
| * | rustc: Bump the number of native glues to 8 | Patrick Walton | 2011-05-06 | 1 | -1/+1 |
| * | Fix x86.rs triple for linux. | Graydon Hoare | 2011-05-05 | 1 | -1/+1 |
| * | Use symbolic register names so that we get the correct encoding on OS X. | Rafael Ávila de Espíndola | 2011-05-05 | 1 | -2/+2 |
| * | rustc: Link with intrinsics.bc; change intrinsics linkage to linkonce_odr | Patrick Walton | 2011-05-05 | 2 | -2/+28 |
| * | rustc: Add a binding to LLVM's bitcode parser | Patrick Walton | 2011-05-05 | 1 | -0/+6 |
| * | rustc: Add a Link module; move crate writing to it to slim down trans slightly | Patrick Walton | 2011-05-05 | 1 | -0/+176 |
| * | rustc: Emit pure native glue; we don't call it yet | Patrick Walton | 2011-04-29 | 2 | -12/+31 |
| * | Implement destructors in rustc | Marijn Haverbeke | 2011-04-29 | 1 | -0/+1 |
| * | Add a very minimal set of .cfi_* statements to get part of backtraces | Rafael Ávila de Espíndola | 2011-04-28 | 1 | -2/+34 |
| * | rustc: Add an operation field to compare glue with ==, <=, and < modes | Patrick Walton | 2011-04-18 | 1 | -0/+5 |
| * | rustc: Create stub glue for structural comparison | Patrick Walton | 2011-04-18 | 1 | -0/+2 |
| * | Remove silly legacy glue-offset encoding, predicate runtime adjustments by AB... | Graydon Hoare | 2011-04-09 | 1 | -6/+6 |
| * | Change rust_vec to have a 16-byte header, to 16-byte-align vec-body data. Maj... | Graydon Hoare | 2011-04-02 | 1 | -1/+2 |
| * | Trans nomenclature tidy-up: upcall vs. native vs. extern. | Graydon Hoare | 2011-03-25 | 2 | -21/+22 |
| * | Another go at changing compile-command, this time using RBUILD env var. | Graydon Hoare | 2011-03-25 | 2 | -2/+2 |
| * | Revert "Bulk-edit compile commands in emacs chatter to point to assumed build... | Graydon Hoare | 2011-03-25 | 2 | -2/+2 |
| * | Bulk-edit compile commands in emacs chatter to point to assumed build/ dir of... | Graydon Hoare | 2011-03-25 | 2 | -2/+2 |
| * | Every upcall needs a task pointer to find the C stack. It is just that when | Rafael Ávila de Espíndola | 2011-03-21 | 2 | -11/+22 |
| * | Fixed version of my previous patch to rename the upcall functions. This time ... | Rafael Ávila de Espíndola | 2011-03-16 | 1 | -3/+3 |
| * | rustc: Add some stub metadata to each crate | Patrick Walton | 2011-03-11 | 1 | -0/+10 |
| * | Fix access to the rust stack. | Rafael Ávila de Espíndola | 2011-03-09 | 1 | -15/+32 |
| * | swap taskptr and callee in preparation for making taskptr optional. | Rafael Ávila de Espíndola | 2011-03-09 | 1 | -8/+10 |
| * | Assortment of additional work on vec-append. Not done yet. | Graydon Hoare | 2011-03-03 | 1 | -2/+2 |
| * | Sketch out some more pieces of vec-append. | Graydon Hoare | 2011-03-02 | 1 | -0/+4 |
| * | Add ABI tagging to crates, adjust rustc output and runtime stack-frame setup ... | Graydon Hoare | 2011-02-22 | 2 | -2/+5 |
| * | Add the single instruction required in activate glue to fix burning darwin ti... | Graydon Hoare | 2011-02-08 | 1 | -2/+99 |
| * | Capture typarams into obj, independent of body tydesc. | Graydon Hoare | 2011-02-03 | 1 | -1/+2 |
| * | Add bzero glue and preliminary code for dynamic size/align calculations. | Graydon Hoare | 2011-01-18 | 1 | -0/+4 |
| * | Use homebrew memcpy, not llvm intrinsic. Can't run the latter on a rust stack. | Graydon Hoare | 2011-01-17 | 1 | -0/+8 |
| * | Sketch closure-forming logic for nontrivial bindings. | Graydon Hoare | 2011-01-05 | 1 | -0/+6 |
| * | Mop up cases of s/copy/take/, remove 'binding' terminology, whitespace police... | Graydon Hoare | 2010-12-20 | 1 | -13/+5 |
| * | rustc: Build tydescs for types, and make all take and drop operations go thro... | Patrick Walton | 2010-12-20 | 1 | -0/+11 |
| * | Remove calltup fields from ABI, add binding fields. | Graydon Hoare | 2010-12-16 | 1 | -6/+17 |
| * | rustc: Set data layout and target triple | Patrick Walton | 2010-12-03 | 1 | -0/+20 |
| * | Fix typo in x86 backend glue that was, by luck, only crashing on OSX. | Graydon Hoare | 2010-11-15 | 1 | -1/+1 |
| * | Switch upcall glues to fastcall as well. | Graydon Hoare | 2010-11-14 | 1 | -10/+11 |
| * | Remove outptr from module-internal calls; use standard ABI returns. | Graydon Hoare | 2010-11-14 | 1 | -9/+9 |
| * | Teach rustc about const tag value, begin work on trans_copy_ty, make uint's t... | Graydon Hoare | 2010-11-09 | 1 | -0/+3 |
| * | Move symbol prefix logic into separate function, add underscore prefix for wi... | Graydon Hoare | 2010-11-05 | 1 | -4/+10 |
| * | Don't use string == in x86.rs, doesn't work. | Graydon Hoare | 2010-10-22 | 1 | -1/+1 |
| * | rustc: Add an "_" prefix to assembler-generated symbols on Mac | Patrick Walton | 2010-10-22 | 1 | -0/+5 |