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