| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2012-11-07 | Rename src/rustc to src/librustc. Use the driver crate | Brian Anderson | -1383/+0 | |
| 2012-11-05 | rustc: Stop declaring unused upcalls | Brian Anderson | -25/+0 | |
| 2012-10-18 | libcore: minor code cleanup. | Erick Tryzelaar | -2/+1 | |
| This is minor and probably completely inconsequential to performance, but I find vec::map to be more clear than vec::each and a push. | ||||
| 2012-10-15 | rustc: Merge module and type namespaces. r=brson | Patrick Walton | -15/+15 | |
| 2012-10-11 | Remove unneeded no_rt flag | Tim Chevalier | -4/+2 | |
| 2012-09-28 | Long lines | Brian Anderson | -1/+3 | |
| 2012-09-28 | jit: Change expected main signature | Zack Corr | -1/+1 | |
| 2012-09-28 | jit: Remove old crate loading code and don't search through loaded crates ↵ | Zack Corr | -23/+2 | |
| (use llvm default instead) | ||||
| 2012-09-27 | jit: Separate JIT execution into two functions and load crates before main ↵ | Zack Corr | -4/+34 | |
| lookup | ||||
| 2012-09-26 | Demode vec::push (and convert to method) | Niko Matsakis | -27/+27 | |
| 2012-09-26 | turn ast::ident into a struct | Erick Tryzelaar | -1/+1 | |
| This will help with the auto_serialize2 migration. We have to change ident from a type alias to uint into a unique type. We need to use a struct instead of a "enum ident = token::str_num" because structs support constants, but newtypes do not. | ||||
| 2012-09-23 | Register snapshots. Remove redundant Eq impls, Makefile hacks | Brian Anderson | -9/+0 | |
| 2012-09-23 | core: Demode option | Brian Anderson | -2/+2 | |
| 2012-09-21 | De-mode vec::map, vec::eachi, vec::rev_each, vec::rev_eachi | Niko Matsakis | -2/+2 | |
| 2012-09-21 | libcore: De-mode str | Patrick Walton | -2/+2 | |
| 2012-09-21 | Install new pub/priv/export rules as defaults, old rules accessible under ↵ | Graydon Hoare | -0/+4 | |
| #[legacy_exports]; | ||||
| 2012-09-20 | Revert "syntax: Make attributes sendable for rustdoc's benefit" | Brian Anderson | -6/+6 | |
| This reverts commit 90e3665fa79d32c3188169cfa992516fb36b81a8. | ||||
| 2012-09-20 | syntax: Make attributes sendable for rustdoc's benefit | Brian Anderson | -6/+6 | |
| 2012-09-20 | core: Move 'unreachable' to util. Improve docs | Brian Anderson | -1/+1 | |
| 2012-09-20 | rustc: De-mode all overloaded operators | Patrick Walton | -0/+9 | |
| 2012-09-19 | Remove old stage0 compat gunk | Brian Anderson | -14/+0 | |
| 2012-09-19 | demode the each() method on vec and other iterables. | Niko Matsakis | -15/+14 | |
| 2012-09-19 | Remove redundant hashmap constructor functions. | Graydon Hoare | -1/+1 | |
| 2012-09-19 | De-mode vec::each() and many of the str iteration routines | Niko Matsakis | -1/+1 | |
| Note that the method foo.each() is not de-moded, nor the other vec routines. | ||||
| 2012-09-18 | Revert "replace explicit calls to vec::each with vec::each_ref, partially ↵ | Niko Matsakis | -1/+1 | |
| demode str" This reverts commit 1be24f0758d3075d2e7f141f8831bb8a233ce86e. Not quite ready. | ||||
| 2012-09-18 | replace explicit calls to vec::each with vec::each_ref, partially demode str | Niko Matsakis | -1/+1 | |
| 2012-09-18 | core: Rename 'unsafe' mod to 'cast' | Brian Anderson | -1/+1 | |
| 2012-09-18 | Revert "rustc: Change all non-keyword uses of "link"" | Patrick Walton | -0/+0 | |
| This reverts commit 3b013cd800ce675a445220105911bbefd2427e47. | ||||
| 2012-09-18 | make filetype() include the "." (fixes #3412) | Niko Matsakis | -1/+1 | |
| 2012-09-18 | rustc: Change all non-keyword uses of "link" | Patrick Walton | -0/+0 | |
| 2012-09-12 | Rename str::unsafe to str::raw | Brian Anderson | -1/+1 | |
| 2012-09-12 | Make moves in arguments explicit in libsyntax and rustc | Tim Chevalier | -1/+1 | |
| 2012-09-11 | Remove dead code | Tim Chevalier | -1/+0 | |
| 2012-09-11 | rustc: Remove a bunch of unused upcalls | Patrick Walton | -17/+2 | |
| 2012-09-11 | rustc: Remove the cmp type upcall | Patrick Walton | -13/+0 | |
| 2012-09-10 | Convert std::map to camel case | Brian Anderson | -2/+2 | |
| 2012-09-07 | Convert 'again' to 'loop'. Remove 'again' keyword | Brian Anderson | -1/+1 | |
| 2012-09-07 | Convert field terminators to commas. Stop parsing semis. | Brian Anderson | -2/+2 | |
| 2012-09-07 | rustc: Add an "ne" method to the Eq trait, and implement it everywhere | Patrick Walton | -0/+1 | |
| 2012-09-04 | rustc: "import" -> "use" | Patrick Walton | -32/+32 | |
| 2012-09-01 | Remove the 'to' keyword | Brian Anderson | -3/+3 | |
| 2012-08-31 | Make utility funs in core::int, core::uint, etc. not by-reference | Tim Chevalier | -7/+7 | |
| Closes #3302 | ||||
| 2012-08-31 | jit: Correct formatting and argv[0] for JITted programs | Zack Corr | -6/+3 | |
| 2012-08-31 | jit: Clean rustllvm code, let rustc expose __morestack instead of linking in ↵ | Zack Corr | -7/+53 | |
| libmorestack and return _rust_main and call it from rustc | ||||
| 2012-08-31 | jit: correct formatting | Zack Corr | -1/+3 | |
| 2012-08-31 | jit: Add passes and cleanup code | Zack Corr | -18/+8 | |
| 2012-08-31 | jit: Add custom memory manager (still segfaulting) | Zack Corr | -5/+28 | |
| 2012-08-31 | Add experimental JIT compiler | Zack Corr | -1/+25 | |
| 2012-08-29 | rustc: Make `<` and `=` into traits | Patrick Walton | -0/+6 | |
| 2012-08-29 | core: Demode int/uint mods | Brian Anderson | -1/+1 | |
