| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Guard a bunch more logging calls. Cut 10s off rustc compile time. | Graydon Hoare | 2011-01-12 | 1 | -5/+6 |
| | | |||||
| * | Guard unguarded log calls that snuck in. Shave 5s off building rustc. | Graydon Hoare | 2011-01-11 | 1 | -3/+5 |
| | | |||||
| * | Recursively genericize types and spread across glue. Saves 1mb size, 8s ↵ | Graydon Hoare | 2011-01-11 | 1 | -16/+7 |
| | | | | | compile time on rustc. | ||||
| * | Out-of-line all drop glue. Shaves 50kb from rustc. | Graydon Hoare | 2011-01-11 | 1 | -11/+1 |
| | | |||||
| * | Make rustboot fn/obj drops generic; cuts 300kb size, 10s compile time off rustc. | Graydon Hoare | 2011-01-11 | 1 | -0/+16 |
| | | |||||
| * | Add code to fail on non-exhaustive alt matching. Fix all cases this picked ↵ | Graydon Hoare | 2010-12-01 | 1 | -1/+8 |
| | | | | | up in rustc. | ||||
| * | rustboot: Say when a binary operator is unimplemented rather than asserting ↵ | Patrick Walton | 2010-11-19 | 1 | -2/+7 |
| | | | | | in trans | ||||
| * | Isolate while-header bug to minimal testcase, fix in rustboot, remove ↵ | Graydon Hoare | 2010-11-19 | 1 | -32/+46 |
| | | | | | workaround in rustc. | ||||
| * | Update frame logic to be compatible with SysV x86 ABI. Improves diagnostics. | Graydon Hoare | 2010-11-16 | 1 | -4/+9 |
| | | |||||
| * | Support a special const-value refcount, use it for const strings. | Graydon Hoare | 2010-11-09 | 1 | -15/+41 |
| | | |||||
| * | Encode and decode tag types in dwarf properly. Add list module to std. Shift ↵ | Graydon Hoare | 2010-10-15 | 1 | -55/+78 |
| | | | | | rustc to use std.util.option. Fix various dependent bugs. Closes #73. | ||||
| * | Fix mem += mem bug in vec-append. | Graydon Hoare | 2010-10-14 | 1 | -2/+2 |
| | | |||||
| * | Fetch typarams from the outermost item frame, when inside an iter-block. One ↵ | Graydon Hoare | 2010-10-13 | 1 | -29/+51 |
| | | | | | less crash in rustc. | ||||
| * | Fix horribly embarassing signedness bug in backend, plus related regressions. | Graydon Hoare | 2010-10-12 | 1 | -3/+9 |
| | | |||||
| * | Git index wins again. | Graydon Hoare | 2010-10-12 | 1 | -3/+5 |
| | | |||||
| * | Changes to make rustboot compile on OCaml 3.12 | Graydon Hoare | 2010-10-12 | 1 | -3/+3 |
| | | |||||
| * | Remove obsolete comment, issue was fixed with last checkin. | Graydon Hoare | 2010-10-10 | 1 | -3/+0 |
| | | |||||
| * | Teach bind to actually bind typarams, as it claims to. | Graydon Hoare | 2010-10-10 | 1 | -56/+91 |
| | | |||||
| * | Subject copying code to inline heuristic, cut 30kb from rustc. | Graydon Hoare | 2010-10-09 | 1 | -10/+31 |
| | | |||||
| * | Actually do what I meant to in the inline threshold. Don't drink and code. ↵ | Graydon Hoare | 2010-10-09 | 1 | -4/+4 |
| | | | | | Cut rustc by 50kb. | ||||
| * | Elide mark and sever glue in -minimal mode. | Graydon Hoare | 2010-10-09 | 1 | -2/+9 |
| | | |||||
| * | More type-fold caches, shave another second off compile time. | Graydon Hoare | 2010-10-09 | 1 | -3/+1 |
| | | |||||
| * | Implement a -minimal mode prologue, cut 100kb from rustc. | Graydon Hoare | 2010-10-08 | 1 | -2/+2 |
| | | |||||
| * | Quad counters are revealing. Move drops out-of-line, cut 200kb from rustc. | Graydon Hoare | 2010-10-08 | 1 | -103/+168 |
| | | |||||
| * | Add quad-counting system. | Graydon Hoare | 2010-10-08 | 1 | -9/+75 |
| | | |||||
| * | More fold caches, cut rustc compile time by 60% again. | Graydon Hoare | 2010-10-08 | 1 | -1/+4 |
| | | |||||
| * | Add -lpath mechanism for logging only a subset of a pass (by module-path prefix) | Graydon Hoare | 2010-10-08 | 1 | -20/+16 |
| | | |||||
| * | Add -minimal mode to rustboot that skips emitting code that's broken or ↵ | Graydon Hoare | 2010-10-05 | 1 | -12/+22 |
| | | | | | unneeded for rustc. Shrink rustc by 300kb. Back under 1mb. | ||||
| * | Better backpointer logic. | Graydon Hoare | 2010-10-05 | 1 | -4/+22 |
| | | |||||
| * | Fix bug in bind thunks failing top drop unbound args; add test and adjust ↵ | Graydon Hoare | 2010-09-30 | 1 | -0/+16 |
| | | | | | rustc to use bind again. | ||||
| * | Drop slots on block exits even when blocks have no statements. Part way to ↵ | Graydon Hoare | 2010-09-30 | 1 | -37/+73 |
| | | | | | fixing bind leakage in rustc. | ||||
| * | implemented break for while-loop case | Or Brostovski | 2010-09-30 | 1 | -3/+15 |
| | | | | | | | | | | | | | | | 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 | ||||
| * | Patchwork of attempted fixes to effect system and gc system; eventually give ↵ | Graydon Hoare | 2010-09-29 | 1 | -21/+34 |
| | | | | | up and disable it entirely in the runtime. Will need extensive reworking. | ||||
| * | Fix linear for loops on strings to not hit trailing null. | Graydon Hoare | 2010-09-22 | 1 | -3/+12 |
| | | |||||
| * | Implement preliminary form of structured compare. No boxes, vectors or ↵ | Graydon Hoare | 2010-09-21 | 1 | -75/+179 |
| | | | | | strings yet. | ||||
| * | Kill residual dead code in Trans.iter_tag_parts. Shaves a couple kb off rustc. | Graydon Hoare | 2010-09-21 | 1 | -1/+11 |
| | | |||||
| * | Skip 0-ary tag ctors in Trans.iter_tag_parts. Rustc loses 150kb. | Graydon Hoare | 2010-09-21 | 1 | -11/+17 |
| | | |||||
| * | Bind pattern slots with ?, drop parens from 0-ary tag constructors, ↵ | Graydon Hoare | 2010-09-20 | 1 | -10/+27 |
| | | | | | translate 0-ary constructors as constants. Rustc loses ~300kb. | ||||
| * | When translating vec-append, delay destination string's null-byte-accounting ↵ | Roy Frostig | 2010-09-20 | 1 | -45/+43 |
| | | | | | length decrement until the destination string has already been resized. Closes #163. | ||||
| * | Add Ast.ATOM_pexp and -pexp mode wherein pexps live beyond parsing, into ↵ | Graydon Hoare | 2010-09-15 | 1 | -0/+9 |
| | | | | | later stages. Fixes to pexp pretty printer. | ||||
| * | Begin actually folding constant items into operands at site of use. | Graydon Hoare | 2010-09-14 | 1 | -8/+77 |
| | | |||||
| * | Translate const uses via runtime expression evaluation. | Graydon Hoare | 2010-09-14 | 1 | -6/+16 |
| | | |||||
| * | Fix leaking arg slots on tail calls. Closes #160. | Graydon Hoare | 2010-09-13 | 1 | -0/+2 |
| | | |||||
| * | Fix a leak when box types are used via type descriptors. | Graydon Hoare | 2010-09-12 | 1 | -2/+2 |
| | | |||||
| * | Switch tags to purely nominal, removing TY_iso and TY_idx. Seems to mostly ↵ | Graydon Hoare | 2010-09-09 | 1 | -234/+169 |
| | | | | | work, possibly a little bumpy. Changes a lot. | ||||
| * | Recursively drop a type's parts if the type uses any typarams, since those ↵ | Roy Frostig | 2010-09-07 | 1 | -3/+5 |
| | | | | | typarams may represent types that actually require dropping. | ||||
| * | When vec growth results in a newly allocated (extended) buffer, copy ↵ | Roy Frostig | 2010-09-03 | 1 | -16/+185 |
| | | | | | existing elements over via element-wise copy, not flat memcpy. Introduce new vec growth glue to achieve this. | ||||
| * | Assert to insure that the worst-case glue-call arg count is not exceeded ↵ | Roy Frostig | 2010-09-03 | 1 | -5/+22 |
| | | | | | unless allowed to. | ||||
| * | Fail a bit more informatively on a bad get_element_ptr_dyn. | Roy Frostig | 2010-09-03 | 1 | -2/+6 |
| | | |||||
| * | Make pattern-alt drop the slots it initializes when binding slot patterns. ↵ | Roy Frostig | 2010-08-27 | 1 | -27/+11 |
| | | | | | Undoes most of the hackiness in 5e77e784f006e36c06252d9beccbd7893eddac73 and replaces it with a more proper fix. | ||||