summaryrefslogtreecommitdiff
path: root/src/vm_mips.dasc (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'master' into v2.1Mike Pall2017-01-171-1/+1
|\
| * Bump copyright date to 2017.Mike Pall2017-01-171-1/+1
| |
* | MIPS: Fix TSETR barrier.Mike Pall2016-11-161-1/+1
| | | | | | | | Thanks to tongwell.
* | MIPS64, part 1: Add MIPS64 support to interpreter.Mike Pall2016-05-281-1/+1
| | | | | | | | | | Contributed by Djordje Kovacevic and Stefan Pejic from RT-RK.com. Sponsored by Cisco Systems, Inc.
* | Merge branch 'master' into v2.1Mike Pall2016-04-141-17/+17
|\|
| * MIPS: Fix BC_ISNEXT fallback path.Mike Pall2016-04-141-17/+17
| | | | | | | | Thanks to RT-RK.com.
* | Merge branch 'master' into v2.1Mike Pall2016-03-301-3/+6
|\|
| * MIPS: Fix use of ffgccheck delay slots in interpreter.Mike Pall2016-03-301-0/+5
| |
* | Merge branch 'master' into v2.1Mike Pall2016-03-031-1/+1
|\|
| * Bump copyright date to 2016.Mike Pall2016-03-031-1/+1
| |
* | MIPS: Add soft-float support to JIT compiler backend.Mike Pall2016-02-101-2/+28
| |
* | MIPS: Switch to dual-number mode. Fix soft-float interpreter.Mike Pall2016-01-291-1388/+1354
| |
* | MIPS soft-float, part 1: Add soft-float support to interpreter.Mike Pall2015-12-171-219/+1137
| | | | | | | | | | Contributed by Djordje Kovacevic and Stefan Pejic from RT-RK.com. Sponsored by Cisco Systems, Inc.
* | Re-enable trace stitching.Mike Pall2015-08-291-7/+3
| | | | | | | | Thanks to Vyacheslav Egorov.
* | 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 Pall2014-12-271-1/+1
|\|
| * MIPS: Fix excess stack growth in interpreter.Mike Pall2014-12-271-1/+1
| |
* | 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-2/+20
| |
* | Add trace stitching.Mike Pall2013-12-251-2/+56
| |
* | Merge branch 'master' into v2.1Mike Pall2013-12-251-1/+1
|\|
| * MIPS: Cosmetic fix for interpreter.Mike Pall2013-12-251-1/+1
| |
* | Merge branch 'master' into v2.1Mike Pall2013-12-021-2/+2
|\|
| * x64: Fix store to upvalue for lightuserdata values.Mike Pall2013-12-021-2/+2
| |
* | Add low-overhead profiler. Part 1: interpreter, low-level C API.Mike Pall2013-09-021-0/+14
| |
* | Save currently executing lua_State in g->cur_L.Mike Pall2013-08-301-15/+19
| | | | | | | | | | | | 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-4/+6
| |
* | Big renaming of string buffer/formatting/conversion functions.Mike Pall2013-05-131-2/+2
| |
* | Refactor string.rep().Mike Pall2013-04-261-35/+0
| |
* | Replace string.len with bytecode builtin.Mike Pall2013-04-261-7/+0
| |
* | Refactor string.reverse(), string.lower(), string.upper().Mike Pall2013-04-261-50/+21
| |
* | Compile string concatenations (BC_CAT).Mike Pall2013-04-211-0/+1
| |
* | String buffer refactoring, part 2.Mike Pall2013-02-271-12/+14
| | | | | | | | | | 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-12/+0
| |
* | Add special bytecodes for builtins.Mike Pall2013-02-231-0/+108
| | | | | | | | | | 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-6/+6
| |
* | Replace math.deg/math.rad with builtin Lua function.Mike Pall2013-02-221-6/+0
|/
* Bump copyright date to 2013.Mike Pall2013-02-111-1/+1
|
* Don't use stack unwinding for lua_yield().Mike Pall2012-10-091-1/+3
|
* 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/+13
|
* Fix despecialization of ITERN when already running.Mike Pall2012-09-121-0/+3
|
* Use 0/1 macro for Lua 5.2 compatibility.Mike Pall2012-09-121-6/+6
|
* MIPS: Fix calls to floor/ceil/trunc.Mike Pall2012-08-191-1/+1
|
* MIPS: Cleanup interpreter.Mike Pall2012-06-111-75/+75
| | | | Use DynASM defines instead of C defines.
* Reorganize build process.Mike Pall2012-06-091-0/+4224
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.