aboutsummaryrefslogtreecommitdiff
path: root/src/lj_obj.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
| |
* | FFI: Drop finalizer table rehash after GC cycle.Mike Pall2024-08-191-1/+1
| | | | | | | | Reported by Sergey Kaplun. #1247
* | FFI: Turn FFI finalizer table into a proper GC root.Mike Pall2024-04-191-0/+3
| | | | | | | | Reported by Sergey Bronnikov. #1168
* | Merge branch 'master' into v2.1Mike Pall2023-08-201-1/+1
|\|
| * Bump copyright date.Mike Pall2023-08-201-1/+1
| |
* | ARM64: Add support for ARM64e pointer authentication codes (PAC).Mike Pall2023-08-121-0/+14
| | | | | | | | Contributed by Peter Cawley. #559
* | Merge branch 'master' into v2.1Mike Pall2022-12-221-1/+1
|\|
| * Avoid negation of signed integers in C that may hold INT*_MIN.Mike Pall2022-12-221-1/+1
| | | | | | | | | | | | Reported by minoki. Recent C compilers 'take advantage' of the undefined behavior. This completely changes the meaning of expressions like (k == -k).
* | Merge branch 'master' into v2.1Mike Pall2022-05-211-1/+1
|\|
| * Prevent C compiler undefined-behavior optimization.Mike Pall2022-05-211-1/+1
| |
* | Fix assertion for LJ_KEYINDEX.Mike Pall2022-04-031-0/+1
| | | | | | | | Thanks to XmiliaH.
* | Merge branch 'master' into v2.1Mike Pall2022-01-151-1/+1
|\|
| * Bump copyright date.Mike Pall2022-01-151-1/+1
| |
* | Refactor table traversal.Mike Pall2021-09-191-0/+3
| | | | | | | | Sponsored by OpenResty Inc.
* | String buffers, part 2e: add serialization string dictionary.Mike Pall2021-06-071-1/+1
| | | | | | | | Sponsored by fmad.io.
* | String buffers, part 2d: basic string buffer methods.Mike Pall2021-06-011-0/+1
| | | | | | | | Sponsored by fmad.io.
* | String buffers, part 2b: Add extended string buffers. Use in serializer.Mike Pall2021-06-011-0/+4
| | | | | | | | Sponsored by fmad.io.
* | String buffers, part 2a: internal SBuf reorg. Use full pointers.Mike Pall2021-06-011-4/+2
| | | | | | | | Sponsored by fmad.io.
* | Merge branch 'master' into v2.1Mike Pall2021-01-021-1/+1
|\|
| * Bump copyright date.Mike Pall2021-01-021-1/+1
| |
* | Add support for full-range 64 bit lightuserdata.Mike Pall2020-09-301-20/+37
| |
* | Redesign and harden string interning.Mike Pall2020-06-231-11/+26
| | | | | | | | | | Up to 40% faster on hash-intensive benchmarks. With some ideas from Sokolov Yura.
* | Use a securely seeded global PRNG for the VM.Mike Pall2020-06-151-0/+1
| | | | | | | | It's not 2005 anymore.
* | Improve assertions.Mike Pall2020-06-151-9/+22
| |
* | Merge branch 'master' into v2.1Mike Pall2020-01-201-1/+1
|\|
| * Bump copyright date.Mike Pall2020-01-201-1/+1
| |
* | Fix interaction between profiler hooks and finalizers.Mike Pall2019-12-081-1/+2
| | | | | | | | Thanks to Julien Desgats.
* | Merge branch 'master' into v2.1Mike Pall2018-05-201-5/+13
|\|
| * FFI: Make FP to U64 conversions match JIT backend behavior.Mike Pall2018-05-201-5/+13
| |
* | MIPS64: Add soft-float support to JIT compiler backend.Mike Pall2017-06-071-0/+3
| | | | | | | | | | Contributed by Djordje Kovacevic and Stefan Pejic from RT-RK.com. Sponsored by Cisco Systems, Inc.
* | Merge branch 'master' into v2.1Mike Pall2017-01-171-1/+1
|\|
| * Bump copyright date to 2017.Mike Pall2017-01-171-1/+1
| |
* | Constrain value range of lj_ir_kptr() to unsigned 32 bit pointers.Mike Pall2016-04-241-2/+6
| | | | | | | | Thanks to Peter Cawley.
* | Merge branch 'master' into v2.1Mike Pall2016-03-031-1/+1
|\|
| * Bump copyright date to 2016.Mike Pall2016-03-031-1/+1
| |
* | Merge branch 'master' into v2.1Mike Pall2015-01-061-1/+1
|\|
| * Bump copyright date to 2015.Mike Pall2015-01-051-1/+1
| |
* | Fix MSVC build.Mike Pall2015-01-051-3/+8
| |
* | Add LJ_GC64 mode: 64 bit GC object references.Mike Pall2015-01-031-7/+104
| | | | | | | | Actually NaN tagging with 47 bit pointers and 13+4 bit tags.
* | Add LJ_FR2 mode: Two-slot frame info.Mike Pall2015-01-031-2/+16
| |
* | Cleanup of TValue setters. No functional changes.Mike Pall2014-12-201-4/+8
| |
* | Cleanup of memory vs. GC sizes. No functional changes.Mike Pall2014-12-201-5/+6
| |
* | Merge branch 'master' into v2.1Mike Pall2014-01-161-1/+1
|\|
| * Bump copyright date to 2014.Mike Pall2014-01-161-1/+1
| |
* | Merge branch 'master' into v2.1Mike Pall2013-10-141-1/+1
|\|
| * FFI: Rehash finalizer table after GC cycle, if needed.Mike Pall2013-10-141-1/+1
| |
* | Add low-overhead profiler. Part 1: interpreter, low-level C API.Mike Pall2013-09-021-0/+1
| |
* | Save currently executing lua_State in g->cur_L.Mike Pall2013-08-301-1/+1
| | | | | | | | | | | | 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-2/+2
| |