| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | When vec growth results in a newly allocated (extended) buffer, copy ↵ | Roy Frostig | 2010-09-03 | 1 | -2/+2 |
| | | | | | existing elements over via element-wise copy, not flat memcpy. Introduce new vec growth glue to achieve this. | ||||
| * | Whitespace churn. | Graydon Hoare | 2010-08-31 | 1 | -1/+1 |
| | | |||||
| * | Make vreg constrs per-quad, regfence on nontrivial constrs, back out ↵ | Graydon Hoare | 2010-08-26 | 1 | -46/+61 |
| | | | | | workaround to _uint, add regression test. Closes #152. | ||||
| * | Add check to catch bug underlying issue #152. Fix will take longer. | Graydon Hoare | 2010-08-26 | 1 | -1/+14 |
| | | |||||
| * | Add element to closure to hold captured tydesc (not body tydesc). | Graydon Hoare | 2010-08-25 | 1 | -3/+4 |
| | | |||||
| * | First pass of updating the in-memory layout of closures, for issue 81. | Graydon Hoare | 2010-08-25 | 1 | -8/+9 |
| | | |||||
| * | Janitorial work on obj box / body / field terminology, following froystig's ↵ | Graydon Hoare | 2010-08-25 | 2 | -4/+6 |
| | | | | | brave lead. | ||||
| * | Export all item code to stabs on Windows (including e.g. object methods) | Patrick Walton | 2010-08-19 | 1 | -3/+5 |
| | | |||||
| * | Export glue as stabs on Windows as well | Patrick Walton | 2010-08-19 | 1 | -5/+13 |
| | | |||||
| * | Add some mangled stabs to help debugging on Windows | Patrick Walton | 2010-08-19 | 1 | -2/+18 |
| | | |||||
| * | Zero LMA/VMA of debug sections in elf. Closes #148. | Graydon Hoare | 2010-08-12 | 1 | -105/+42 |
| | | |||||
| * | Some ELF correctness issues, but apparently none enough to placate gdb. | Graydon Hoare | 2010-08-11 | 1 | -25/+50 |
| | | |||||
| * | Put out burning tinderbox on OSX. | Graydon Hoare | 2010-08-10 | 1 | -8/+19 |
| | | |||||
| * | Always bounce mul/div/mod ops. Closes #131 harder. | Graydon Hoare | 2010-08-10 | 1 | -23/+6 |
| | | |||||
| * | Get object's captured typarams when calculating sizes in the backend's ↵ | Roy Frostig | 2010-08-09 | 3 | -8/+63 |
| | | | | | fn-prologue-generation for object methods. | ||||
| * | Changed seemingly incorrect stk_field_valgrind_id. | Michael Bebenita | 2010-08-09 | 1 | -1/+1 |
| | | |||||
| * | Degrade emitter size cache to just a flat hashtable with regular flushes ↵ | Graydon Hoare | 2010-08-05 | 2 | -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 Hoare | 2010-08-05 | 1 | -7/+12 |
| | | | | | vec by all integral types. Closes #94. | ||||
| * | Kill the preallocator, install a sane replacement. Closes #131. And probably ↵ | Graydon Hoare | 2010-08-04 | 3 | -261/+115 |
| | | | | | a lot of others. | ||||
| * | Factor append_quad out of IL.emit_full, for use elsewhere. | Graydon Hoare | 2010-08-03 | 1 | -4/+12 |
| | | |||||
| * | Remove dead implicit-destinations logic from IL. | Graydon Hoare | 2010-08-03 | 5 | -20/+11 |
| | | |||||
| * | Patch up another place where the newly-expanded 'closure-ptr' implicit arg ↵ | Graydon Hoare | 2010-07-30 | 1 | -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 Hoare | 2010-07-26 | 1 | -8/+9 |
| | | |||||
| * | Do some more iflog-guarding. | Graydon Hoare | 2010-07-26 | 1 | -61/+43 |
| | | |||||
| * | Don't write to NULL after calling C natives returning void. | Roy Frostig | 2010-07-25 | 2 | -4/+7 |
| | | |||||
| * | Notify copy glue of dst-initialization and fix _vec.alloc issues in lib and ↵ | Roy Frostig | 2010-07-22 | 1 | -2/+3 |
| | | | | | runtime. Closes #109. | ||||
| * | Added a message passing system based on lock free queues for inter-thread ↵ | Michael Bebenita | 2010-07-19 | 1 | -1/+1 |
| | | | | | communication. Channels now buffer on the sending side, and no longer require blocking when sending. Lots of other refactoring and bug fixes. | ||||
| * | Stub an interface to the (as-yet-nonexistent) structural comparison glue in ↵ | Patrick Walton | 2010-07-18 | 1 | -0/+2 |
| | | | | | trans | ||||
| * | More renaming of GEP offsets in abi/trans. This should settle it. Also, ↵ | Roy Frostig | 2010-07-16 | 1 | -5/+10 |
| | | | | | fix some overenthusiastic renaming in previous commit. | ||||
| * | Clean up nomenclature in the Abi constants brigade. Purge magic GEP numbers ↵ | Roy Frostig | 2010-07-16 | 2 | -17/+25 |
| | | | | | in trans. Adjust obj_closure_rty (and its consumers) to be more explicit about the fact that it is a box. | ||||
| * | Remove the __PAGEZERO segment from shared MachO libraries. This avoids a | Jeffrey Yasskin | 2010-07-16 | 1 | -10/+14 |
| | | | | | segfault in dlclose() and fixes the tests on OSX 10.5.8. | ||||
| * | In Mach-O shared libraries, avoid counting an extra load command. Closes #99. | Jeffrey Yasskin | 2010-07-16 | 1 | -1/+7 |
| | | |||||
| * | Define (in Abi) and use named constants for indices of elements of an obj IL ↵ | Roy Frostig | 2010-07-15 | 1 | -0/+4 |
| | | | | | referent type. | ||||
| * | Make the x86 backend push an extra word as closure/obj arg when emitting any ↵ | Roy Frostig | 2010-07-15 | 2 | -3/+5 |
| | | | | | code that amounts to a glue or native call. | ||||
| * | Begin moving closure-or-obj pointer out to front of call args by changing ↵ | Roy Frostig | 2010-07-15 | 1 | -5/+5 |
| | | | | | the order within the call-arg tup referent type. This breaks the world quite a bit, since it remains to fix custom call paths: glue, upcalls, natives. | ||||
| * | Delete some dead code in x86. | Graydon Hoare | 2010-07-12 | 1 | -8/+0 |
| | | |||||
| * | Hey, what's a coding sprint without an uncovered register allocation bug? No ↵ | Graydon Hoare | 2010-07-02 | 1 | -1/+2 |
| | | | | | fun, I say. | ||||
| * | Rename 'exterior' to 'box' and 'interior' to 'local' (at least wrt. slots; ↵ | Graydon Hoare | 2010-06-30 | 2 | -15/+15 |
| | | | | | keep MEM_interior for describing interior-parts-of-allocations) | ||||
| * | Some fixme-to-issue housekeeping. | Graydon Hoare | 2010-06-28 | 1 | -2/+3 |
| | | |||||
| * | Fix register-use bugs in sweep pass, factor sweep pass out and call twice ↵ | Graydon Hoare | 2010-06-25 | 1 | -57/+73 |
| | | | | | for separate sever/free phases. | ||||
| * | Add sever-glue, for missing first stage of sweep. | Graydon Hoare | 2010-06-25 | 1 | -2/+3 |
| | | |||||
| * | Pass type parameters to free function called from sweep loop. | Graydon Hoare | 2010-06-25 | 1 | -9/+16 |
| | | |||||
| * | Fix bad register use in GC sweep pass. | Graydon Hoare | 2010-06-25 | 1 | -5/+9 |
| | | |||||
| * | Remove obsolete comment. | Graydon Hoare | 2010-06-25 | 1 | -1/+0 |
| | | |||||
| * | I hear actually loading the next pointer into the right register helps when ↵ | Graydon Hoare | 2010-06-25 | 1 | -8/+7 |
| | | | | | walking a list. | ||||
| * | Debug GC glue enough that marking passes. | Graydon Hoare | 2010-06-25 | 1 | -16/+33 |
| | | |||||
| * | Update comment to reflect slightly-improved GC situation. | Graydon Hoare | 2010-06-25 | 1 | -8/+2 |
| | | |||||
| * | Emit gc glue and rearrange crate glue offsets slightly to have a regular order. | Graydon Hoare | 2010-06-25 | 2 | -0/+2 |
| | | |||||
| * | Return at end of GC glue. | Graydon Hoare | 2010-06-25 | 1 | -0/+1 |
| | | |||||
| * | Unlink (doubly) gc chain on free. | Graydon Hoare | 2010-06-25 | 1 | -0/+1 |
| | | |||||