aboutsummaryrefslogtreecommitdiff
path: root/src/lj_gc.c (follow)
Commit message (Expand)AuthorAgeFilesLines
...
| * FFI: Rehash finalizer table after GC cycle, if needed.Mike Pall2013-10-141-0/+7
* | Save currently executing lua_State in g->cur_L.Mike Pall2013-08-301-1/+1
* | Use g->jit_base for on/off-trace detection.Mike Pall2013-08-261-4/+4
* | Move buffer shrinking to atomic GC phase.Mike Pall2013-04-211-9/+4
* | String buffer refactoring, part 1.Mike Pall2013-02-271-2/+2
|/
* Bump copyright date to 2013.Mike Pall2013-02-111-1/+1
* Move a GC macro.Mike Pall2012-10-021-4/+3
* Avoid potential store-forwarding stalls in GC marking.Mike Pall2012-06-091-9/+11
* Bump copyright date to 2012.Mike Pall2012-01-231-1/+1
* Add support for bytecode loading/saving.Mike Pall2011-06-131-1/+1
* Remove bogus assertion for GC estimate vs. threshold.Mike Pall2011-06-091-1/+0
* Flatten and compress in-memory debug info (saves ~70%).Mike Pall2011-06-091-4/+0
* FFI: Fix __gc for VLA/VLS cdata objects.Mike Pall2011-05-231-4/+4
* FFI: Fix cdata finalization.Mike Pall2011-04-131-4/+6
* Inline lj_gc_barrierback().Mike Pall2011-04-101-12/+0
* FFI: Fix marking of ffi.gc() finalizer table.Mike Pall2011-03-171-1/+1
* Get rid of the remaining silly cast macros from Lua.Mike Pall2011-03-101-7/+7
* FFI: Add ffi.gc() function for finalization of cdata objects.Mike Pall2011-02-281-28/+75
* Bump copyright date to 2011.Mike Pall2011-01-091-1/+1
* Turn lj_mem_newgco() into a fastcall.Mike Pall2010-12-101-1/+1
* FFI: Add C data handling and C type conversions.Mike Pall2010-12-051-1/+8
* FFI: Don't propagate cdata objects.Mike Pall2010-11-261-1/+1
* FFI: Add cdata object type.Mike Pall2010-11-261-0/+1
* Don't traverse inactive GCtrace objects.Mike Pall2010-09-151-2/+2
* Optimize BC_VARG: use RC for numparams.Mike Pall2010-09-101-1/+1
* Turn some lua_State fields into 32 bit pointers.Mike Pall2010-09-091-6/+6
* Switch to fast string hash.Mike Pall2010-07-211-0/+1
* Make metamethod names proper GC roots.Mike Pall2010-04-251-1/+1
* Simplify management of current trace. Drop lazy save.Mike Pall2010-04-251-12/+11
* Turn traces into true GC objects (GCtrace).Mike Pall2010-04-251-23/+45
* No longer let the GC replace dead keys with the LJ_TDEADKEY tag.Mike Pall2010-04-211-7/+1
* Simplify GC step calls from on-trace code.Mike Pall2010-04-191-1/+3
* Replace on-trace GC frame syncing with interpreter exit.Mike Pall2010-04-191-30/+27
* Reorder various structs to reduce padding (thanks to /usr/bin/pahole).Mike Pall2010-03-151-4/+4
* Fix error message generation for OOM error.Mike Pall2010-02-281-2/+2
* Conditionally compile functions that are unused with JIT disabled.Mike Pall2010-02-281-0/+2
* Switch to pre-initialized stacks. Drop frame clearing in interpreter.Mike Pall2010-02-111-21/+12
* Redesign of prototype generation, part 5: colocation of protoype arrays.Mike Pall2010-02-081-9/+3
* Redesign of prototype generation, part 4: late creation of prototype.Mike Pall2010-02-081-2/+1
* Redesign of prototype generation, part 1: varinfo and uvname.Mike Pall2010-02-081-4/+2
* 32/64 bit memory ref cleanup, part 4: GCproto ->varinfo.Mike Pall2010-02-051-2/+2
* 32/64 bit memory ref cleanup, part 3: GCproto ->lineinfo.Mike Pall2010-02-051-1/+1
* 32/64 bit memory ref cleanup, part 2: GCproto ->uvname and ->chunkname.Mike Pall2010-02-051-5/+5
* 32/64 bit memory ref cleanup, part 1: GCproto ->bc and ->k.Mike Pall2010-02-051-1/+1
* Add some sanity checks for allocator in 64 bit mode.Mike Pall2010-01-181-0/+2
* Avoid int16_t widening for pt->uv elements.Mike Pall2010-01-091-1/+1
* Fix 32/64 bit portability issue with upval->v.Mike Pall2010-01-091-6/+6
* Bump all copyright dates to 2010.Mike Pall2010-01-091-1/+1
* Fix alloc/free sizes of internal GCRef arrays.Mike Pall2009-12-291-1/+1
* Use fastcall for remaining 1-arg/2-arg calls from interpreter.Mike Pall2009-12-271-1/+1