| Commit message (Expand) | Author | Files | Lines |
2010-03-02 | Add support for recursion to changelog. | Mike Pall | 1 | -0/+1 |
2010-03-02 | Fix amalgamated build. | Mike Pall | 1 | -1/+1 |
2010-03-01 | Enable tracing of recursion. | Mike Pall | 5 | -74/+75 |
2010-03-01 | Implement down-recursion. | Mike Pall | 7 | -13/+114 |
2010-03-01 | Fix pc to line number translation for GDB JIT API. | Mike Pall | 1 | -1/+4 |
2010-03-01 | Resize stack up to the true limit. | Mike Pall | 1 | -2/+11 |
2010-02-28 | Fix error message generation for OOM error. | Mike Pall | 2 | -2/+3 |
2010-02-28 | Conditionally compile functions that are unused with JIT disabled. | Mike Pall | 8 | -0/+18 |
2010-02-28 | Enable JIT compiler for x64. | Mike Pall | 7 | -31/+25 |
2010-02-28 | Add frame info for x64 GDB JIT API. | Mike Pall | 2 | -3/+12 |
2010-02-27 | Save/restore remaining callee-save regs on trace<->interp transitions. | Mike Pall | 6 | -1447/+1511 |
2010-02-27 | Correctly align and free allocated machine code areas. | Mike Pall | 4 | -12/+15 |
2010-02-26 | Place dynamically generated code near static code on x64. | Mike Pall | 3 | -12/+59 |
2010-02-26 | Make penalty PRNG available for general use by compiler. | Mike Pall | 2 | -10/+10 |
2010-02-25 | Add x64 call argument setup. More 32/64 bit cleanups in assembler. | Mike Pall | 2 | -47/+79 |
2010-02-24 | Move SIMD constants to jit_State to keep them in the low 4GB. | Mike Pall | 6 | -18/+41 |
2010-02-24 | Handle negative continuation offsets (WIN64 with debug). | Mike Pall | 1 | -1/+2 |
2010-02-24 | Fix 64 bit conversion warnings. | Mike Pall | 3 | -5/+5 |
2010-02-24 | Major 32/64 bit cleanups in assembler and exit handling. | Mike Pall | 4 | -79/+193 |
2010-02-24 | Fix 64 bit portability problem in rec_ret(). | Mike Pall | 1 | -1/+1 |
2010-02-24 | Add trace exit helper for x64. Fix trace entry for x64. | Mike Pall | 4 | -2853/+2916 |
2010-02-24 | Check relative jump distances for x64. | Mike Pall | 1 | -9/+18 |
2010-02-24 | Fix type() implementation for x64 lightuserdata. | Mike Pall | 1 | -0/+12 |
2010-02-24 | Fix exit state for 64 bit mode. | Mike Pall | 3 | -9/+24 |
2010-02-23 | Randomize penalties for aborts and add blacklisting. | Mike Pall | 6 | -23/+50 |
2010-02-23 | Mark renamed registers as modified. | Mike Pall | 1 | -1/+2 |
2010-02-23 | Don't eliminate SLOAD restores across RETF. | Mike Pall | 3 | -6/+13 |
2010-02-22 | Do not patch parent exit for a stack check. | Mike Pall | 1 | -0/+8 |
2010-02-22 | Ensure function and all args have a reference for call recording. | Mike Pall | 1 | -11/+28 |
2010-02-22 | Fix TRef for (dummy) 2nd arg of __len metamethod. | Mike Pall | 1 | -1/+1 |
2010-02-22 | Back out history buffer for tailcall counts. | Mike Pall | 2 | -5/+3 |
2010-02-22 | Add region selection for up-recursion and tail-recursion. | Mike Pall | 3 | -4/+5 |
2010-02-21 | Refactor Lua stack handling in lj_asm.c. | Mike Pall | 1 | -104/+115 |
2010-02-21 | Eliminate redundant stack checks. Add checks for growing root traces. | Mike Pall | 2 | -8/+26 |
2010-02-19 | Rethrow errors from trace exit handling from the right C frame. | Mike Pall | 9 | -1679/+1719 |
2010-02-18 | Allow linking to already compiled functions. | Mike Pall | 2 | -8/+24 |
2010-02-18 | Use a limited history buffer for tailcall counts while recording. | Mike Pall | 2 | -14/+17 |
2010-02-18 | Adapt bytecode patching/unpatching for hot calls. | Mike Pall | 1 | -9/+6 |
2010-02-18 | Update trace recorder infrastructure for hot calls. | Mike Pall | 3 | -15/+17 |
2010-02-18 | Fix some uses of tref_isint(). | Mike Pall | 1 | -2/+2 |
2010-02-18 | Drop obsolete shadow frame link stack. | Mike Pall | 5 | -47/+38 |
2010-02-18 | Add more assertions to compare the recorder state and the VM state. | Mike Pall | 1 | -4/+31 |
2010-02-18 | Clear frame gaps in recorder to avoid resurrecting previous refs. | Mike Pall | 1 | -2/+6 |
2010-02-17 | Update docs and changelog. | Mike Pall | 3 | -18/+39 |
2010-02-16 | Just disable JIT compiler for non-SSE2 CPUs instead of aborting. | Mike Pall | 4 | -18/+27 |
2010-02-16 | Split CALL/FUNC recording. | Mike Pall | 2 | -447/+455 |
2010-02-15 | Improve error reporting for traces aborted in non-Lua functions. | Mike Pall | 1 | -2/+13 |
2010-02-15 | Change record vmevent parameters. Dump function id on FUNC*. | Mike Pall | 2 | -18/+18 |
2010-02-15 | Use a different marker for hot calls. | Mike Pall | 5 | -1081/+1097 |
2010-02-15 | Add generic function handling for debug modules. | Mike Pall | 4 | -48/+52 |