summaryrefslogtreecommitdiff
path: root/src/lj_record.c (follow)
Commit message (Expand)AuthorAgeFilesLines
...
* Optimize lookups in empty proxy tables.Mike Pall2011-04-101-1/+7
* Fix recording of JLOOP with higher maxslot.Mike Pall2011-04-101-1/+1
* DUALNUM: Fix narrowing of unary minus.Mike Pall2011-03-191-7/+8
* DUALNUM: Narrow unary minus.Mike Pall2011-03-151-2/+1
* DUALNUM: Handle integer type in JIT compiler.Mike Pall2011-03-101-124/+156
* DUALNUM: Make overflow guards weak. Add IR_USE and IR_MULOV.Mike Pall2011-03-071-2/+3
* Suppress recording of retried fast functions.Mike Pall2011-03-071-0/+4
* Eliminate dead slots in snapshots using bytecode data-flow analysis.Mike Pall2011-02-221-5/+3
* Add workaround for lj_meta_tset() newkey inconsistency.Mike Pall2011-02-151-1/+2
* FFI: Record ffi.abi().Mike Pall2011-02-081-2/+5
* FFI: Optimize snapshots for cdata comparisons.Mike Pall2011-02-051-5/+9
* Fix metamethod comparisons triggered by BC_ISEQP/BC_ISNEP.Mike Pall2011-02-051-1/+1
* Treat metatables of special userdata objects as immutable.Mike Pall2011-02-051-12/+26
* Add compile-time option LUAJIT_ENABLE_CHECKHOOK. Disabled by default.Mike Pall2011-01-191-0/+21
* Differentiate between IR_KPTR and IR_KKPTR.Mike Pall2011-01-191-3/+3
* Cleanup and fix trace flush logic.Mike Pall2011-01-181-0/+1
* FFI: Record 64 bit integer comparisons and pointer comparisons.Mike Pall2011-01-171-0/+1
* Add trace recorder infrastructure for instruction post-processing.Mike Pall2011-01-171-0/+20
* Fix assertion.Mike Pall2011-01-161-1/+4
* FFI: Add 64 bit integer comparisons and pointer comparisons.Mike Pall2011-01-131-0/+29
* Bump copyright date to 2011.Mike Pall2011-01-091-1/+1
* FFI: Add support for cdata constants to IR.Mike Pall2011-01-021-0/+5
* Refactoring of conversion ops, part 4: use CONV instead of TOINT/TONUM.Mike Pall2010-12-311-11/+11
* FFI: Treat cdata metatable+methods as immutable in trace recorder.Mike Pall2010-12-081-0/+13
* Add IR_KINT64.Mike Pall2010-12-051-1/+2
* Rename IRT_PTR to IRT_P32.Mike Pall2010-12-051-20/+20
* Split off fast function recording to lj_ffrecord.c.Mike Pall2010-12-051-826/+38
* Improve unrolling heuristics for non-looping inner loops.Mike Pall2010-11-251-1/+2
* Disable Lua 5.2 features by default. See -DLUAJIT_ENABLE_LUA52COMPAT.Mike Pall2010-11-191-1/+4
* Add support for __pairs and __ipairs metamethods (from Lua 5.2).Mike Pall2010-11-181-27/+36
* Fix recording of y = select(n, ...) for non-int indexes.Mike Pall2010-10-111-0/+2
* Decouple SLOAD type and optional conversion.Mike Pall2010-10-111-9/+11
* Specialize bytecode for pairs()/next() iterator. Speedup: 3.5x.Mike Pall2010-09-301-0/+2
* Add IR_VLOAD for vararg loads.Mike Pall2010-09-141-2/+2
* Avoid unnecessary vararg loads.Mike Pall2010-09-141-1/+2
* Record y = select(x, ...) idiom.Mike Pall2010-09-131-0/+59
* Record select().Mike Pall2010-09-131-0/+42
* Record vararg expressions with varargs defined off-trace.Mike Pall2010-09-131-23/+57
* Fix tailcalls from vararg functions.Mike Pall2010-09-131-1/+8
* Fix off-by-one errors in maxslot calculation of trace recorder.Mike Pall2010-09-121-2/+2
* Record vararg expressions with known fixed number of results.Mike Pall2010-09-121-1/+27
* Record calls to vararg functions.Mike Pall2010-09-121-2/+36
* Turn some lua_State fields into 32 bit pointers.Mike Pall2010-09-091-1/+2
* PPC: Clean up masked shift/rotate target settings.Mike Pall2010-08-291-3/+2
* Abstract out pointer hash to hashrot(). Tune hash constants.Mike Pall2010-07-211-10/+1
* Add weak guards. Emit TNEW/TDUP with a guard bit.Mike Pall2010-05-081-2/+2
* Treat the tag of a TValue as unsigned everywhere.Mike Pall2010-04-251-1/+1
* Make metamethod names proper GC roots.Mike Pall2010-04-251-7/+5
* Simplify management of current trace. Drop lazy save.Mike Pall2010-04-251-6/+6
* Turn traces into true GC objects (GCtrace).Mike Pall2010-04-251-7/+6