| Age | Commit message (Expand) | Author | Lines |
| 2011-06-08 | Update rust to build with newer llvm versions. | Rafael Ávila de Espíndola | -1/+1 |
| 2011-05-27 | Lots of comments, and some more descriptive names. | Lindsey Kuper | -1/+7 |
| 2011-05-20 | Nicer printer of LLVM array types. | Eric Holk | -1/+4 |
| 2011-05-17 | Finally rename std::_xxx to std::xxx | Marijn Haverbeke | -110/+110 |
| 2011-05-16 | Rewrite everything to use [] instead of vec() in value position. | Graydon Hoare | -3/+3 |
| 2011-05-12 | Downcase std modules again, move to :: for module dereferencing | Marijn Haverbeke | -184/+187 |
| 2011-05-10 | Add --time-llvm-passes. | Graydon Hoare | -0/+6 |
| 2011-05-09 | rustc: Replace our homebrew list of passes with the standard function and mod... | Patrick Walton | -1/+5 |
| 2011-05-07 | Stop stringifying integers to get integral constants. | Graydon Hoare | -0/+4 |
| 2011-05-06 | rustc: Uncomment LLVMAddStandardPasses, now that we have a native glue that s... | Patrick Walton | -2/+2 |
| 2011-05-06 | Rename std modules to be camelcased | Marijn Haverbeke | -118/+118 |
| 2011-05-06 | rustllvm: Add a binding to the LLVM standard module passes | Patrick Walton | -0/+10 |
| 2011-05-06 | Ge the host triple using LLVM. Fix a few 'mutable' warnings also. | Kelly Wilson | -0/+3 |
| 2011-05-05 | rustc: Add a binding to LLVM's bitcode parser | Patrick Walton | -0/+3 |
| 2011-05-04 | rustllvm: Add bindings to the LLVM linker | Patrick Walton | -1/+3 |
| 2011-05-02 | Un-revert "Use different syntax for checks that matter to typestate", fixing ... | Patrick Walton | -93/+93 |
| 2011-05-02 | Revert "Use different syntax for checks that matter to typestate" | Graydon Hoare | -93/+93 |
| 2011-05-02 | Use different syntax for checks that matter to typestate | Tim Chevalier | -93/+93 |
| 2011-04-29 | rustc: Add constants for LLVM function attributes | Patrick Walton | -0/+24 |
| 2011-04-19 | rustc: Assert that each basic block isn't terminated before adding instructio... | Patrick Walton | -1/+100 |
| 2011-04-19 | replace error logging with log_err in stdlib and rustc | Marijn Haverbeke | -1/+1 |
| 2011-04-18 | Add a -c option. | Rafael Ávila de Espíndola | -2/+4 |
| 2011-04-15 | Add a -S option for producing assembly. I will move more of it to | Rafael Ávila de Espíndola | -0/+3 |
| 2011-04-13 | Enable alias analysis and the function attributes pass. | Rafael Ávila de Espíndola | -0/+2 |
| 2011-04-12 | Enable more optimizations. | Rafael Ávila de Espíndola | -3/+4 |
| 2011-04-07 | Run optimizations. | Rafael Ávila de Espíndola | -0/+34 |
| 2011-03-26 | Add visibility enum values to lib.llvm. | Graydon Hoare | -0/+3 |
| 2011-03-25 | Janitorial: move llvmext back to llvm module, as they're the same thing now. | Graydon Hoare | -8/+14 |
| 2011-03-25 | Another go at changing compile-command, this time using RBUILD env var. | Graydon Hoare | -1/+1 |
| 2011-03-25 | Revert "Bulk-edit compile commands in emacs chatter to point to assumed build... | Graydon Hoare | -1/+1 |
| 2011-03-25 | Bulk-edit compile commands in emacs chatter to point to assumed build/ dir of... | Graydon Hoare | -1/+1 |
| 2011-03-23 | rustc: Switch over to using rustllvm.dll exclusively, ending the "Franken-LLV... | Patrick Walton | -1/+1 |
| 2011-03-15 | rustc: Remove the memory-managed interface to LLVM memory buffers; passing th... | Patrick Walton | -17/+0 |
| 2011-03-15 | rustc: Add support for LLVM memory buffer creation via a wrapper function | Patrick Walton | -5/+17 |
| 2011-03-15 | rustc: Add Rust bindings to the LLVM object file library | Patrick Walton | -0/+72 |
| 2011-02-28 | Groundwork for structural comparison. Still lacking the actual loop that does... | Graydon Hoare | -2/+21 |
| 2011-02-17 | Teach trans and llvm to cooperate on producing tidier diagnostic names in tra... | Graydon Hoare | -9/+62 |
| 2011-01-05 | Use uniform pair representation of functions everywhere, including static fun... | Graydon Hoare | -0/+19 |
| 2010-12-23 | Print recursive LLVM types. | Graydon Hoare | -6/+22 |
| 2010-12-08 | Implement binop= forms. Un-XFAIL bitwise.rs. | Graydon Hoare | -10/+10 |
| 2010-12-06 | rustc: Run the verifier over LLVM modules before writing them out | Patrick Walton | -0/+23 |
| 2010-12-03 | rustc: Remove LLVM unions and represent tags as (discriminant, byte blob) pairs | Patrick Walton | -9/+24 |
| 2010-12-01 | rustc: Add stub support for tag constructors in trans | Patrick Walton | -0/+13 |
| 2010-11-24 | Sketch out type-directed structural drop and copy, including vector types. | Graydon Hoare | -0/+10 |
| 2010-11-14 | Switch upcall glues to fastcall as well. | Graydon Hoare | -0/+9 |
| 2010-11-14 | Support emitting trap instructions for debugging. | Graydon Hoare | -0/+13 |
| 2010-11-10 | Redo the scheme for block context chaining and termination, to simplify and s... | Graydon Hoare | -0/+2 |
| 2010-10-04 | Improve name nodes to ast, teach to parse qualified names, put out flaming ti... | Graydon Hoare | -1/+2 |
| 2010-10-04 | Teach rustc about phi nodes, block relationships. Translate if- and block-exp... | Graydon Hoare | -2/+8 |
| 2010-09-28 | Translate a modest selection of easy binops. | Graydon Hoare | -2/+17 |