| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2011-12-13 | Copy first batch of material from libstd to libcore. | Graydon Hoare | -4/+4 | |
| 2011-12-04 | Upgrade LLVM to svn revision 145779 | Brian Anderson | -6/+2 | |
| This pulls in commits 145765 & 145766, which are required for split stacks. | ||||
| 2011-11-25 | rustc: Fall back to intrinsics.ll if we can't parse the bc | Brian Anderson | -0/+3 | |
| This will allow us to transition to the new bitcode format. | ||||
| 2011-11-17 | remove compile-command from local variable blocks | Niko Matsakis | -1/+0 | |
| 2011-11-16 | wrap long line | Niko Matsakis | -2/+2 | |
| 2011-11-16 | temp workaround for failure to pass ulonglong successfully | Niko Matsakis | -1/+1 | |
| 2011-11-16 | Use attributes for native module ABI and link name | Haitao Li | -1/+3 | |
| This patch changes how to specify ABI and link name of a native module. Before: native "cdecl" mod llvm = "rustllvm" {...} After: #[abi = "cdecl"] #[link_name = "rustllvm"] native mod llvm {...} The old optional syntax for ABI and link name is no longer supported. Fixes issue #547 | ||||
| 2011-11-15 | rustllvm: Add a GetOrInsertFunction wrapper | Haitao Li | -0/+2 | |
| Fixes issue #1161 Test-case-by: Brian Anderson <banderson@mozilla.com> Signed-off-by: Haitao Li <lihaitao@gmail.com> | ||||
| 2011-11-10 | Cleanup unused imports | Haitao Li | -4/+2 | |
| 2011-11-09 | Rename "c-stack-cdecl" ABI to "cdecl" | Brian Anderson | -1/+1 | |
| 2011-11-07 | rustc: Add support of generating LLVM assembly | Haitao Li | -0/+3 | |
| rustc generates output files in LLVM bitcode format if "--emit-llvm" option is given. When used with the "-S" option, rustc generates LLVM intermediate language assembly files. Fixes Issue #476 | ||||
| 2011-11-07 | Fix a long line | Marijn Haverbeke | -1/+1 | |
| 2011-11-07 | llvm::mk_object_file should really return an option, since the underlying ↵ | Joshua Wise | -3/+4 | |
| LLVM function can fail. Fixes a crash on OS X when rust has bad dylibs within eyeshot. | ||||
| 2011-10-31 | rustc: Enable segmented stacks in LLVM when --stack-growth is on | Patrick Walton | -0/+2 | |
| 2011-10-12 | reimplement some of the unsafe stuff which got lost | Niko Matsakis | -2/+2 | |
| - blocks inherit unsafety - remove the --check-unsafe flag - add unsafe annotations where needed to get things to compile | ||||
| 2011-10-12 | remove unsafe tags | Niko Matsakis | -12/+12 | |
| 2011-10-12 | continue to annotate functions as unsafe where neccessary | Niko Matsakis | -14/+12 | |
| 2011-10-12 | add unsafe tags into various points in the translation chains | Niko Matsakis | -3/+9 | |
| and so forth | ||||
| 2011-10-07 | Parse and typecheck by-value and by-ref arg specs | Marijn Haverbeke | -2/+2 | |
| Add sprinkle && throughout the compiler to make it typecheck again. Issue #1008 | ||||
| 2011-09-30 | rustc: Call LLVM on the C stack | Patrick Walton | -1/+1 | |
| 2011-09-30 | rustc: Stub a --stack-growth option; it's behind a flag for now because it ↵ | Patrick Walton | -2/+2 | |
| requires patches to LLVM. | ||||
| 2011-09-20 | Remove some bogus white-space from llvm.rs | Marijn Haverbeke | -50/+2 | |
| 2011-09-12 | Factor imports mindlessly. | Graydon Hoare | -23/+6 | |
| 2011-09-12 | Merge branch 'unwind' | Brian Anderson | -0/+9 | |
| Conflicts: src/comp/middle/trans.rs src/comp/middle/trans_build.rs src/lib/run_program.rs src/test/compiletest/runtest.rs | ||||
| 2011-09-12 | Pretty-print for new arg-mode syntax | Marijn Haverbeke | -10/+13 | |
| 2011-09-12 | Reformat for new mode syntax, step 1 | Marijn Haverbeke | -17/+28 | |
| Long lines were fixed in a very crude way, as I'll be following up with another reformat in a bit. | ||||
| 2011-09-11 | Add Rust definitions for new LLVM EH instructions | Brian Anderson | -0/+9 | |
| Issue #236 | ||||
| 2011-09-02 | Reformat. Issue #855 | Brian Anderson | -48/+44 | |
| 2011-09-01 | Convert all uses of #ifmt to #fmt. Issue #855 | Brian Anderson | -1/+1 | |
| 2011-09-01 | Rename std::istr to std::str. Issue #855 | Brian Anderson | -3/+3 | |
| 2011-08-31 | Convert uses of #fmt to #ifmt. Issue #855 | Brian Anderson | -1/+1 | |
| 2011-08-27 | Convert the rest of rustc::lib::llvm to istrs. Issue #855 | Brian Anderson | -36/+37 | |
| 2011-08-27 | Convert rustc::lib::llvm to istr::sbufs. Issue #855 | Brian Anderson | -3/+4 | |
| 2011-08-27 | Convert std::map::new_str_hash to istrs. Issue #855 | Brian Anderson | -5/+9 | |
| 2011-08-27 | Convert std::int to istrs. Issue #855 | Brian Anderson | -2/+4 | |
| 2011-08-24 | Move to a more lightweight builder system | Marijn Haverbeke | -519/+0 | |
| You now do bld::Ret(bcx, someval) where you used to say bcx.build.Ret(someval) Two fewer boxes are allocated for each block context, and build calls no longer go through a vtable. | ||||
| 2011-08-20 | Reformat | Brian Anderson | -40/+45 | |
| This changes the indexing syntax from .() to [], the vector syntax from ~[] to [] and the extension syntax from #fmt() to #fmt[] | ||||
| 2011-08-18 | Remove or _-prefix all unused function arguments | Marijn Haverbeke | -1/+1 | |
| This should make the compilation process a bit less noisy. | ||||
| 2011-08-16 | Port the compiler to the expr foo::<T> syntax. | Erick Tryzelaar | -7/+7 | |
| 2011-08-16 | Port the compiler to the typaram foo<T> syntax. | Erick Tryzelaar | -4/+4 | |
| 2011-08-16 | Rename std::ivec to std::vec | Brian Anderson | -25/+25 | |
| 2011-08-15 | The wonky for...in... whitespace was bothering me. Sorry! | Lindsey Kuper | -2/+2 | |
| 2011-08-11 | Use the new C API for PassManagerBuilder. | Rafael Ávila de Espíndola | -7/+24 | |
| 2011-08-11 | Update for llvm api change. | Rafael Ávila de Espíndola | -7/+0 | |
| 2011-08-09 | Port the compiler to the ivec type [T] syntax. | Erick Tryzelaar | -16/+16 | |
| 2011-07-29 | Replace obj dtors with resources in stdlib and rustc | Marijn Haverbeke | -21/+28 | |
| 2011-07-27 | Re-format some obj dtors that were messed up by the pretty-printer | Marijn Haverbeke | -8/+8 | |
| 2011-07-27 | Fix damage done by the pretty-printer | Marijn Haverbeke | -4/+3 | |
| 2011-07-27 | Reformat for new syntax | Marijn Haverbeke | -875/+867 | |
| 2011-07-22 | Remove typechecker work-arounds now that I know how | Marijn Haverbeke | -1/+1 | |
