about summary refs log tree commit diff
path: root/src/boot/be
AgeCommit message (Collapse)AuthorLines
2011-04-02Change rust_vec to have a 16-byte header, to 16-byte-align vec-body data. ↵Graydon Hoare-1/+2
Major perf win.
2011-03-25Another go at changing compile-command, this time using RBUILD env var.Graydon Hoare-8/+8
2011-03-25Revert "Bulk-edit compile commands in emacs chatter to point to assumed ↵Graydon Hoare-8/+8
build/ dir off src root." This reverts commit 846f2e2ba994268725f38c36fa12f1a09f21615c.
2011-03-25Bulk-edit compile commands in emacs chatter to point to assumed build/ dir ↵Graydon Hoare-8/+8
off src root.
2011-03-11Switch rustboot from element-wise copying to take+drop+memcpy. Un-XFAIL ↵Graydon Hoare-1/+1
size-and-align.rs for rustc.
2011-02-22Add ABI tagging to crates, adjust rustc output and runtime stack-frame setup ↵Graydon Hoare-12/+24
so access to argv works.
2011-02-10Revert EI_OSABI ELF header field back to 0 for LinuxBrian Anderson-1/+0
2011-02-09Re-indent a bit of elf.Graydon Hoare-10/+10
2011-02-09Add several 1-word .bss fragments for FreeBSD.Graydon Hoare-0/+21
2011-02-09Add .bss fragment support to elf.Graydon Hoare-3/+31
2011-02-09Adapt elf.ml to handle differences between Linux and FreeBSD.Rob Arnold-6/+20
2010-11-16Update frame logic to be compatible with SysV x86 ABI. Improves diagnostics.Graydon Hoare-50/+85
2010-11-09Support a special const-value refcount, use it for const strings.Graydon Hoare-0/+3
2010-10-14Fix crasher in rustc.Graydon Hoare-2/+4
2010-10-12Fix horribly embarassing signedness bug in backend, plus related regressions.Graydon Hoare-3/+13
2010-10-12Git index wins again.Graydon Hoare-2/+7
2010-10-12Changes to make rustboot compile on OCaml 3.12Graydon Hoare-2/+2
2010-10-10Teach bind to actually bind typarams, as it claims to.Graydon Hoare-2/+2
2010-10-08Implement a -minimal mode prologue, cut 100kb from rustc.Graydon Hoare-30/+76
2010-10-07Make minimal-mode slightly less aggressive.Graydon Hoare-7/+3
2010-10-05Add -minimal mode to rustboot that skips emitting code that's broken or ↵Graydon Hoare-3/+8
unneeded for rustc. Shrink rustc by 300kb. Back under 1mb.
2010-10-05Better backpointer logic.Graydon Hoare-4/+15
2010-09-29Patchwork of attempted fixes to effect system and gc system; eventually give ↵Graydon Hoare-1/+1
up and disable it entirely in the runtime. Will need extensive reworking.
2010-09-20Bind pattern slots with ?, drop parens from 0-ary tag constructors, ↵Graydon Hoare-1/+3
translate 0-ary constructors as constants. Rustc loses ~300kb.
2010-09-09Use hashtable rather than bitset for vreg constraints in ra; speeds compilation.Graydon Hoare-26/+40
2010-09-09Switch tags to purely nominal, removing TY_iso and TY_idx. Seems to mostly ↵Graydon Hoare-4/+10
work, possibly a little bumpy. Changes a lot.
2010-09-07Lots of design changes around proxies and message passing. Made it so that ↵Michael Bebenita-1/+1
domains can only talk to other domains via handles, and with the help of the rust_kernel.
2010-09-03When vec growth results in a newly allocated (extended) buffer, copy ↵Roy Frostig-2/+2
existing elements over via element-wise copy, not flat memcpy. Introduce new vec growth glue to achieve this.
2010-08-31Whitespace churn.Graydon Hoare-1/+1
2010-08-26Make vreg constrs per-quad, regfence on nontrivial constrs, back out ↵Graydon Hoare-46/+61
workaround to _uint, add regression test. Closes #152.
2010-08-26Add check to catch bug underlying issue #152. Fix will take longer.Graydon Hoare-1/+14
2010-08-25Add element to closure to hold captured tydesc (not body tydesc).Graydon Hoare-3/+4
2010-08-25First pass of updating the in-memory layout of closures, for issue 81.Graydon Hoare-8/+9
2010-08-25Janitorial work on obj box / body / field terminology, following froystig's ↵Graydon Hoare-4/+6
brave lead.
2010-08-19Export all item code to stabs on Windows (including e.g. object methods)Patrick Walton-3/+5
2010-08-19Export glue as stabs on Windows as wellPatrick Walton-5/+13
2010-08-19Add some mangled stabs to help debugging on WindowsPatrick Walton-2/+18
2010-08-12Zero LMA/VMA of debug sections in elf. Closes #148.Graydon Hoare-105/+42
2010-08-11Some ELF correctness issues, but apparently none enough to placate gdb.Graydon Hoare-25/+50
2010-08-10Put out burning tinderbox on OSX.Graydon Hoare-8/+19
2010-08-10Always bounce mul/div/mod ops. Closes #131 harder.Graydon Hoare-23/+6
2010-08-09Get object's captured typarams when calculating sizes in the backend's ↵Roy Frostig-8/+63
fn-prologue-generation for object methods.
2010-08-09Changed seemingly incorrect stk_field_valgrind_id.Michael Bebenita-1/+1
2010-08-05Degrade emitter size cache to just a flat hashtable with regular flushes ↵Graydon Hoare-8/+38
(sigh) and re-introduce horrible bounce-off-spill hack for DIV, MUL, etc.
2010-08-05Move 'as' precedence up to just above relational; support indexing str and ↵Graydon Hoare-7/+12
vec by all integral types. Closes #94.
2010-08-04Kill the preallocator, install a sane replacement. Closes #131. And probably ↵Graydon Hoare-261/+115
a lot of others.
2010-08-03Factor append_quad out of IL.emit_full, for use elsewhere.Graydon Hoare-4/+12
2010-08-03Remove dead implicit-destinations logic from IL.Graydon Hoare-20/+11
2010-07-30Patch up another place where the newly-expanded 'closure-ptr' implicit arg ↵Graydon Hoare-1/+2
needs to be passed. Amazingly, it mostly-worked without this. On some platforms.
2010-07-26Slight shaving on RA, no more optimizing today. It's fast enough for now.Graydon Hoare-8/+9