Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Bump copyright date. | Mike Pall | 2025-01-13 | 1 | -1/+1 |
| | |||||
* | Handle stack reallocation in debug.setmetatable() and lua_setmetatable(). | Mike Pall | 2024-03-10 | 1 | -0/+1 |
| | | | | Thanks to Sergey Kaplun. #1172 | ||||
* | Bump copyright date. | Mike Pall | 2023-08-20 | 1 | -1/+1 |
| | |||||
* | Bump copyright date. | Mike Pall | 2022-01-15 | 1 | -1/+1 |
| | |||||
* | Bump copyright date. | Mike Pall | 2021-01-02 | 1 | -1/+1 |
| | |||||
* | Fix write barrier for lua_setupvalue() and debug.setupvalue(). | Mike Pall | 2020-03-20 | 1 | -3/+5 |
| | |||||
* | Bump copyright date. | Mike Pall | 2020-01-20 | 1 | -1/+1 |
| | |||||
* | Bump copyright date to 2017. | Mike Pall | 2017-01-17 | 1 | -1/+1 |
| | |||||
* | Bump copyright date to 2016. | Mike Pall | 2016-03-03 | 1 | -1/+1 |
| | |||||
* | Bump copyright date to 2015. | Mike Pall | 2015-01-05 | 1 | -1/+1 |
| | |||||
* | Bump copyright date to 2014. | Mike Pall | 2014-01-16 | 1 | -1/+1 |
| | |||||
* | Fix for last commit | Mike Pall | 2013-11-05 | 1 | -1/+1 |
| | |||||
* | Bump copyright date to 2013. | Mike Pall | 2013-02-11 | 1 | -1/+1 |
| | |||||
* | Don't use stack unwinding for lua_yield(). | Mike Pall | 2012-10-09 | 1 | -5/+8 |
| | |||||
* | Move load/dump functions to lj_load.c. Add load modes. | Mike Pall | 2012-09-21 | 1 | -44/+0 |
| | |||||
* | From Lua 5.2: Add debug.upvalueid() and debug.upvaluejoin(). | Mike Pall | 2012-09-20 | 1 | -0/+20 |
| | | | | Ditto for lua_upvalueid() and lua_upvaluejoin(). | ||||
* | Replace strtod() with builtin string to number conversion. | Mike Pall | 2012-08-25 | 1 | -7/+8 |
| | |||||
* | Make lua_concat() work from C hook with partial frame. | Mike Pall | 2012-04-12 | 1 | -1/+1 |
| | |||||
* | Bump copyright date to 2012. | Mike Pall | 2012-01-23 | 1 | -1/+1 |
| | |||||
* | Replace stack slot for implicit number->string conv. in Lua/C API. | Mike Pall | 2011-11-21 | 1 | -6/+12 |
| | |||||
* | Add support for bytecode loading/saving. | Mike Pall | 2011-06-13 | 1 | -5/+10 |
| | |||||
* | No need for L argument to lj_str_initbuf(). | Mike Pall | 2011-06-12 | 1 | -1/+1 |
| | |||||
* | Flatten and compress in-memory debug info (saves ~70%). | Mike Pall | 2011-06-09 | 1 | -2/+2 |
| | |||||
* | Move debugging/introspection functionality to lj_debug.c. | Mike Pall | 2011-06-07 | 1 | -23/+4 |
| | |||||
* | Add support for tailcalls from internal C functions. | Mike Pall | 2011-04-12 | 1 | -1/+1 |
| | | | | PPC: Fix __call metamethod for tailcalls. | ||||
* | x64: Use external unwinding for lua_yield(). | Mike Pall | 2011-03-18 | 1 | -0/+4 |
| | |||||
* | Get rid of the remaining silly cast macros from Lua. | Mike Pall | 2011-03-10 | 1 | -2/+2 |
| | |||||
* | FFI: Fix compiled ffi.string() semantics. | Mike Pall | 2011-02-28 | 1 | -1/+1 |
| | |||||
* | DUALNUM: Add integer type to core VM. | Mike Pall | 2011-02-17 | 1 | -42/+61 |
| | |||||
* | Bump copyright date to 2011. | Mike Pall | 2011-01-09 | 1 | -1/+1 |
| | |||||
* | FFI: Add cdata object type. | Mike Pall | 2010-11-26 | 1 | -2/+4 |
| | |||||
* | x64: Optimize internal/external tag conversion in lua_type(). | Mike Pall | 2010-10-11 | 1 | -0/+4 |
| | |||||
* | Turn some lua_State fields into 32 bit pointers. | Mike Pall | 2010-09-09 | 1 | -2/+2 |
| | | | | lua_State now fits into one cache line on x64. | ||||
* | Treat the tag of a TValue as unsigned everywhere. | Mike Pall | 2010-04-25 | 1 | -3/+4 |
| | |||||
* | Avoid starting a GC cycle immediately after library init. | Mike Pall | 2010-04-25 | 1 | -1/+1 |
| | |||||
* | Add assertions to guard against using lua_*call on dead coroutines. | Mike Pall | 2010-04-23 | 1 | -3/+6 |
| | |||||
* | No longer let the GC replace dead keys with the LJ_TDEADKEY tag. | Mike Pall | 2010-04-21 | 1 | -3/+4 |
| | | | | | | | | Important: this changes the semantics of the write barrier! Carefully read the big comment block in lj_obj.h This helps HREFK key slot specialization and allows safely hoisting HREF/HREFK across GC steps, too (fix for a barely reproducible bug). Dead keys are only removed during a table resize (as before). | ||||
* | Major redesign of function call handling. | Mike Pall | 2010-02-13 | 1 | -2/+3 |
| | | | | | | | | | | | Drop call gates. Use function headers, dispatched like bytecodes. Emit BC_FUNCF/BC_FUNCV bytecode at PC 0 for all Lua functions. C functions and ASM fast functions get extra bytecodes. Modify internal calling convention: new base in BASE (formerly in RA). Can now use better C function wrapper semantics (dynamic on/off). Prerequisite for call hooks with zero-overhead if disabled. Prerequisite for compiling recursive calls. Prerequisite for efficient 32/64 bit prototype guards. | ||||
* | Redesign of prototype generation, part 5: colocation of protoype arrays. | Mike Pall | 2010-02-08 | 1 | -2/+2 |
| | |||||
* | Redesign of prototype generation, part 1: varinfo and uvname. | Mike Pall | 2010-02-08 | 1 | -4/+2 |
| | | | | | Use a growable, per-chunk variable stack. Collect varinfo/uvname for prototype at the end. | ||||
* | 32/64 bit memory ref cleanup, part 2: GCproto ->uvname and ->chunkname. | Mike Pall | 2010-02-05 | 1 | -1/+1 |
| | |||||
* | Fix 32/64 bit portability issue with upval->v. | Mike Pall | 2010-01-09 | 1 | -1/+1 |
| | |||||
* | Bump all copyright dates to 2010. | Mike Pall | 2010-01-09 | 1 | -1/+1 |
| | |||||
* | Implement yield from C hooks. | Mike Pall | 2009-12-30 | 1 | -12/+25 |
| | | | | | | Get number of multiple results from C frame. Add lj_cont_hook: restores multres and dispatch to static ins. Can use fastcall for lj_dispatch_ins() now. | ||||
* | Adapt primary inbound calls in x64 interpreter. | Mike Pall | 2009-12-17 | 1 | -2/+2 |
| | | | | Change argument order for lj_vm_cpcall() to simplify x64 interpreter. | ||||
* | Fast forward to sync public repo. | Mike Pall | 2009-12-08 | 1 | -13/+13 |
| | | | | | | | | Compile math.sinh(), math.cosh(), math.tanh() and math.random(). Compile various io.*() functions. Drive the GC forward on string allocations in the parser. Improve KNUM fuse vs. load heuristics. Add abstract C call handling to IR. | ||||
* | LuaJIT-2.0.0-beta2 hotfix #2v2.0.0-beta2-hotfix2 | Mike Pall | 2009-12-08 | 1 | -2/+6 |
| | | | | | | Fix lua_tocfunction(). Fix cutoff register in JMP bytecode for some conditional expressions. Fix PHI marking algorithm for references from variant slots. | ||||
* | RELEASE LuaJIT-2.0.0-beta2v2.0.0-beta2 | Mike Pall | 2009-12-08 | 1 | -2/+134 |
| | |||||
* | RELEASE LuaJIT-2.0.0-beta1v2.0.0-beta1 | Mike Pall | 2009-12-08 | 1 | -0/+1046 |