summaryrefslogtreecommitdiff
path: root/src/vm_arm.dasc (follow)
Commit message (Collapse)AuthorAgeFilesLines
* 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
|
* Bump copyright date to 2013.Mike Pall2013-02-111-1/+1
|
* ARM: Fix ordered comparisons for number <=> non-number.Mike Pall2012-11-071-0/+2
|
* ARM: Drop hard-fp variants of floor/ceil/trunc.Mike Pall2012-10-151-77/+38
| | | | Soft-fp variants are faster on a Cortex-A9. Duh.
* Don't use stack unwinding for lua_yield().Mike Pall2012-10-091-3/+5
|
* From Lua 5.2: Add string.rep(s, n, sep).Mike Pall2012-10-071-1/+1
|
* From Lua 5.2: Add math.log(x, base).Mike Pall2012-10-071-1/+22
|
* 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-7/+7
|
* ARM: Fix hard-float lj_vm_trunc() (used by compiled math.modf).Mike Pall2012-08-191-2/+2
|
* ARM: Add hard-float ABI support to the FFI (interpreter).Mike Pall2012-07-301-7/+30
|
* ARM: Add VFP and hard-float ABI variants to interpreter.Mike Pall2012-07-301-24/+423
|
* ARM/PPC: Remove assembler code for lj_vm_foldarith().Mike Pall2012-06-121-43/+0
|
* ARM: Cleanup interpreter.Mike Pall2012-06-111-135/+135
| | | | Use DynASM defines instead of C defines.
* Reorganize build process.Mike Pall2012-06-091-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.