aboutsummaryrefslogtreecommitdiff
path: root/src/lj_dispatch.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'master' into v2.1Mike Pall2025-01-131-1/+1
|\
| * Bump copyright date.Mike Pall2025-01-131-1/+1
| |
* | Merge branch 'master' into v2.1Mike Pall2023-08-201-1/+1
|\|
| * Bump copyright date.Mike Pall2023-08-201-1/+1
| |
* | Add Nintendo Switch port.Mike Pall2022-06-081-2/+2
| | | | | | | | Contributed by Swyter and vdweller84.
* | Revert to trival pow() optimizations to prevent inaccuracies.Mike Pall2022-03-081-1/+1
| |
* | Fix pow() optimization inconsistencies.Mike Pall2022-01-241-1/+1
| |
* | Merge branch 'master' into v2.1Mike Pall2022-01-151-1/+1
|\|
| * Bump copyright date.Mike Pall2022-01-151-1/+1
| |
* | Handle on-trace OOM errors from helper functions.Mike Pall2021-03-231-2/+2
| |
* | Merge branch 'master' into v2.1Mike Pall2021-01-021-1/+1
|\|
| * Bump copyright date.Mike Pall2021-01-021-1/+1
| |
* | Merge branch 'master' into v2.1Mike Pall2020-08-091-1/+1
|\|
| * Call error function on rethrow after trace exit.Mike Pall2020-08-091-1/+1
| |
* | Merge branch 'master' into v2.1Mike Pall2020-08-051-0/+8
|\|
| * ARM: Ensure relative GG_State element alignment differently.Mike Pall2020-08-051-0/+8
| | | | | | | | Thanks to jojo59516 and dwing4g.
* | Merge branch 'master' into v2.1Mike Pall2020-01-201-1/+1
|\|
| * Bump copyright date.Mike Pall2020-01-201-1/+1
| |
* | Merge branch 'master' into v2.1Mike Pall2017-01-171-1/+1
|\|
| * Bump copyright date to 2017.Mike Pall2017-01-171-1/+1
| |
* | ARM64: Add JIT compiler backend.Mike Pall2016-11-201-0/+1
| | | | | | | | | | Contributed by Djordje Kovacevic and Stefan Pejic from RT-RK.com. Sponsored by Cisco Systems, Inc.
* | Merge branch 'master' into v2.1Mike Pall2016-03-031-1/+1
|\|
| * Bump copyright date to 2016.Mike Pall2016-03-031-1/+1
| |
* | MIPS: Switch to dual-number mode. Fix soft-float interpreter.Mike Pall2016-01-291-9/+10
| |
* | MIPS soft-float, part 1: Add soft-float support to interpreter.Mike Pall2015-12-171-1/+17
| | | | | | | | | | Contributed by Djordje Kovacevic and Stefan Pejic from RT-RK.com. Sponsored by Cisco Systems, Inc.
* | 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-01-161-1/+1
|\|
| * Bump copyright date to 2014.Mike Pall2014-01-161-1/+1
| |
* | Add trace stitching.Mike Pall2013-12-251-1/+5
| |
* | Add low-overhead profiler. Part 1: interpreter, low-level C API.Mike Pall2013-09-021-2/+4
| |
* | Big renaming of string buffer/formatting/conversion functions.Mike Pall2013-05-131-1/+1
| |
* | Refactor string.rep().Mike Pall2013-04-261-1/+1
| |
* | Replace string.len with bytecode builtin.Mike Pall2013-04-261-1/+1
| |
* | Refactor string.reverse(), string.lower(), string.upper().Mike Pall2013-04-261-1/+2
| |
* | Replace table.getn/foreach/foreachi with bytecode builtins.Mike Pall2013-02-231-1/+1
| |
* | Add special bytecodes for builtins.Mike Pall2013-02-231-5/+5
| | | | | | | | | | BC_ISTYPE, BC_ISNUM: fast type checks/coercions. BC_TGETR, BC_TSETR: fast rawgeti/rawseti, no type checks for table/key.
* | Replace math.deg/math.rad with builtin Lua function.Mike Pall2013-02-221-1/+1
|/
* Bump copyright date to 2013.Mike Pall2013-02-111-1/+1
|
* Bump copyright date to 2012.Mike Pall2012-01-231-1/+1
|
* MIPS: Add interpreter. Enable MIPS build rules.Mike Pall2012-01-231-0/+38
|
* Prefer recording loops over calls.Mike Pall2011-06-291-0/+4
| | | | Hotcounts are decremented by 2 for loops and by 1 for calls.
* FFI: Save errno/GetLastError() around allocations, hooks etc.Mike Pall2011-05-081-0/+17
|
* Bump copyright date to 2011.Mike Pall2011-01-091-1/+1
|
* Conditionally compile functions that are unused with JIT disabled.Mike Pall2010-02-281-0/+2
|
* Randomize penalties for aborts and add blacklisting.Mike Pall2010-02-231-2/+0
|
* Implement return hooks for Lua functions (zero-cost if disabled).Mike Pall2010-02-141-1/+2
|
* Implement call hooks (zero-cost if disabled).Mike Pall2010-02-141-2/+3
|
* Major redesign of function call handling.Mike Pall2010-02-131-7/+15
| | | | | | | | | | | Drop call gates. Use function headers, dispatched like bytecodes. Emit BC_FUNCF/BC_FUNCV bytecode at PC 0 for all Lua functions. C functions and ASM fast functions get extra bytecodes. Modify internal calling convention: new base in BASE (formerly in RA). Can now use better C function wrapper semantics (dynamic on/off). Prerequisite for call hooks with zero-overhead if disabled. Prerequisite for compiling recursive calls. Prerequisite for efficient 32/64 bit prototype guards.
* Move dispatch tables out of GG_State struct.Mike Pall2010-02-111-13/+10
|