| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2010-10-09 | Elide mark and sever glue in -minimal mode. | Graydon Hoare | -2/+9 | |
| 2010-10-09 | More type-fold caches, shave another second off compile time. | Graydon Hoare | -5/+16 | |
| 2010-10-08 | Implement a -minimal mode prologue, cut 100kb from rustc. | Graydon Hoare | -32/+78 | |
| 2010-10-08 | Quad counters are revealing. Move drops out-of-line, cut 200kb from rustc. | Graydon Hoare | -103/+168 | |
| 2010-10-08 | Add quad-counting system. | Graydon Hoare | -9/+81 | |
| 2010-10-08 | Fix logging bug. | Graydon Hoare | -1/+1 | |
| 2010-10-08 | Add a tag cache for the cases we can't avoid hitting fold; cut rustc compile ↵ | Graydon Hoare | -8/+19 | |
| time by 50%. | ||||
| 2010-10-08 | More fold caches, cut rustc compile time by 60% again. | Graydon Hoare | -7/+27 | |
| 2010-10-08 | Cache referent-type calculations in rustboot; cut rustc compile time by 60%. | Graydon Hoare | -1/+7 | |
| 2010-10-08 | Add -lpath mechanism for logging only a subset of a pass (by module-path prefix) | Graydon Hoare | -103/+142 | |
| 2010-10-07 | Make minimal-mode slightly less aggressive. | Graydon Hoare | -7/+3 | |
| 2010-10-07 | Simplify type-mismatch messages. | Graydon Hoare | -5/+158 | |
| 2010-10-05 | Add -minimal mode to rustboot that skips emitting code that's broken or ↵ | Graydon Hoare | -15/+36 | |
| unneeded for rustc. Shrink rustc by 300kb. Back under 1mb. | ||||
| 2010-10-05 | Add -lpasses for logging just the progress of passes. | Graydon Hoare | -1/+28 | |
| 2010-10-05 | Better backpointer logic. | Graydon Hoare | -19/+65 | |
| 2010-10-01 | Sketch out #fmt syntax extension in rustboot. | Graydon Hoare | -42/+407 | |
| 2010-09-30 | Fix bug in bind thunks failing top drop unbound args; add test and adjust ↵ | Graydon Hoare | -0/+16 | |
| rustc to use bind again. | ||||
| 2010-09-30 | Drop slots on block exits even when blocks have no statements. Part way to ↵ | Graydon Hoare | -90/+144 | |
| fixing bind leakage in rustc. | ||||
| 2010-09-30 | implemented break for while-loop case | Or Brostovski | -36/+104 | |
| ast.ml - added break and cont statements item.ml - added break and cont statements lexer.mll - added break and cont statements token.ml - added break and cont statements trans.ml - implemented the break statement for the while-loop case - replaced hash table accesses with get_stmt_depth where needed type.ml = added break and cont statements typestate.ml - implemented the break statement for the while-loop case - added shorthand filter_live_block_slots walk.ml - added break and cont statements while-with-break.rs - code for testing while loops | ||||
| 2010-09-30 | Closed issue 154 - prevents compiler from compiliing a line to zero statements | Or Brostovski | -1/+10 | |
| 2010-09-29 | Patchwork of attempted fixes to effect system and gc system; eventually give ↵ | Graydon Hoare | -22/+35 | |
| up and disable it entirely in the runtime. Will need extensive reworking. | ||||
| 2010-09-29 | Allow tag recursion through vectors as well as boxes | Patrick Walton | -1/+1 | |
| 2010-09-23 | Resolve constant types through to their definitions. | Graydon Hoare | -1/+3 | |
| 2010-09-22 | Fix linear for loops on strings to not hit trailing null. | Graydon Hoare | -3/+12 | |
| 2010-09-22 | Revert "Make recursive type verification logic better by allowing it to see ↵ | Graydon Hoare | -18/+12 | |
| through multiple levels of indirection. Still can trigger "unexpected OpaqueTy" bugs, but that's better than infinite loops." This reverts commit 751a47cc5ac3223c3b592659937b485c56ab2644. Broken build. | ||||
| 2010-09-21 | Make recursive type verification logic better by allowing it to see through ↵ | Patrick Walton | -12/+18 | |
| multiple levels of indirection. Still can trigger "unexpected OpaqueTy" bugs, but that's better than infinite loops. | ||||
| 2010-09-21 | Report an error instead of asserting when an item name is already in use | Patrick Walton | -3/+7 | |
| 2010-09-21 | Add insn-selection fixup-name logging. | Graydon Hoare | -1/+8 | |
| 2010-09-21 | Tighten pattern parsing on 0-ary constructors. | Graydon Hoare | -1/+5 | |
| 2010-09-21 | Implement preliminary form of structured compare. No boxes, vectors or ↵ | Graydon Hoare | -77/+181 | |
| strings yet. | ||||
| 2010-09-21 | Kill residual dead code in Trans.iter_tag_parts. Shaves a couple kb off rustc. | Graydon Hoare | -1/+11 | |
| 2010-09-21 | Skip 0-ary tag ctors in Trans.iter_tag_parts. Rustc loses 150kb. | Graydon Hoare | -11/+17 | |
| 2010-09-20 | Bind pattern slots with ?, drop parens from 0-ary tag constructors, ↵ | Graydon Hoare | -38/+85 | |
| translate 0-ary constructors as constants. Rustc loses ~300kb. | ||||
| 2010-09-20 | Wrap long lines. | Graydon Hoare | -2/+4 | |
| 2010-09-20 | Use name_base in plval base. | Graydon Hoare | -31/+18 | |
| 2010-09-20 | When translating vec-append, delay destination string's null-byte-accounting ↵ | Roy Frostig | -45/+43 | |
| length decrement until the destination string has already been resized. Closes #163. | ||||
| 2010-09-20 | Move id counters into sess in preparation for moving desugaring to middle-end. | Graydon Hoare | -55/+32 | |
| 2010-09-16 | Beginnings of post-resolve simplify pass. | Graydon Hoare | -0/+116 | |
| 2010-09-16 | Check for infinitely sized tags. Un-XFAIL ↵ | Patrick Walton | -1/+73 | |
| test/compile-fail/infinite-tag-type-recursion.rs. | ||||
| 2010-09-16 | Actually build the graph properly. Oops. | Patrick Walton | -1/+1 | |
| 2010-09-16 | Create tag nodes for all the tags beforehand | Patrick Walton | -8/+15 | |
| 2010-09-16 | Resolve plvals to their defns. | Graydon Hoare | -1/+48 | |
| 2010-09-16 | Populate the tag containment relation | Patrick Walton | -0/+37 | |
| 2010-09-16 | Add a pexp-rebuild phase to the type resolution pass in resolve.ml. | Graydon Hoare | -0/+46 | |
| 2010-09-16 | Better representation of tag containment, which will allow us to discern ↵ | Patrick Walton | -3/+7 | |
| backreferences | ||||
| 2010-09-16 | Add ctxt_tag_containment to the Semant context | Patrick Walton | -0/+7 | |
| 2010-09-16 | Switch the "expected" and "actual" types for function parameter mismatches | Patrick Walton | -1/+1 | |
| 2010-09-16 | Not finding a name in a module isn't a bug, it's an error. Report it as such. | Patrick Walton | -3/+3 | |
| 2010-09-16 | Add beginnings of a fuzzer to rustboot. | Graydon Hoare | -0/+177 | |
| 2010-09-15 | Minor improvements to pretty-printer. | Graydon Hoare | -5/+16 | |
