| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2014-02-02 | libsyntax: Fix tests. | Patrick Walton | -2/+2 | |
| 2014-02-02 | librustc: Stop using `@str` for source. | Patrick Walton | -11/+11 | |
| 2014-02-02 | libsyntax: Introduce an `InternedString` type to reduce `@str` in the | Patrick Walton | -0/+11 | |
| compiler and use it for attributes | ||||
| 2014-01-21 | Remove unnecessary parentheses. | Huon Wilson | -1/+1 | |
| 2014-01-18 | Rename iterators for consistency | Palmer Cox | -5/+5 | |
| Rename existing iterators to get rid of the Iterator suffix and to give them names that better describe the things being iterated over. | ||||
| 2014-01-09 | libsyntax: Renamed types, traits and enum variants to CamelCase. | Eduard Burtescu | -5/+5 | |
| 2014-01-07 | 'borrowed pointer' -> 'reference' | Brian Anderson | -1/+1 | |
| 2014-01-03 | libsyntax: De-`@mut` `Interner::vect` | Patrick Walton | -19/+31 | |
| 2014-01-03 | libsyntax: De-`@mut` the interner map | Patrick Walton | -10/+15 | |
| 2014-01-03 | librustc: De-`@mut` the parse session | Patrick Walton | -3/+3 | |
| 2014-01-02 | libsyntax: Fix test and merge fallout. | Patrick Walton | -1/+1 | |
| 2013-12-08 | Remove dead codes | Kiet Tran | -1/+1 | |
| 2013-11-28 | Register new snapshots | Alex Crichton | -4/+4 | |
| 2013-11-26 | auto merge of #10670 : eddyb/rust/node-u32, r=alexcrichton | bors | -18/+20 | |
| ### Rationale There is no reason to support more than 2³² nodes or names at this moment, as compiling something that big (even without considering the quadratic space usage of some analysis passes) would take at least **64GB**. Meanwhile, some can't (or barely can) compile rustc because it requires almost **1.5GB**. ### Potential problems Can someone confirm this doesn't affect metadata (de)serialization? I can't tell myself, I know nothing about it. ### Results Some structures have a size reduction of 25% to 50%: [before](https://gist.github.com/luqmana/3a82a51fa9c86d9191fa) - [after](https://gist.github.com/eddyb/5a75f8973d3d8018afd3). Sadly, there isn't a massive change in the memory used for compiling stage2 librustc (it doesn't go over **1.4GB** as [before](http://huonw.github.io/isrustfastyet/mem/), but I can barely see the difference). However, my own testcase (previously peaking at **1.6GB** in typeck) shows a reduction of **200**-**400MB**. | ||||
| 2013-11-27 | Shink NodeId, CrateNum, Name and Mrk down to 32 bits on x64. | Eduard Burtescu | -18/+20 | |
| 2013-11-26 | Clean up SmallVector use a bit | Steven Fackler | -79/+27 | |
| 2013-11-26 | Support multiple item macros | Steven Fackler | -0/+28 | |
| Closes #4375 | ||||
| 2013-11-26 | Add SmallVector to libsyntax | Steven Fackler | -0/+213 | |
| 2013-11-26 | test: Remove all remaining non-procedure uses of `do`. | Patrick Walton | -8/+8 | |
| 2013-11-19 | libsyntax: Change all uses of `&fn` to `||`. | Patrick Walton | -1/+1 | |
| 2013-10-04 | Remove specific errors for very old obsolete syntax | Benjamin Herr | -3/+0 | |
| Replaces existing tests for removed obsolete-syntax errors with tests for the resulting regular errors, adds a test for each of the removed parser errors to make sure that obsolete forms don't start working again, removes some obsolete/superfluous tests that were now failing. Deletes some amount of dead code in the parser, also includes some small changes to parser error messages to accomodate new tests. | ||||
| 2013-09-29 | Remove all usage of @ast::Crate | Alex Crichton | -2/+2 | |
| 2013-09-06 | added string_to_tts | John Clements | -0/+6 | |
| 2013-09-06 | added gensym_copy mechanism to ensure sharing of pointers in the interner | John Clements | -8/+55 | |
| this makes comparisons constant-time, and enables spelling-comparison of identifiers, crucial in many parts of resolve. | ||||
| 2013-09-06 | add hygiene support fns, move them around. | John Clements | -8/+7 | |
| also adds test cases | ||||
| 2013-09-03 | Modernized a few more types in syntax::ast | Marvin Löbel | -3/+3 | |
| 2013-09-02 | Renamed syntax::ast::ident -> Ident | Marvin Löbel | -1/+1 | |
| 2013-08-03 | remove obsolete `foreach` keyword | Daniel Micay | -2/+2 | |
| this has been replaced by `for` | ||||
| 2013-08-01 | migrate many `for` loops to `foreach` | Daniel Micay | -2/+2 | |
| 2013-07-25 | syntax: Fix #6416 by aborting on errors after test parse. | Graydon Hoare | -5/+22 | |
| 2013-07-22 | Ast spanned<T> refactoring, renaming: crate, local, blk, crate_num, crate_cfg. | Michael Woerister | -1/+1 | |
| `crate => Crate` `local => Local` `blk => Block` `crate_num => CrateNum` `crate_cfg => CrateConfig` Also, Crate and Local are not wrapped in spanned<T> anymore. | ||||
| 2013-07-18 | librustc: Forbid `&` pointers (other than `&'static`) inside `@` boxes. | Patrick Walton | -1/+1 | |
| This makes custom borrowing implementations for custom smart pointers sound. | ||||
| 2013-07-17 | librustc: Remove all uses of "copy". | Patrick Walton | -4/+8 | |
| 2013-06-28 | librustc: Rename Const to Freeze | Patrick Walton | -1/+1 | |
| 2013-06-25 | great renaming propagation: syntax | Corey Richardson | -8/+2 | |
| 2013-06-23 | vec: remove BaseIter implementation | Daniel Micay | -2/+2 | |
| I removed the `static-method-test.rs` test because it was heavily based on `BaseIter` and there are plenty of other more complex uses of static methods anyway. | ||||
| 2013-06-16 | Add copies to type params with Copy bound | Niko Matsakis | -3/+3 | |
| 2013-06-13 | Use @str instead of @~str in libsyntax and librustc. Fixes #5048. | Huon Wilson | -41/+41 | |
| This almost removes the StringRef wrapper, since all strings are Equiv-alent now. Removes a lot of `/* bad */ copy *`'s, and converts several things to be &'static str (the lint table and the intrinsics table). There are many instances of .to_managed(), unfortunately. | ||||
| 2013-06-06 | add test cases for fold traversing macros | John Clements | -0/+78 | |
| 2013-06-05 | add hygiene support functions | John Clements | -1/+2 | |
| 2013-06-05 | interner just uses uints, not idents with syntax context | John Clements | -4/+14 | |
| 2013-06-05 | removed obsolete reference to purity | John Clements | -3/+0 | |
| 2013-06-01 | Remove all uses of `pub impl`. rs=style | Patrick Walton | -17/+17 | |
| 2013-05-22 | libextra: Rename the actual metadata names of libcore to libstd and libstd ↵ | Patrick Walton | -0/+5 | |
| to libextra | ||||
| 2013-05-20 | getting rid of interner_key! macro | John Clements | -59/+5 | |
| 2013-05-20 | hygiene infrastructure. | John Clements | -12/+18 | |
| - added a hash table to memoize rename and mark operations. - added rename, mark, and resolve fold fns | ||||
| 2013-05-20 | refactoring test functions | John Clements | -0/+96 | |
| 2013-05-09 | Use a specialized string interner to reduce the need for owned strings | Björn Steinbrink | -0/+56 | |
| &str can be turned into @~str on demand, using to_owned(), so for strings, we can create a specialized interner that accepts &str for intern() and find() but stores and returns @~str. | ||||
| 2013-05-08 | librustc: Stop parsing modes and remove them entirely from the language | Patrick Walton | -1/+1 | |
| 2013-04-30 | new borrow checker (mass squash) | Niko Matsakis | -2/+2 | |
