summaryrefslogtreecommitdiff
path: root/src/vm_x86.dasc (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'master' into v2.1Mike Pall2016-03-031-1/+1
|\
| * Bump copyright date to 2016.Mike Pall2016-03-031-1/+1
| |
* | Re-enable trace stitching.Mike Pall2015-08-291-7/+4
| | | | | | | | Thanks to Vyacheslav Egorov.
* | Merge branch 'master' into v2.1Mike Pall2015-06-091-0/+24
|\|
| * x64: Allow building without external unwinder.Mike Pall2015-06-091-0/+24
| | | | | | | | Required for PS4 SDK 2.5. Thanks to James Park.
* | Cleanup.Mike Pall2015-05-041-2/+0
| |
* | Merge branch 'master' into v2.1Mike Pall2015-05-041-3/+7
|\|
| * x86/x64: Fix argument check for bit shifts.Mike Pall2015-05-041-3/+7
| |
* | Merge branch 'master' into v2.1Mike Pall2015-01-061-1/+1
|\|
| * Bump copyright date to 2015.Mike Pall2015-01-051-1/+1
| |
* | Merge branch 'master' into v2.1Mike Pall2015-01-051-2/+1
|\|
| * x86: Minor interpreter optimization.Mike Pall2015-01-051-2/+1
| |
* | Merge branch 'master' into v2.1Mike Pall2014-12-201-1/+1
|\|
| * x86: Fix argument checks for ipairs() iterator.Mike Pall2014-12-201-1/+1
| |
* | x86/x64: Drop internal x87 math functions. Use libm functions.Mike Pall2014-12-081-363/+62
| |
* | x86/x64: Call external symbols directly from interpreter code.Mike Pall2014-12-081-5/+11
| | | | | | | | Except for ELF/x86 PIC, where it's easier to use wrappers.
* | Merge branch 'master' into v2.1Mike Pall2014-03-271-1/+1
|\|
| * x86/x64: Avoid use of SAHF instruction.Mike Pall2014-03-271-1/+1
| |
* | Merge branch 'master' into v2.1Mike Pall2014-01-191-2/+2
|\|
| * Fix OSX build issue.Mike Pall2014-01-191-2/+2
| |
* | Merge branch 'master' into v2.1Mike Pall2014-01-161-1/+1
|\|
| * Bump copyright date to 2014.Mike Pall2014-01-161-1/+1
| |
* | Fix KBASE for Lua functions below stitched fast functions.Mike Pall2014-01-161-4/+21
| |
* | Add trace stitching.Mike Pall2013-12-251-1/+62
| |
* | Merge branch 'master' into v2.1Mike Pall2013-12-021-1/+1
|\|
| * x64: Fix store to upvalue for lightuserdata values.Mike Pall2013-12-021-1/+1
| |
* | Add low-overhead profiler. Part 1: interpreter, low-level C API.Mike Pall2013-09-021-1/+14
| |
* | Save currently executing lua_State in g->cur_L.Mike Pall2013-08-301-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 Pall2013-08-261-2/+4
| |
* | Merge branch 'master' into v2.1Mike Pall2013-05-251-0/+4
|\|
| * Fix compatibility issues with Illumos.Mike Pall2013-05-251-0/+4
| | | | | | | | Thanks to Theo Schlossnagle.
* | Big renaming of string buffer/formatting/conversion functions.Mike Pall2013-05-131-2/+2
| |
* | Fix BC_ISTYPE for WIN64 calling conventions.Mike Pall2013-04-281-3/+3
| |
* | Refactor string.rep().Mike Pall2013-04-261-35/+0
| |
* | Replace string.len with bytecode builtin.Mike Pall2013-04-261-9/+0
| |
* | Fix MSVC build.Mike Pall2013-04-261-2/+2
| |
* | Refactor string.reverse(), string.lower(), string.upper().Mike Pall2013-04-261-59/+19
| |
* | Compile string concatenations (BC_CAT).Mike Pall2013-04-211-0/+1
| |
* | String buffer refactoring, part 2.Mike Pall2013-02-271-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 Pall2013-02-231-15/+0
| |
* | Add special bytecodes for builtins.Mike Pall2013-02-231-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 Pall2013-02-231-5/+5
| |
* | Replace math.deg/math.rad with builtin Lua function.Mike Pall2013-02-221-6/+0
| |
* | x86: Remove x87 support from interpreter.Mike Pall2013-02-211-605/+82
|/ | | | SSE2 required from now on.
* Bump copyright date to 2013.Mike Pall2013-02-111-1/+1
|
* Remove fictitious Solaris define.Mike Pall2013-01-111-1/+1
|
* Don't use stack unwinding for lua_yield().Mike Pall2012-10-091-0/+5
|
* From Lua 5.2: Add string.rep(s, n, sep).Mike Pall2012-10-071-1/+2
|
* From Lua 5.2: Add math.log(x, base).Mike Pall2012-10-071-1/+29
|
* Fix despecialization of ITERN when already running.Mike Pall2012-09-121-1/+2
|