Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | Fix KBASE for Lua functions below stitched fast functions. | Mike Pall | 2014-01-16 | 1 | -4/+21 | |
| | | ||||||
* | | Add trace stitching. | Mike Pall | 2013-12-25 | 1 | -1/+62 | |
| | | ||||||
* | | 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 | -1/+14 | |
| | | ||||||
* | | Save currently executing lua_State in g->cur_L. | Mike Pall | 2013-08-30 | 1 | -11/+17 | |
| | | | | | | | | | | | | 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 | -2/+4 | |
| | | ||||||
* | | Merge branch 'master' into v2.1 | Mike Pall | 2013-05-25 | 1 | -0/+4 | |
|\| | ||||||
| * | Fix compatibility issues with Illumos. | Mike Pall | 2013-05-25 | 1 | -0/+4 | |
| | | | | | | | | Thanks to Theo Schlossnagle. | |||||
* | | Big renaming of string buffer/formatting/conversion functions. | Mike Pall | 2013-05-13 | 1 | -2/+2 | |
| | | ||||||
* | | Fix BC_ISTYPE for WIN64 calling conventions. | Mike Pall | 2013-04-28 | 1 | -3/+3 | |
| | | ||||||
* | | Refactor string.rep(). | Mike Pall | 2013-04-26 | 1 | -35/+0 | |
| | | ||||||
* | | Replace string.len with bytecode builtin. | Mike Pall | 2013-04-26 | 1 | -9/+0 | |
| | | ||||||
* | | Fix MSVC build. | Mike Pall | 2013-04-26 | 1 | -2/+2 | |
| | | ||||||
* | | Refactor string.reverse(), string.lower(), string.upper(). | Mike Pall | 2013-04-26 | 1 | -59/+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 | -12/+15 | |
| | | | | | | | | | | 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 | -15/+0 | |
| | | ||||||
* | | Add special bytecodes for builtins. | Mike Pall | 2013-02-23 | 1 | -0/+131 | |
| | | | | | | | | | | BC_ISTYPE, BC_ISNUM: fast type checks/coercions. BC_TGETR, BC_TSETR: fast rawgeti/rawseti, no type checks for table/key. | |||||
* | | Remove obsolete non-truncating number to integer conversions. | Mike Pall | 2013-02-23 | 1 | -5/+5 | |
| | | ||||||
* | | Replace math.deg/math.rad with builtin Lua function. | Mike Pall | 2013-02-22 | 1 | -6/+0 | |
| | | ||||||
* | | x86: Remove x87 support from interpreter. | Mike Pall | 2013-02-21 | 1 | -605/+82 | |
|/ | | | | SSE2 required from now on. | |||||
* | Bump copyright date to 2013. | Mike Pall | 2013-02-11 | 1 | -1/+1 | |
| | ||||||
* | Remove fictitious Solaris define. | Mike Pall | 2013-01-11 | 1 | -1/+1 | |
| | ||||||
* | Don't use stack unwinding for lua_yield(). | Mike Pall | 2012-10-09 | 1 | -0/+5 | |
| | ||||||
* | From Lua 5.2: Add string.rep(s, n, sep). | Mike Pall | 2012-10-07 | 1 | -1/+2 | |
| | ||||||
* | From Lua 5.2: Add math.log(x, base). | Mike Pall | 2012-10-07 | 1 | -1/+29 | |
| | ||||||
* | 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 | -5/+5 | |
| | ||||||
* | Do not use DWARF unwinder on Windows. | Mike Pall | 2012-08-11 | 1 | -45/+0 | |
| | ||||||
* | x64: Fix DynASM defines. | Mike Pall | 2012-06-12 | 1 | -2/+3 | |
| | ||||||
* | x86/x64: More interpreter cleanups. | Mike Pall | 2012-06-11 | 1 | -6/+6 | |
| | ||||||
* | x86/x64: Clean up interpreter. | Mike Pall | 2012-06-10 | 1 | -1156/+1070 | |
| | | | | | Use DynASM defines instead of C defines. Remove support for ancient CPUs without CMOV (before Pentium Pro). | |||||
* | Pass various build, arch and OS flags to DynASM. | Mike Pall | 2012-06-10 | 1 | -0/+7 | |
| | ||||||
* | Reorganize build process. | Mike Pall | 2012-06-09 | 1 | -0/+6458 | |
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. |