| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Backport some v3.0 syntax extensions. | Mike Pall | 2026-06-22 | 1 | -1/+1 |
| | | | | | See discussion in: #1476 | ||||
| * | Merge branch 'master' into v2.1 | Mike Pall | 2026-03-04 | 1 | -3/+3 |
| |\ | |||||
| | * | Fix edge cases when recording string.byte/sub. | Mike Pall | 2026-03-04 | 1 | -3/+3 |
| | | | | | | | | | Thanks to Sergey Kaplun. #1443 | ||||
| * | | Merge branch 'master' into v2.1 | Mike Pall | 2026-01-09 | 1 | -1/+1 |
| |\| | |||||
| | * | Bump copyright date. | Mike Pall | 2026-01-09 | 1 | -1/+1 |
| | | | |||||
| * | | Unify Lua number to FFI integer conversions. | Mike Pall | 2025-11-27 | 1 | -2/+2 |
| | | | | | | | | | Phew. #1411 | ||||
| * | | Merge branch 'master' into v2.1 | Mike Pall | 2025-11-14 | 1 | -4/+4 |
| |\| | |||||
| | * | Fix edge cases when generating IR for string.byte/sub/find. | Mike Pall | 2025-11-14 | 1 | -3/+3 |
| | | | | | | | | | Contributed by XmiliaH. #1407 | ||||
| * | | Merge branch 'master' into v2.1 | Mike Pall | 2025-01-13 | 1 | -1/+1 |
| |\| | |||||
| | * | Bump copyright date. | Mike Pall | 2025-01-13 | 1 | -1/+1 |
| | | | |||||
| * | | Merge branch 'master' into v2.1 | Mike Pall | 2024-08-24 | 1 | -1/+1 |
| |\| | |||||
| | * | Always use IRT_NIL for IR_TBAR. | Mike Pall | 2024-08-24 | 1 | -1/+1 |
| | | | | | | | | | Thanks to Peter Cawley. #1258 | ||||
| * | | Limit number of string format elements to compile. | Mike Pall | 2024-05-25 | 1 | -0/+2 |
| | | | | | | | | | Reported by pwnhacker0x18. #1203 | ||||
| * | | Use generic trace error for OOM during trace stitching. | Mike Pall | 2024-04-18 | 1 | -0/+2 |
| | | | | | | | | | Thanks to Sergey Kaplun. #1166 | ||||
| * | | Handle all types of errors during trace stitching. | Mike Pall | 2024-03-10 | 1 | -5/+16 |
| | | | | | | | | | Thanks to Sergey Kaplun and Peter Cawley. #1166 #720 | ||||
| * | | Fix anchoring for string buffer set() method (again). | Mike Pall | 2023-12-10 | 1 | -7/+4 |
| | | | | | | | | | Thanks to Peter Cawley. #1125 | ||||
| * | | Fix anchoring for string buffer set() method. | Mike Pall | 2023-12-10 | 1 | -0/+9 |
| | | | | | | | | | Thanks to Peter Cawley. #1125 | ||||
| * | | Optimize table.new() with constant args to (sinkable) IR_TNEW. | Mike Pall | 2023-12-10 | 1 | -0/+9 |
| | | | | | | | | | Thanks to Peter Cawley. #1128 | ||||
| * | | Consistently use 64 bit constants for 64 bit IR instructions. | Mike Pall | 2023-09-21 | 1 | -12/+11 |
| | | | | | | | | | Thanks to Peter Cawley. #1084 | ||||
| * | | Merge branch 'master' into v2.1 | Mike Pall | 2023-08-20 | 1 | -1/+1 |
| |\| | |||||
| | * | Bump copyright date. | Mike Pall | 2023-08-20 | 1 | -1/+1 |
| | | | |||||
| * | | Fix compiler warnings. | Mike Pall | 2022-09-13 | 1 | -2/+2 |
| | | | | | | | | | Reported by gan74. | ||||
| * | | Revert to trival pow() optimizations to prevent inaccuracies. | Mike Pall | 2022-03-08 | 1 | -2/+2 |
| | | | |||||
| * | | Fix compiled error handling for buffer methods. | Mike Pall | 2022-01-23 | 1 | -6/+14 |
| | | | | | | | | | Contributed by XmiliaH. | ||||
| * | | Merge branch 'master' into v2.1 | Mike Pall | 2022-01-15 | 1 | -1/+1 |
| |\| | |||||
| | * | Bump copyright date. | Mike Pall | 2022-01-15 | 1 | -1/+1 |
| | | | |||||
| * | | Fix string buffer method recording. | Mike Pall | 2021-10-12 | 1 | -0/+1 |
| | | | | | | | | | Reported and analyzed by vfprintf. #755 | ||||
| * | | Fix compilation of multi-result call to next(). | Mike Pall | 2021-10-06 | 1 | -1/+1 |
| | | | | | | | | | Thanks to Vyacheslav Egorov. | ||||
| * | | Compile table traversals: next(), pairs(), BC_ISNEXT/BC_ITERN. | Mike Pall | 2021-09-19 | 1 | -0/+34 |
| | | | | | | | | | Sponsored by OpenResty Inc. | ||||
| * | | Refactor IR_TMPREF generation. | Mike Pall | 2021-09-19 | 1 | -17/+16 |
| | | | |||||
| * | | Refactor IR_VLOAD to take an offset. | Mike Pall | 2021-09-19 | 1 | -2/+2 |
| | | | |||||
| * | | Merge branch 'master' into v2.1 | Mike Pall | 2021-07-19 | 1 | -1/+1 |
| |\| | |||||
| | * | Avoid out-of-range number of results when compiling select(k, ...). | Mike Pall | 2021-07-19 | 1 | -1/+1 |
| | | | | | | | | | The interpreter will throw and abort the trace, anyway. | ||||
| * | | String buffers, part 3d: Compile string buffer methods and functions. | Mike Pall | 2021-07-19 | 1 | -10/+335 |
| | | | | | | | | | Sponsored by fmad.io. | ||||
| * | | Throw any errors before stack changes in trace stitching. | Mike Pall | 2021-06-14 | 1 | -0/+4 |
| | | | | | | | | | Thanks to doujiang24. | ||||
| * | | FFI: Support FFI numbers in string.format() and buf:putf(). | Mike Pall | 2021-06-03 | 1 | -1/+10 |
| | | | |||||
| * | | Handle on-trace OOM errors from helper functions. | Mike Pall | 2021-03-23 | 1 | -0/+2 |
| | | | |||||
| * | | Use weak guards for on-trace allocations. | Mike Pall | 2021-03-23 | 1 | -15/+15 |
| | | | |||||
| * | | Merge branch 'master' into v2.1 | Mike Pall | 2021-01-02 | 1 | -1/+1 |
| |\| | |||||
| | * | Bump copyright date. | Mike Pall | 2021-01-02 | 1 | -1/+1 |
| | | | |||||
| * | | Use a securely seeded global PRNG for the VM. | Mike Pall | 2020-06-15 | 1 | -1/+1 |
| | | | | | | | | | It's not 2005 anymore. | ||||
| * | | ARM: Implement FLOAD from GG_State. | Mike Pall | 2020-06-13 | 1 | -6/+0 |
| | | | |||||
| * | | Optimize table length computation with hinting. | Mike Pall | 2020-05-27 | 1 | -3/+3 |
| | | | | | | | | | 10x faster on loop with t[#t+1] = x idiom. Also used by table.insert. | ||||
| * | | Cleanup math function compilation and fix inconsistencies. | Mike Pall | 2020-05-22 | 1 | -17/+2 |
| | | | |||||
| * | | Don't compile math.modf() anymore. | Mike Pall | 2020-05-22 | 1 | -16/+0 |
| | | | | | | | | | It's rarely used and properly compiling it would be difficult. | ||||
| * | | Merge branch 'master' into v2.1 | Mike Pall | 2020-01-20 | 1 | -1/+1 |
| |\| | |||||
| | * | Bump copyright date. | Mike Pall | 2020-01-20 | 1 | -1/+1 |
| | | | |||||
| * | | Fix string.char() recording with no arguments. | Mike Pall | 2020-01-14 | 1 | -0/+2 |
| | | | |||||
| * | | Properly fix pointer diff in string.find(). | Mike Pall | 2019-12-21 | 1 | -2/+2 |
| | | | | | | | | | Thanks to Vyacheslav Egorov. | ||||
| * | | Don't use STRREF for pointer diff in string.find(). | Mike Pall | 2019-12-08 | 1 | -1/+2 |
| | | | | | | | | | Thanks to Sergey Ostanevich and Vyacheslav Egorov. | ||||
