| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | FFI: Optimize snapshots for cdata comparisons. | Mike Pall | 2011-02-05 | 1 | -3/+3 |
| | | |||||
| * | FFI: Record C library namespace lookups. | Mike Pall | 2011-02-05 | 1 | -3/+3 |
| | | |||||
| * | FFI: Add basic FOLD rules for 64 bit integer DIV, MOD and POWI. | Mike Pall | 2011-02-02 | 1 | -1/+1 |
| | | |||||
| * | Add SPLIT pass to split 64 bit IR instructions for 32 bit CPUs. | Mike Pall | 2011-02-02 | 1 | -6/+9 |
| | | | | | | | | Add generic HIOP instruction for extra backend functionality. Add support for HIOP to x86 backend. Use POWI for 64 bit integer x^k, too. POWI is lowered to a call by SPLIT or the x64 backend. | ||||
| * | FFI: Move code for cdata arithmetic to lj_carith.c. | Mike Pall | 2011-01-26 | 1 | -12/+15 |
| | | |||||
| * | FFI: Auto-detect __stdcall and fix up C function declarations. | Mike Pall | 2011-01-10 | 1 | -1/+2 |
| | | |||||
| * | FFI: Add ffi.load() and ffi.C default namespace. | Mike Pall | 2011-01-10 | 1 | -10/+14 |
| | | |||||
| * | FFI: Preserve stack top across implicit load of FFI library in lexer. | Mike Pall | 2011-01-09 | 1 | -1/+1 |
| | | |||||
| * | FFI: Add missing GC steps for C function calls. | Mike Pall | 2011-01-09 | 1 | -1/+1 |
| | | |||||
| * | FFI: Add support for calling C functions. | Mike Pall | 2011-01-06 | 1 | -10/+14 |
| | | |||||
| * | Use cdata to pass IR_KINT64 to -jdump. | Mike Pall | 2011-01-02 | 1 | -1/+1 |
| | | |||||
| * | FFI: Add 64 bit integer arithmetic. | Mike Pall | 2010-12-25 | 1 | -1/+1 |
| | | |||||
| * | FFI: Parse complex and 64 bit integer literals. | Mike Pall | 2010-12-24 | 1 | -9/+10 |
| | | |||||
| * | FFI: Record cdata allocations. | Mike Pall | 2010-12-22 | 1 | -6/+6 |
| | | |||||
| * | FFI: Record cdata index operations (preliminary, lots of NYI cases). | Mike Pall | 2010-12-08 | 1 | -6/+10 |
| | | |||||
| * | Split off fast function recording to lj_ffrecord.c. | Mike Pall | 2010-12-05 | 1 | -9/+12 |
| | | |||||
| * | FFI: Add ffi.* library. | Mike Pall | 2010-12-05 | 1 | -2/+6 |
| | | |||||
| * | FFI: Add support for converting cdata to tonumber(). | Mike Pall | 2010-12-05 | 1 | -2/+2 |
| | | |||||
| * | FFI: Add C declaration parser. | Mike Pall | 2010-12-05 | 1 | -7/+10 |
| | | |||||
| * | FFI: Add C data handling and C type conversions. | Mike Pall | 2010-12-05 | 1 | -15/+19 |
| | | |||||
| * | FFI: Add C type management. | Mike Pall | 2010-12-05 | 1 | -10/+13 |
| | | |||||
| * | Rename character type handling from lj_ctype* to lj_char*. | Mike Pall | 2010-11-09 | 1 | -16/+16 |
| | | |||||
| * | PPC: Add PowerPC target architecture selection. | Mike Pall | 2010-08-25 | 1 | -6/+7 |
| | | |||||
| * | Untangle some target dependencies. | Mike Pall | 2010-08-03 | 1 | -94/+92 |
| | | |||||
| * | Avoid string allocation in GDB JIT API. | Mike Pall | 2010-05-09 | 1 | -1/+1 |
| | | |||||
| * | Fold HREF of TNEW/TDUP to niltv. Fold HLOAD of niltv to nil. | Mike Pall | 2010-03-28 | 1 | -2/+2 |
| | | |||||
| * | Correctly align and free allocated machine code areas. | Mike Pall | 2010-02-27 | 1 | -7/+7 |
| | | | | | Bump default mcode area size to 64K for x64. | ||||
| * | Place dynamically generated code near static code on x64. | Mike Pall | 2010-02-26 | 1 | -1/+1 |
| | | |||||
| * | Major redesign of function call handling. | Mike Pall | 2010-02-13 | 1 | -25/+26 |
| | | | | | | | | | | | | Drop call gates. Use function headers, dispatched like bytecodes. Emit BC_FUNCF/BC_FUNCV bytecode at PC 0 for all Lua functions. C functions and ASM fast functions get extra bytecodes. Modify internal calling convention: new base in BASE (formerly in RA). Can now use better C function wrapper semantics (dynamic on/off). Prerequisite for call hooks with zero-overhead if disabled. Prerequisite for compiling recursive calls. Prerequisite for efficient 32/64 bit prototype guards. | ||||
| * | Move dispatch tables out of GG_State struct. | Mike Pall | 2010-02-11 | 1 | -12/+12 |
| | | |||||
| * | Move bytecode offsets from lj_vm.* to generated header. | Mike Pall | 2010-02-05 | 1 | -11/+13 |
| | | |||||
| * | Compress snapshots using a simple, extensible 1D-compression. | Mike Pall | 2010-01-26 | 1 | -3/+3 |
| | | | | | | | 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. | ||||
| * | Fast forward to sync public repo. | Mike Pall | 2009-12-08 | 1 | -7/+8 |
| | | | | | | | | | Compile math.sinh(), math.cosh(), math.tanh() and math.random(). Compile various io.*() functions. Drive the GC forward on string allocations in the parser. Improve KNUM fuse vs. load heuristics. Add abstract C call handling to IR. | ||||
| * | RELEASE LuaJIT-2.0.0-beta2v2.0.0-beta2 | Mike Pall | 2009-12-08 | 1 | -2/+2 |
| | | |||||
| * | RELEASE LuaJIT-2.0.0-beta1v2.0.0-beta1 | Mike Pall | 2009-12-08 | 1 | -0/+139 |
