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 |
| | | |||||
* | | 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 |
| | | |||||
* | | ARM: Add external frame unwinding. | Mike Pall | 2015-12-28 | 1 | -0/+11 |
| | | | | | | | | Thanks to Nick Zavaritsky. | ||||
* | | Re-enable trace stitching. | Mike Pall | 2015-08-29 | 1 | -8/+5 |
| | | | | | | | | Thanks to Vyacheslav Egorov. | ||||
* | | 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 | 2015-01-05 | 1 | -4/+3 |
|\| | |||||
| * | ARM: Minor interpreter optimization. | Mike Pall | 2015-01-05 | 1 | -3/+2 |
| | | |||||
* | | Merge branch 'master' into v2.1 | Mike Pall | 2014-12-27 | 1 | -4/+4 |
|\| | |||||
| * | ARM: Fix write barrier check in BC_USETS. | Mike Pall | 2014-12-27 | 1 | -2/+2 |
| | | |||||
| * | ARM: Fix excess stack growth in interpreter. | Mike Pall | 2014-12-27 | 1 | -2/+2 |
| | | |||||
* | | 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 |
| | | |||||
* | | Fix KBASE for Lua functions below stitched fast functions. | Mike Pall | 2014-01-16 | 1 | -2/+20 |
| | | |||||
* | | Add trace stitching. | Mike Pall | 2013-12-25 | 1 | -0/+50 |
| | | |||||
* | | Merge branch 'master' into v2.1 | Mike Pall | 2013-12-02 | 1 | -1/+1 |
|\| | |||||
| * | x64: Fix store to upvalue for lightuserdata values. | Mike Pall | 2013-12-02 | 1 | -1/+1 |
| | | |||||
* | | Add low-overhead profiler. Part 1: interpreter, low-level C API. | Mike Pall | 2013-09-02 | 1 | -0/+12 |
| | | |||||
* | | Save currently executing lua_State in g->cur_L. | Mike Pall | 2013-08-30 | 1 | -11/+15 |
| | | | | | | | | | | | | This is only a good approximation due to deficiencies in the design of the Lua/C API. It indicates _some_ valid state that is/was executing. Also reorder L->cframe stores to achieve a synchronously consistent state. | ||||
* | | Use g->jit_base for on/off-trace detection. | Mike Pall | 2013-08-26 | 1 | -3/+4 |
| | | |||||
* | | Big renaming of string buffer/formatting/conversion functions. | Mike Pall | 2013-05-13 | 1 | -1/+1 |
| | | |||||
* | | Refactor string.rep(). | Mike Pall | 2013-04-26 | 1 | -27/+0 |
| | | |||||
* | | Replace string.len with bytecode builtin. | Mike Pall | 2013-04-26 | 1 | -6/+0 |
| | | |||||
* | | Refactor string.reverse(), string.lower(), string.upper(). | Mike Pall | 2013-04-26 | 1 | -45/+19 |
| | | |||||
* | | Compile string concatenations (BC_CAT). | Mike Pall | 2013-04-21 | 1 | -0/+1 |
| | | |||||
* | | String buffer refactoring, part 2. | Mike Pall | 2013-02-27 | 1 | -9/+12 |
| | | | | | | | | | | Switch to pointers for start/pos/end of buffer. Abstract out some buffer writers. | ||||
* | | Replace table.getn/foreach/foreachi with bytecode builtins. | Mike Pall | 2013-02-23 | 1 | -11/+0 |
| | | |||||
* | | Add special bytecodes for builtins. | Mike Pall | 2013-02-23 | 1 | -0/+93 |
| | | | | | | | | | | BC_ISTYPE, BC_ISNUM: fast type checks/coercions. BC_TGETR, BC_TSETR: fast rawgeti/rawseti, no type checks for table/key. | ||||
* | | Replace math.deg/math.rad with builtin Lua function. | Mike Pall | 2013-02-22 | 1 | -13/+0 |
|/ | |||||
* | Bump copyright date to 2013. | Mike Pall | 2013-02-11 | 1 | -1/+1 |
| | |||||
* | ARM: Fix ordered comparisons for number <=> non-number. | Mike Pall | 2012-11-07 | 1 | -0/+2 |
| | |||||
* | ARM: Drop hard-fp variants of floor/ceil/trunc. | Mike Pall | 2012-10-15 | 1 | -77/+38 |
| | | | | Soft-fp variants are faster on a Cortex-A9. Duh. | ||||
* | Don't use stack unwinding for lua_yield(). | Mike Pall | 2012-10-09 | 1 | -3/+5 |
| | |||||
* | From Lua 5.2: Add string.rep(s, n, sep). | Mike Pall | 2012-10-07 | 1 | -1/+1 |
| | |||||
* | From Lua 5.2: Add math.log(x, base). | Mike Pall | 2012-10-07 | 1 | -1/+22 |
| | |||||
* | Fix despecialization of ITERN when already running. | Mike Pall | 2012-09-12 | 1 | -1/+2 |
| | |||||
* | Use 0/1 macro for Lua 5.2 compatibility. | Mike Pall | 2012-09-12 | 1 | -7/+7 |
| | |||||
* | ARM: Fix hard-float lj_vm_trunc() (used by compiled math.modf). | Mike Pall | 2012-08-19 | 1 | -2/+2 |
| | |||||
* | ARM: Add hard-float ABI support to the FFI (interpreter). | Mike Pall | 2012-07-30 | 1 | -7/+30 |
| | |||||
* | ARM: Add VFP and hard-float ABI variants to interpreter. | Mike Pall | 2012-07-30 | 1 | -24/+423 |
| | |||||
* | ARM/PPC: Remove assembler code for lj_vm_foldarith(). | Mike Pall | 2012-06-12 | 1 | -43/+0 |
| | |||||
* | ARM: Cleanup interpreter. | Mike Pall | 2012-06-11 | 1 | -135/+135 |
| | | | | Use DynASM defines instead of C defines. | ||||
* | Reorganize build process. | Mike Pall | 2012-06-09 | 1 | -0/+4121 |
Drop pre-translated buildvm_*.h. Rename buildvm_*.dasc to vm_*.dasc. Move buildvm* to host directory. Build minilua, unless HOST_LUA is set. Use HOST_LUA to run DynASM. Translate only vm_*.dasc for target architecture. |