aboutsummaryrefslogtreecommitdiff
path: root/src/vm_arm.dasc (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 Pall2024-08-201-1/+12
|\|
| * ARM: Make hard-float tobit conversions match JIT backend behavior.Mike Pall2024-08-201-1/+12
| | | | | | | | Reported by Peter Cawley. #1253
* | Merge branch 'master' into v2.1Mike Pall2023-11-121-0/+7
|\|
| * Add stack check to pcall/xpcall.Mike Pall2023-11-121-0/+7
| | | | | | | | Analyzed by Peter Cawley. #1048
* | FFI: Unify stack setup for C calls in interpreter.Mike Pall2023-08-291-4/+4
| |
* | Merge branch 'master' into v2.1Mike Pall2023-08-201-1/+1
|\|
| * Bump copyright date.Mike Pall2023-08-201-1/+1
| |
* | Ensure forward progress on trace exit to BC_ITERN.Mike Pall2023-08-131-2/+15
| | | | | | | | | | Also use a safer way to force a static dispatch for BC_RET*. Reported by Bartel Eerdekens. Analyzed by Peter Cawley. #1000 #1045
* | Revert to trival pow() optimizations to prevent inaccuracies.Mike Pall2022-03-081-8/+5
| |
* | Fix pow() optimization inconsistencies.Mike Pall2022-01-241-5/+8
| |
* | Merge branch 'master' into v2.1Mike Pall2022-01-151-1/+1
|\|
| * Bump copyright date.Mike Pall2022-01-151-1/+1
| |
* | Merge branch 'master' into v2.1Mike Pall2021-09-201-1/+1
|\|
| * FFI: Don't load PC from non-function object in FFI continuation.Mike Pall2021-09-201-1/+1
| | | | | | | | Reported by Yichun Zhang. #743
* | Compile table traversals: next(), pairs(), BC_ISNEXT/BC_ITERN.Mike Pall2021-09-191-2/+77
| | | | | | | | Sponsored by OpenResty Inc.
* | Refactor table traversal.Mike Pall2021-09-191-17/+11
| | | | | | | | Sponsored by OpenResty Inc.
* | String buffers, part 2a: internal SBuf reorg. Use full pointers.Mike Pall2021-06-011-1/+1
| | | | | | | | Sponsored by fmad.io.
* | Handle on-trace OOM errors from helper functions.Mike Pall2021-03-231-1/+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-2/+1
|\|
| * Call error function on rethrow after trace exit.Mike Pall2020-08-091-2/+1
| |
* | Redesign and harden string interning.Mike Pall2020-06-231-6/+6
| | | | | | | | | | Up to 40% faster on hash-intensive benchmarks. With some ideas from Sokolov Yura.
* | Fix math.min()/math.max() inconsistencies.Mike Pall2020-05-221-2/+2
| |
* | ARM, ARM64, PPC: Fix TSETR fallback.Mike Pall2020-05-181-0/+1
| | | | | | | | Thanks to Javier Guerra Giraldez.
* | 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
| |
* | Merge branch 'master' into v2.1Mike Pall2016-03-031-1/+1
|\|
| * Bump copyright date to 2016.Mike Pall2016-03-031-1/+1
| |
* | ARM: Add external frame unwinding.Mike Pall2015-12-281-0/+11
| | | | | | | | Thanks to Nick Zavaritsky.
* | Re-enable trace stitching.Mike Pall2015-08-291-8/+5
| | | | | | | | 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 Pall2015-01-051-4/+3
|\|
| * ARM: Minor interpreter optimization.Mike Pall2015-01-051-3/+2
| |
* | Merge branch 'master' into v2.1Mike Pall2014-12-271-4/+4
|\|
| * ARM: Fix write barrier check in BC_USETS.Mike Pall2014-12-271-2/+2
| |
| * ARM: Fix excess stack growth in interpreter.Mike Pall2014-12-271-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-2/+20
| |
* | Add trace stitching.Mike Pall2013-12-251-0/+50
| |
* | 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-0/+12
| |
* | Save currently executing lua_State in g->cur_L.Mike Pall2013-08-301-11/+15
| | | | | | | | | | | | 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.