| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Fix nested patterns in rustboot | Tim Chevalier | 2011-04-28 | 1 | -16/+34 |
| | | | | | | | | | | | The code for taking pattern-bound variables was being interspersed with pattern code, so that if a nested pattern failed partway through, a variable would be taken but never dropped (because the drop code is inside the block representing the action for the pattern). For example, in the pattern foo(?i, bar(some[t](_)), _), if the scrutinee was foo(x, bar(none[t]), y), the variable i would be taken but never dropped. The patch fixes this bug. | ||||
| * | Overhaul logging system in runtime | Marijn Haverbeke | 2011-04-19 | 1 | -4/+4 |
| | | | | | | | | | | | | | | | See https://github.com/graydon/rust/wiki/Logging-vision The runtime logging categories are now treated in the same way as modules in compiled code. Each domain now has a log_lvl that can be used to restrict the logging from that domain (will be used to allow logging to be restricted to a single domain). Features dropped (can be brought back to life if there is interest): - Logger indentation - Multiple categories per log statement - I possibly broke some of the color code -- it confuses me | ||||
| * | replace error logging with log_err in stdlib and rustc | Marijn Haverbeke | 2011-04-19 | 1 | -2/+4 |
| | | |||||
| * | Add log_err to rustboot | Marijn Haverbeke | 2011-04-19 | 1 | -8/+11 |
| | | |||||
| * | Change rust_vec to have a 16-byte header, to 16-byte-align vec-body data. ↵ | Graydon Hoare | 2011-04-02 | 1 | -3/+5 |
| | | | | | Major perf win. | ||||
| * | Another go at changing compile-command, this time using RBUILD env var. | Graydon Hoare | 2011-03-25 | 1 | -1/+1 |
| | | |||||
| * | Revert "Bulk-edit compile commands in emacs chatter to point to assumed ↵ | Graydon Hoare | 2011-03-25 | 1 | -1/+1 |
| | | | | | | | build/ dir off src root." This reverts commit 846f2e2ba994268725f38c36fa12f1a09f21615c. | ||||
| * | Bulk-edit compile commands in emacs chatter to point to assumed build/ dir ↵ | Graydon Hoare | 2011-03-25 | 1 | -1/+1 |
| | | | | | off src root. | ||||
| * | Switch rustboot from element-wise copying to take+drop+memcpy. Un-XFAIL ↵ | Graydon Hoare | 2011-03-11 | 1 | -98/+74 |
| | | | | | size-and-align.rs for rustc. | ||||
| * | Fix seemingly un-noticed thinko in structural copying code in rustboot. | Graydon Hoare | 2011-03-10 | 1 | -1/+1 |
| | | |||||
| * | Add ABI tagging to crates, adjust rustc output and runtime stack-frame setup ↵ | Graydon Hoare | 2011-02-22 | 1 | -0/+4 |
| | | | | | so access to argv works. | ||||
| * | 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. | ||||