| Commit message (Expand) | Author | Age | Files | Lines |
* | Untangle some target dependencies. | Mike Pall | 2010-08-03 | 1 | -1/+1 |
* | Abstract out pointer hash to hashrot(). Tune hash constants. | Mike Pall | 2010-07-21 | 1 | -10/+7 |
* | Fix passing of constant args in FPRs on x64. | Mike Pall | 2010-07-14 | 1 | -1/+1 |
* | Add weak guards. Emit TNEW/TDUP with a guard bit. | Mike Pall | 2010-05-08 | 1 | -21/+18 |
* | Simplify management of current trace. Drop lazy save. | Mike Pall | 2010-04-25 | 1 | -2/+2 |
* | Turn traces into true GC objects (GCtrace). | Mike Pall | 2010-04-25 | 1 | -8/+8 |
* | Simplify GC step calls from on-trace code. | Mike Pall | 2010-04-19 | 1 | -39/+28 |
* | Replace on-trace GC frame syncing with interpreter exit. | Mike Pall | 2010-04-19 | 1 | -49/+17 |
* | Fix setup of RD when dispatching to function headers after exit. | Mike Pall | 2010-04-09 | 1 | -5/+6 |
* | Also merge EQ(HREF, niltv) in backend. | Mike Pall | 2010-03-28 | 1 | -4/+10 |
* | Only fuse with spill slots for cross-section references. | Mike Pall | 2010-03-28 | 1 | -1/+1 |
* | Pass MULTRES or negated error code in RD to lj_vm_exit_interp. | Mike Pall | 2010-03-23 | 1 | -21/+7 |
* | Move colocated array part after GCtab (now properly aligned). | Mike Pall | 2010-03-22 | 1 | -1/+1 |
* | Increase max. fusion distance. | Mike Pall | 2010-03-19 | 1 | -1/+1 |
* | Reorder various structs to reduce padding (thanks to /usr/bin/pahole). | Mike Pall | 2010-03-15 | 1 | -3/+3 |
* | Add array bounds check elimination (-Oabc, on by default). | Mike Pall | 2010-03-15 | 1 | -1/+1 |
* | Restore MULTRES for snapshots pointing to CALLM etc. bytecodes. | Mike Pall | 2010-03-13 | 1 | -0/+23 |
* | Do not fuse SLOAD across RETF. | Mike Pall | 2010-03-08 | 1 | -1/+2 |
* | Generate indirect calls for out-of-range distances on x64. | Mike Pall | 2010-03-07 | 1 | -0/+8 |
* | Improve performance of HREF/HREFK on x64. | Mike Pall | 2010-03-03 | 1 | -3/+42 |
* | Improve register allocation on x64. | Mike Pall | 2010-03-02 | 1 | -0/+5 |
* | Implement down-recursion. | Mike Pall | 2010-03-01 | 1 | -1/+7 |
* | Add x64 call argument setup. More 32/64 bit cleanups in assembler. | Mike Pall | 2010-02-25 | 1 | -42/+58 |
* | Fix 64 bit conversion warnings. | Mike Pall | 2010-02-24 | 1 | -1/+1 |
* | Major 32/64 bit cleanups in assembler and exit handling. | Mike Pall | 2010-02-24 | 1 | -66/+152 |
* | Check relative jump distances for x64. | Mike Pall | 2010-02-24 | 1 | -9/+18 |
* | Mark renamed registers as modified. | Mike Pall | 2010-02-23 | 1 | -1/+2 |
* | Don't eliminate SLOAD restores across RETF. | Mike Pall | 2010-02-23 | 1 | -3/+1 |
* | Do not patch parent exit for a stack check. | Mike Pall | 2010-02-22 | 1 | -0/+8 |
* | Refactor Lua stack handling in lj_asm.c. | Mike Pall | 2010-02-21 | 1 | -104/+115 |
* | Eliminate redundant stack checks. Add checks for growing root traces. | Mike Pall | 2010-02-21 | 1 | -7/+21 |
* | Drop obsolete shadow frame link stack. | Mike Pall | 2010-02-18 | 1 | -3/+3 |
* | Improve FOR loop const specialization and integerness checks. | Mike Pall | 2010-02-15 | 1 | -5/+7 |
* | Major redesign of function call handling. | Mike Pall | 2010-02-13 | 1 | -2/+2 |
* | Move dispatch tables out of GG_State struct. | Mike Pall | 2010-02-11 | 1 | -2/+2 |
* | Drop frame clearing in exit handling and JIT compiled code. | Mike Pall | 2010-02-11 | 1 | -17/+1 |
* | Add shadow frame link stack for trace recorder. | Mike Pall | 2010-02-04 | 1 | -3/+3 |
* | Improve coalescing of BASE register in side traces. | Mike Pall | 2010-02-01 | 1 | -21/+47 |
* | Revise hardcoded inlining in lj_asm.c. Saves 1-2K. | Mike Pall | 2010-01-30 | 1 | -4/+4 |
* | Add support for weak IR references to register allocator. | Mike Pall | 2010-01-30 | 1 | -18/+51 |
* | Compile return to lower frame. Only for Lua frames right now. | Mike Pall | 2010-01-29 | 1 | -3/+21 |
* | Avoid reuse of PHI registers, even for duplicate right PHIs. | Mike Pall | 2010-01-27 | 1 | -1/+1 |
* | Eliminate IR_FRAME. Replace with KGC and TRef/SnapEntry flags. | Mike Pall | 2010-01-27 | 1 | -39/+28 |
* | Add frame and continuation flags to TRef and SnapEntry. | Mike Pall | 2010-01-27 | 1 | -17/+17 |
* | Compress snapshots using a simple, extensible 1D-compression. | Mike Pall | 2010-01-26 | 1 | -53/+48 |
* | Add missing eviction in asm_obar(). | Mike Pall | 2010-01-26 | 1 | -0/+1 |
* | Fill gaps in frames (caused by metamethod calls) with nil. | Mike Pall | 2010-01-26 | 1 | -2/+2 |
* | Use dedicated type for snapshot map entry. | Mike Pall | 2010-01-25 | 1 | -5/+5 |
* | Decouple guard vs. INT check vs. TYPECHECK semantics for SLOAD. | Mike Pall | 2010-01-19 | 1 | -2/+4 |
* | Fix broken intarith + testop optimization. | Mike Pall | 2010-01-19 | 1 | -1/+1 |