summaryrefslogtreecommitdiff
path: root/src/vm_x86.dasc (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Bump copyright date.Mike Pall2023-08-201-1/+1
|
* x86/x64: Fix math.ceil(-0.9) result sign.Mike Pall2022-07-081-7/+6
| | | | Reported by minoki.
* Bump copyright date.Mike Pall2022-01-151-1/+1
|
* Bump copyright date.Mike Pall2021-01-021-1/+1
|
* x64: Fix __call metamethod return dispatch.Mike Pall2020-12-041-0/+4
| | | | Reported by Igor Munkin.
* Call error function on rethrow after trace exit.Mike Pall2020-08-091-3/+1
|
* Bump copyright date.Mike Pall2020-01-201-1/+1
|
* Bump copyright date to 2017.Mike Pall2017-01-171-1/+1
|
* Bump copyright date to 2016.Mike Pall2016-03-031-1/+1
|
* x64: Allow building without external unwinder.Mike Pall2015-06-091-0/+24
| | | | Required for PS4 SDK 2.5. Thanks to James Park.
* x86/x64: Fix argument check for bit shifts.Mike Pall2015-05-041-3/+7
|
* Bump copyright date to 2015.Mike Pall2015-01-051-1/+1
|
* x86: Minor interpreter optimization.Mike Pall2015-01-051-2/+1
|
* x86: Fix argument checks for ipairs() iterator.Mike Pall2014-12-201-1/+1
|
* x86/x64: Avoid use of SAHF instruction.Mike Pall2014-03-271-1/+1
|
* Fix OSX build issue.Mike Pall2014-01-191-2/+2
|
* Bump copyright date to 2014.Mike Pall2014-01-161-1/+1
|
* x64: Fix store to upvalue for lightuserdata values.Mike Pall2013-12-021-1/+1
|
* Fix compatibility issues with Illumos.Mike Pall2013-05-251-0/+4
| | | | Thanks to Theo Schlossnagle.
* 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
|
* Use 0/1 macro for Lua 5.2 compatibility.Mike Pall2012-09-121-5/+5
|
* Do not use DWARF unwinder on Windows.Mike Pall2012-08-111-45/+0
|
* x64: Fix DynASM defines.Mike Pall2012-06-121-2/+3
|
* x86/x64: More interpreter cleanups.Mike Pall2012-06-111-6/+6
|
* x86/x64: Clean up interpreter.Mike Pall2012-06-101-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 Pall2012-06-101-0/+7
|
* Reorganize build process.Mike Pall2012-06-091-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.