Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 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 |
| | |||||
* | Fix 64 bit conversion warning. | Mike Pall | 2010-03-03 | 1 | -1/+1 |
| | |||||
* | Improve register allocation on x64. | Mike Pall | 2010-03-02 | 1 | -0/+5 |
| | |||||
* | Fix comments about 64 bit FreeBSD mmap() behavior. | Mike Pall | 2010-03-02 | 1 | -1/+2 |
| | |||||
* | Add compile errors for 64 bit OS without an equivalent of MAP_32BIT. | Mike Pall | 2010-03-02 | 1 | -4/+17 |
| | |||||
* | Add support for recursion to changelog. | Mike Pall | 2010-03-02 | 1 | -0/+1 |
| | |||||
* | Fix amalgamated build. | Mike Pall | 2010-03-02 | 1 | -1/+1 |
| | |||||
* | Enable tracing of recursion. | Mike Pall | 2010-03-01 | 5 | -74/+75 |
| | | | | | Now compiles tail-recursion, up-recursion and down-recursion. Benchmarks vs. Lua: fib 20x, ack 23x, binary-trees 4.7x. | ||||
* | Implement down-recursion. | Mike Pall | 2010-03-01 | 7 | -13/+114 |
| | |||||
* | Fix pc to line number translation for GDB JIT API. | Mike Pall | 2010-03-01 | 1 | -1/+4 |
| | |||||
* | Resize stack up to the true limit. | Mike Pall | 2010-03-01 | 1 | -2/+11 |
| | |||||
* | Fix error message generation for OOM error. | Mike Pall | 2010-02-28 | 2 | -2/+3 |
| | |||||
* | Conditionally compile functions that are unused with JIT disabled. | Mike Pall | 2010-02-28 | 8 | -0/+18 |
| | |||||
* | Enable JIT compiler for x64. | Mike Pall | 2010-02-28 | 7 | -31/+25 |
| | | | | | | | Only works on Linux/x64 and Windows/x64 right now. Force an x64 build on Linux/x64 with: make CC="gcc -m64" NYI: handle on-trace OOM errors. NYI: improve register allocation for x64. | ||||
* | Add frame info for x64 GDB JIT API. | Mike Pall | 2010-02-28 | 2 | -3/+12 |
| | |||||
* | Save/restore remaining callee-save regs on trace<->interp transitions. | Mike Pall | 2010-02-27 | 6 | -1447/+1511 |
| | |||||
* | Correctly align and free allocated machine code areas. | Mike Pall | 2010-02-27 | 4 | -12/+15 |
| | | | | Bump default mcode area size to 64K for x64. | ||||
* | Place dynamically generated code near static code on x64. | Mike Pall | 2010-02-26 | 3 | -12/+59 |
| | |||||
* | Make penalty PRNG available for general use by compiler. | Mike Pall | 2010-02-26 | 2 | -10/+10 |
| | |||||
* | Add x64 call argument setup. More 32/64 bit cleanups in assembler. | Mike Pall | 2010-02-25 | 2 | -47/+79 |
| | |||||
* | Move SIMD constants to jit_State to keep them in the low 4GB. | Mike Pall | 2010-02-24 | 6 | -18/+41 |
| | |||||
* | Handle negative continuation offsets (WIN64 with debug). | Mike Pall | 2010-02-24 | 1 | -1/+2 |
| | |||||
* | Fix 64 bit conversion warnings. | Mike Pall | 2010-02-24 | 3 | -5/+5 |
| | |||||
* | Major 32/64 bit cleanups in assembler and exit handling. | Mike Pall | 2010-02-24 | 4 | -79/+193 |
| | | | | | | | | | 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). | ||||
* | Fix 64 bit portability problem in rec_ret(). | Mike Pall | 2010-02-24 | 1 | -1/+1 |
| | |||||
* | Add trace exit helper for x64. Fix trace entry for x64. | Mike Pall | 2010-02-24 | 4 | -2853/+2916 |
| | |||||
* | Check relative jump distances for x64. | Mike Pall | 2010-02-24 | 1 | -9/+18 |
| | |||||
* | Fix type() implementation for x64 lightuserdata. | Mike Pall | 2010-02-24 | 1 | -0/+12 |
| |