Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add assertions to guard against using lua_*call on dead coroutines. | Mike Pall | 2010-04-23 | 1 | -3/+6 |
| | |||||
* | Avoid compiler warning. | Mike Pall | 2010-04-23 | 1 | -1/+1 |
| | |||||
* | No longer let the GC replace dead keys with the LJ_TDEADKEY tag. | Mike Pall | 2010-04-21 | 13 | -43/+65 |
| | | | | | | | | Important: this changes the semantics of the write barrier! Carefully read the big comment block in lj_obj.h This helps HREFK key slot specialization and allows safely hoisting HREF/HREFK across GC steps, too (fix for a barely reproducible bug). Dead keys are only removed during a table resize (as before). | ||||
* | Simplify GC step calls from on-trace code. | Mike Pall | 2010-04-19 | 3 | -41/+32 |
| | |||||
* | Replace on-trace GC frame syncing with interpreter exit. | Mike Pall | 2010-04-19 | 11 | -1906/+1885 |
| | | | | | | | Need to sync GC objects to stack only during atomic GC phase. Need to setup a proper frame structure only for calling finalizers. Force an exit to the interpreter and let it handle the uncommon cases. Finally solves the "NYI: gcstep sync with frames" issue. | ||||
* | Refactor buildvm symbol generation. | Mike Pall | 2010-04-14 | 8 | -324/+203 |
| | | | | Fixes Windows and OSX builds with LUAJIT_DISABLE_JIT. | ||||
* | Fix setup of RD when dispatching to function headers after exit. | Mike Pall | 2010-04-09 | 7 | -1803/+1820 |
| | |||||
* | Don't copy SNAP_NORESTORE mark into loops and suppress restore in exit. | Mike Pall | 2010-04-08 | 2 | -2/+2 |
| | |||||
* | RELEASE LuaJIT-2.0.0-beta4v2.0.0-beta4 | Mike Pall | 2010-03-28 | 9 | -24/+34 |
| | |||||
* | Update changelog. | Mike Pall | 2010-03-28 | 1 | -0/+2 |
| | |||||
* | Fold HREF of TNEW/TDUP to niltv. Fold HLOAD of niltv to nil. | Mike Pall | 2010-03-28 | 4 | -2/+64 |
| | |||||
* | Generate EQ(HREF, niltv) for load path, too (better CSE). | Mike Pall | 2010-03-28 | 1 | -1/+7 |
| | |||||
* | 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 |
| | |||||
* | Fix precondition check for NEWREF. | Mike Pall | 2010-03-28 | 1 | -2/+2 |
| | | | | A check for nil value is not enough. Must check for ptr == niltv. | ||||
* | Pass MULTRES or negated error code in RD to lj_vm_exit_interp. | Mike Pall | 2010-03-23 | 6 | -1839/+1822 |
| | | | | Fixes overwrite of saved r12 after trace exit. | ||||
* | Move colocated array part after GCtab (now properly aligned). | Mike Pall | 2010-03-22 | 3 | -25/+17 |
| | |||||
* | Move free node pos to t->node[0].freetop. Saves 4 bytes in GCtab. | Mike Pall | 2010-03-22 | 3 | -55/+38 |
| | |||||
* | Avoid snapshots for returns to known callers. | Mike Pall | 2010-03-21 | 1 | -2/+2 |
| | |||||
* | Add links to interactive performance comparison to offline docs. | Mike Pall | 2010-03-19 | 8 | -1/+18 |
| | |||||
* | 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 | 7 | -15/+15 |
| | |||||
* | Fix TSETM on x64/SSE builds when table is resized. | Mike Pall | 2010-03-15 | 5 | -448/+426 |
| | |||||
* | Add static target to msvcbuild.bat. | Mike Pall | 2010-03-15 | 1 | -0/+6 |
| | |||||
* | Update changelog. | Mike Pall | 2010-03-15 | 2 | -1/+19 |
| | |||||
* | Add array bounds check elimination (-Oabc, on by default). | Mike Pall | 2010-03-15 | 5 | -20/+101 |
| | |||||
* | Reorganize scalar evolution analysis. | Mike Pall | 2010-03-15 | 2 | -7/+32 |
| | |||||
* | Fix folding of (comparison x x). | Mike Pall | 2010-03-14 | 1 | -1/+1 |
| | |||||
* | Restore MULTRES for snapshots pointing to CALLM etc. bytecodes. | Mike Pall | 2010-03-13 | 3 | -3/+49 |
| | |||||
* | Fix potential hang in UCLO redirection handling in hooks. | Mike Pall | 2010-03-10 | 1 | -9/+7 |
| | |||||
* | Fix handling of bad argument types in recorder. | Mike Pall | 2010-03-09 | 1 | -2/+3 |
| | |||||
* | Fix recording of getmetatable() for non-tables. | Mike Pall | 2010-03-09 | 1 | -3/+5 |
| | |||||
* | Avoid tracing the nil return case of tonumber(). | Mike Pall | 2010-03-09 | 1 | -1/+5 |
| | |||||
* | Add WinSDK v7.0 requirement for building on Windows/x64. | Mike Pall | 2010-03-09 | 1 | -2/+2 |
| | |||||
* | Do not fuse SLOAD across RETF. | Mike Pall | 2010-03-08 | 1 | -1/+2 |
| | |||||
* | RELEASE LuaJIT-2.0.0-beta3v2.0.0-beta3 | Mike Pall | 2010-03-07 | 8 | -23/+20 |
| | |||||
* | Fix tracebacks for failed coroutines. | Mike Pall | 2010-03-07 | 1 | -0/+4 |
| | |||||
* | Add OS/CPU/CC compatibility matrix to docs. Fix spelling. | Mike Pall | 2010-03-07 | 4 | -10/+59 |
| | |||||
* | Rebase dynamic library on OSX/x64. | Mike Pall | 2010-03-07 | 1 | -0/+1 |
| | |||||
* | Improve placement of dynamically generated code on x64. | Mike Pall | 2010-03-07 | 1 | -1/+1 |
| | |||||
* | Fix assertion in rec_check_slots. | Mike Pall | 2010-03-07 | 1 | -1/+1 |
| | |||||
* | Generate indirect calls for out-of-range distances on x64. | Mike Pall | 2010-03-07 | 2 | -0/+14 |
| | |||||
* | Fix unwind info for assembler part for OSX. | Mike Pall | 2010-03-07 | 4 | -144/+244 |
| | |||||
* | Fix disassembly of call/jmp ModRM. | Mike Pall | 2010-03-07 | 1 | -2/+2 |
| | |||||
* | Fix generated 64 bit Mach-O assembler output. | Mike Pall | 2010-03-05 | 4 | -0/+32 |
| | |||||
* | Document jit.status(). | Mike Pall | 2010-03-04 | 1 | -0/+8 |
| | |||||
* | Update docs: native build default, cross-compilation, embedding. | Mike Pall | 2010-03-04 | 4 | -34/+65 |
| | |||||
* | Allocate 32 bit memory on OSX/x64 with mmap() hinting. | Mike Pall | 2010-03-04 | 2 | -5/+43 |
| | | | | Must set -pagezero_size, otherwise the lower 4GB are blocked. | ||||
* | Build as a native 32 or 64 bit binary by default. | Mike Pall | 2010-03-04 | 1 | -10/+21 |
| | |||||
* | Improve performance of HREF/HREFK on x64. | Mike Pall | 2010-03-03 | 2 | -4/+43 |
| |