Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge branch 'master' into v2.1 | Mike Pall | 2017-01-17 | 1 | -1/+1 |
|\ | |||||
| * | Bump copyright date to 2017. | Mike Pall | 2017-01-17 | 1 | -1/+1 |
| | | |||||
* | | LJ_GC64: Various fixes. | Mike Pall | 2016-10-12 | 1 | -1/+1 |
| | | | | | | | | Contributed by Peter Cawley. | ||||
* | | x64/LJ_GC64: Add missing backend support and enable JIT compilation. | Mike Pall | 2016-05-23 | 1 | -3/+9 |
| | | | | | | | | Contributed by Peter Cawley. | ||||
* | | x86: Generate BMI2 shifts and rotates, if available. | Mike Pall | 2016-03-28 | 1 | -0/+11 |
| | | | | | | | | Contributed by Peter Cawley. | ||||
* | | Merge branch 'master' into v2.1 | Mike Pall | 2016-03-03 | 1 | -1/+1 |
|\| | |||||
| * | Bump copyright date to 2016. | Mike Pall | 2016-03-03 | 1 | -1/+1 |
| | | |||||
* | | x64: Add LJ_GC64 mode interpreter. | Mike Pall | 2015-05-04 | 1 | -0/+4 |
| | | | | | | | | Enable this mode with: make XCFLAGS=-DLUAJIT_ENABLE_GC64 | ||||
* | | Merge branch 'master' into v2.1 | Mike Pall | 2015-01-06 | 1 | -1/+1 |
|\| | |||||
| * | Bump copyright date to 2015. | Mike Pall | 2015-01-05 | 1 | -1/+1 |
| | | |||||
* | | Merge branch 'master' into v2.1 | Mike Pall | 2014-01-16 | 1 | -1/+1 |
|\| | |||||
| * | Bump copyright date to 2014. | Mike Pall | 2014-01-16 | 1 | -1/+1 |
| | | |||||
* | | Add generic load/store with offset to assembler backends. | Mike Pall | 2013-04-21 | 1 | -0/+1 |
| | | |||||
* | | Remove obsolete non-truncating number to integer conversions. | Mike Pall | 2013-02-23 | 1 | -2/+0 |
|/ | |||||
* | Bump copyright date to 2013. | Mike Pall | 2013-02-11 | 1 | -1/+1 |
| | |||||
* | FFI: Fix recording of bool call result check on x86/x64. | Mike Pall | 2012-11-06 | 1 | -0/+2 |
| | |||||
* | x86: Fix register allocation for calls returning register pair. | Mike Pall | 2012-09-27 | 1 | -0/+1 |
| | |||||
* | Fix PHI stack slot syncing. | Mike Pall | 2012-05-07 | 1 | -0/+2 |
| | |||||
* | Bump copyright date to 2012. | Mike Pall | 2012-01-23 | 1 | -1/+1 |
| | |||||
* | FFI: Add callback support (for x86/x64). | Mike Pall | 2011-11-14 | 1 | -0/+2 |
| | |||||
* | FFI: Compile calls to stdcall, fastcall and vararg functions. | Mike Pall | 2011-10-27 | 1 | -0/+4 |
| | |||||
* | Cleanup various endianess issues in assembler backend. | Mike Pall | 2011-10-22 | 1 | -0/+1 |
| | |||||
* | Portability cleanups for assembler backend. | Mike Pall | 2011-05-17 | 1 | -2/+2 |
| | |||||
* | Cleanup of target dependencies. | Mike Pall | 2011-05-16 | 1 | -0/+4 |
| | |||||
* | Add target-specific macro for stack alignment in assembler backend. | Mike Pall | 2011-05-16 | 1 | -0/+1 |
| | |||||
* | Disentangle target-specific parts of JIT assembler backend. | Mike Pall | 2011-05-12 | 1 | -0/+6 |
| | |||||
* | DUALNUM: Add integer variant of MIN/MAX. | Mike Pall | 2011-03-11 | 1 | -0/+1 |
| | |||||
* | Add SPLIT pass to split 64 bit IR instructions for 32 bit CPUs. | Mike Pall | 2011-02-02 | 1 | -0/+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. | ||||
* | Bump copyright date to 2011. | Mike Pall | 2011-01-09 | 1 | -1/+1 |
| | |||||
* | Fix handling of floats in x86/x64 backend. | Mike Pall | 2011-01-05 | 1 | -0/+1 |
| | |||||
* | Add support for non-constant integer IR_MUL to backend. | Mike Pall | 2011-01-03 | 1 | -1/+3 |
| | |||||
* | Add support for IRT_FLOAT to XLOAD/XSTORE. | Mike Pall | 2010-12-30 | 1 | -0/+2 |
| | |||||
* | Refactoring of conversion ops, part 1: add IR_CONV. | Mike Pall | 2010-12-30 | 1 | -0/+5 |
| | |||||
* | Add IR_TOI64. | Mike Pall | 2010-12-06 | 1 | -0/+1 |
| | |||||
* | Add support for integer IR_MUL. | Mike Pall | 2010-12-06 | 1 | -0/+1 |
| | |||||
* | Add support for 64 bit integer arithmetic to x64 backend. | Mike Pall | 2010-12-06 | 1 | -1/+1 |
| | |||||
* | Cleanup architecture, ABI and OS definitions. | Mike Pall | 2010-11-16 | 1 | -3/+3 |
| | |||||
* | Generate indirect calls for out-of-range distances on x64. | Mike Pall | 2010-03-07 | 1 | -0/+6 |
| | |||||
* | Save/restore remaining callee-save regs on trace<->interp transitions. | Mike Pall | 2010-02-27 | 1 | -2/+2 |
| | |||||
* | Add x64 call argument setup. More 32/64 bit cleanups in assembler. | Mike Pall | 2010-02-25 | 1 | -5/+21 |
| | |||||
* | Major 32/64 bit cleanups in assembler and exit handling. | Mike Pall | 2010-02-24 | 1 | -10/+16 |
| | | | | | | | | | 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 exit state for 64 bit mode. | Mike Pall | 2010-02-24 | 1 | -1/+1 |
| | |||||
* | Bump all copyright dates to 2010. | Mike Pall | 2010-01-09 | 1 | -1/+1 |
| | |||||
* | Change callee-save regs for x64 interpreter to shorten code. | Mike Pall | 2009-12-28 | 1 | -0/+5 |
| | |||||
* | Fast forward to sync public repo. | Mike Pall | 2009-12-08 | 1 | -2/+9 |
| | | | | | | | | 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-beta1v2.0.0-beta1 | Mike Pall | 2009-12-08 | 1 | -0/+257 |