Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Preserve snapshot #0 PC for all traces (potential gcstep exit). | Mike Pall | 2012-09-01 | 1 | -2/+1 |
| | |||||
* | Only replay sunk stores up to the snapshot reference. | Mike Pall | 2012-07-29 | 1 | -2/+1 |
| | |||||
* | Fix slot flags in snapshot replay. | Mike Pall | 2012-07-20 | 1 | -1/+1 |
| | |||||
* | Fix restore of sunk CNEWI with implicit P32 to P64 conversion. | Mike Pall | 2012-07-18 | 1 | -0/+4 |
| | |||||
* | Drop range limit for sunk stores relative to sunk allocation. | Mike Pall | 2012-07-04 | 1 | -4/+25 |
| | |||||
* | Invoke SPLIT pass in side trace for rejoined sunk stores. | Mike Pall | 2012-07-03 | 1 | -0/+1 |
| | |||||
* | Avoid strict aliasing issues. | Mike Pall | 2012-07-03 | 1 | -5/+5 |
| | |||||
* | Add allocation sinking and store sinking optimization. | Mike Pall | 2012-07-02 | 1 | -13/+317 |
| | |||||
* | Handle initial snapshot for side traces in lj_snap.c only. | Mike Pall | 2012-07-02 | 1 | -0/+1 |
| | |||||
* | Add IR_PVAL instruction for non-slot parent links. | Mike Pall | 2012-07-02 | 1 | -0/+2 |
| | |||||
* | Move snapshot replay for side traces to lj_snap.c. | Mike Pall | 2012-07-02 | 1 | -0/+64 |
| | |||||
* | Clean up RegSP handling for parent link instructions. | Mike Pall | 2012-07-01 | 1 | -15/+25 |
| | |||||
* | Clean up snapshot restore. | Mike Pall | 2012-06-30 | 1 | -65/+64 |
| | |||||
* | Correctly preserve snapshot #0 PC for root traces (insert NOP). | Mike Pall | 2012-06-08 | 1 | -2/+7 |
| | |||||
* | Preserve snapshot #0 PC for root traces. | Mike Pall | 2012-05-14 | 1 | -0/+5 |
| | |||||
* | Bump copyright date to 2012. | Mike Pall | 2012-01-23 | 1 | -1/+1 |
| | |||||
* | Fix stack check in side exit. | Mike Pall | 2011-11-25 | 1 | -1/+1 |
| | |||||
* | Keep maximum frame extent in snap->topslot. | Mike Pall | 2011-11-20 | 1 | -25/+15 |
| | |||||
* | Get rid of snap->depth. | Mike Pall | 2011-11-20 | 1 | -3/+2 |
| | |||||
* | Fix data-flow analysis for BC_ITERL. | Mike Pall | 2011-06-27 | 1 | -1/+1 |
| | |||||
* | Fix data-flow analysis for BC_UCLO. | Mike Pall | 2011-06-07 | 1 | -0/+1 |
| | |||||
* | Fix handling of number constants in snapshots in SPLIT pass. | Mike Pall | 2011-05-27 | 1 | -2/+3 |
| | |||||
* | Split up FP IR instructions with SPLIT pass for soft-float targets. | Mike Pall | 2011-05-22 | 1 | -2/+2 |
| | |||||
* | Cleanup of target dependencies. | Mike Pall | 2011-05-16 | 1 | -2/+6 |
| | |||||
* | ARM: Add LJ_SOFTFP define. Add support for soft-float slot handling. | Mike Pall | 2011-05-16 | 1 | -8/+19 |
| | |||||
* | Fix some portability issues with the JIT compiler. | Mike Pall | 2011-05-09 | 1 | -1/+4 |
| | |||||
* | Fix data-flow analysis for BC_ITERC. | Mike Pall | 2011-03-19 | 1 | -1/+2 |
| | |||||
* | DUALNUM: Handle integer type in JIT compiler. | Mike Pall | 2011-03-10 | 1 | -1/+2 |
| | |||||
* | Eliminate dead slots in snapshots using bytecode data-flow analysis. | Mike Pall | 2011-02-22 | 1 | -15/+128 |
| | |||||
* | DUALNUM: Add integer type to core VM. | Mike Pall | 2011-02-17 | 1 | -1/+1 |
| | |||||
* | Bump copyright date to 2011. | Mike Pall | 2011-01-09 | 1 | -1/+1 |
| | |||||
* | Record calls to vararg functions. | Mike Pall | 2010-09-12 | 1 | -4/+3 |
| | | | | | | This loop is now roughly 1000x faster than the Lua interpreter: local function f(a,b,...) end; for i=1,2e8 do f(1,2,i) end Yet another silly microbenchmark -- I know. | ||||
* | Turn some lua_State fields into 32 bit pointers. | Mike Pall | 2010-09-09 | 1 | -3/+3 |
| | | | | lua_State now fits into one cache line on x64. | ||||
* | Turn traces into true GC objects (GCtrace). | Mike Pall | 2010-04-25 | 1 | -4/+4 |
| | |||||
* | Fix setup of RD when dispatching to function headers after exit. | Mike Pall | 2010-04-09 | 1 | -3/+0 |
| | |||||
* | Don't copy SNAP_NORESTORE mark into loops and suppress restore in exit. | Mike Pall | 2010-04-08 | 1 | -1/+1 |
| | |||||
* | Restore MULTRES for snapshots pointing to CALLM etc. bytecodes. | Mike Pall | 2010-03-13 | 1 | -1/+8 |
| | |||||
* | Major 32/64 bit cleanups in assembler and exit handling. | Mike Pall | 2010-02-24 | 1 | -0/+10 |
| | | | | | | | | | Add 64 bit lightuserdata handling. Keep the tagged 64 bit value. Allocate/save/restore 64 bit spill slots for 64 bit lightuserdata. Fix code generation for 64 bit loads/stores/moves/compares. Fix code generation for stack pointer adjustments. Add fixed spill slot definitions for x64. Reduce reserved spill slots. Disable STRREF + ADD fusion in 64 bit mode (avoid negative 32 bit ofs). | ||||
* | Don't eliminate SLOAD restores across RETF. | Mike Pall | 2010-02-23 | 1 | -3/+11 |
| | | | | Move restore-elimination logic into snapshot_slots(). | ||||
* | Rethrow errors from trace exit handling from the right C frame. | Mike Pall | 2010-02-19 | 1 | -1/+5 |
| | |||||
* | Drop obsolete shadow frame link stack. | Mike Pall | 2010-02-18 | 1 | -7/+31 |
| | |||||
* | Minor cleanup of trace event handling. | Mike Pall | 2010-02-15 | 1 | -3/+3 |
| | |||||
* | Drop frame clearing in exit handling and JIT compiled code. | Mike Pall | 2010-02-11 | 1 | -4/+0 |
| | |||||
* | Add shadow frame link stack for trace recorder. | Mike Pall | 2010-02-04 | 1 | -38/+15 |
| | | | | | Simplifies snapshots. Prerequisite for pre-call snapshots. Increases consistency for fast function calls, too. | ||||
* | Eliminate IR_FRAME. Replace with KGC and TRef/SnapEntry flags. | Mike Pall | 2010-01-27 | 1 | -28/+29 |
| | |||||
* | Add frame and continuation flags to TRef and SnapEntry. | Mike Pall | 2010-01-27 | 1 | -6/+7 |
| | |||||
* | Compress snapshots using a simple, extensible 1D-compression. | Mike Pall | 2010-01-26 | 1 | -116/+131 |
| | | | | | | Typically reduces storage overhead for snapshot maps by 60%. The extensible format is a prerequisite for the next redesign steps: Eliminate IR_FRAME and implement return-to-lower-frame. | ||||
* | Fill gaps in frames (caused by metamethod calls) with nil. | Mike Pall | 2010-01-26 | 1 | -2/+2 |
| | | | | Simplifies storing snapshots to stack. | ||||
* | Use dedicated type for snapshot map entry. | Mike Pall | 2010-01-25 | 1 | -12/+13 |
| | | | | Preparatory work for compressed snapshots. | ||||
* | Bump all copyright dates to 2010. | Mike Pall | 2010-01-09 | 1 | -1/+1 |
| |