aboutsummaryrefslogtreecommitdiff
path: root/src/boot/me/trans.ml
Commit message (Collapse)AuthorAgeFilesLines
...
* Rename 'exterior' to 'box' and 'interior' to 'local' (at least wrt. slots; ↵Graydon Hoare2010-06-301-57/+56
| | | | keep MEM_interior for describing interior-parts-of-allocations)
* Make type-cast decisions based on simplified types.Graydon Hoare2010-06-301-0/+1
|
* Remove redundant (and misnamed) function "without_exterior" in trans.Graydon Hoare2010-06-301-11/+3
|
* Init the exterior ty, not the inner ty.Graydon Hoare2010-06-301-2/+2
|
* Move simplified_ty from trans to semant and use it a few places.Graydon Hoare2010-06-301-11/+4
|
* Get compiler to the point of building std.rc and rustc.rc.Graydon Hoare2010-06-301-3/+11
|
* Teach the typechecker about the auto-dereference and auto-promote-to-mutable ↵Patrick Walton2010-06-291-1/+0
| | | | semantics we're going with
* Initial stab at lowering mutable and exterior into the type system.Graydon Hoare2010-06-291-540/+510
|
* Move more of the GC logic into the runtime.Graydon Hoare2010-06-281-183/+81
|
* Some fixme-to-issue housekeeping.Graydon Hoare2010-06-281-47/+47
|
* Only translate or dwarf-emit items or stubs locally defined or used. Avoids ↵Graydon Hoare2010-06-271-8/+11
| | | | instantiating O(sizeof(standard-library)) worth of imports stubs on each 'use std'. Closes issue 13.
* Improve sever_slot logging.Graydon Hoare2010-06-251-4/+2
|
* Fix copy-paste error in logging function.Graydon Hoare2010-06-251-2/+2
|
* Add sever-glue, for missing first stage of sweep.Graydon Hoare2010-06-251-0/+66
|
* Align emitted DATA_* elements -- tydescs in particular -- to 16 byte ↵Graydon Hoare2010-06-251-2/+5
| | | | boundaries, so we can get our tag bit freed up.
* Fix marking logic.Graydon Hoare2010-06-251-5/+7
|
* Emit gc glue and rearrange crate glue offsets slightly to have a regular order.Graydon Hoare2010-06-251-2/+7
|
* Unlink (doubly) gc chain on free.Graydon Hoare2010-06-251-7/+33
|
* Doubly-link gc chain on alloc.Graydon Hoare2010-06-251-5/+23
|
* Revert "Add intrinsic calling convention." Isn't going to work.Graydon Hoare2010-06-251-10/+2
| | | | This reverts commit 72c6c60d80cdfe63af5046a1a98549f0515734f2.
* Resolve and typecheck patterns in pattern alt redux. This time featuring ↵Roy Frostig2010-06-251-2/+2
| | | | way more correctness.
* Add intrinsic calling convention.Graydon Hoare2010-06-241-2/+10
|
* Factor out some trans bits.Graydon Hoare2010-06-241-42/+44
|
* Fix bad output-slot logic in tag constructors.Graydon Hoare2010-06-241-13/+16
|
* Fix output-slot handling for real. It's been broken for a long time.Graydon Hoare2010-06-241-64/+56
|
* Issue 24, drop output slot when not initializing. Un-XFAIL generic-tag.rs. ↵Graydon Hoare2010-06-241-6/+10
| | | | Add test for output slot modes with several broken cases.
* Remove redundant copy of comment.Graydon Hoare2010-06-241-1/+0
|
* Clean up trans_alt_tag to use slots, not assume interior words. Also remove ↵Graydon Hoare2010-06-241-44/+41
| | | | record-based destructuring (hard on eyes). Add execution parts to generic-tag-alt.rs and un-XFAIL it.
* Add fmt module, move out some common format helpers, add ↵Graydon Hoare2010-06-241-14/+14
| | | | instruction-selection tracing and make selection use queues rather than list refs.
* Resolve and typecheck patterns in pattern alt.Roy Frostig2010-06-241-2/+2
|
* Populate tree.Graydon Hoare2010-06-231-0/+5031