| Commit message (Expand) | Author | Files | Lines |
2010-11-22 | Parse '\*' escape in strings (from Lua 5.2). | Mike Pall | 1 | -0/+5 |
2010-11-19 | Tighter check on table.sort function compliance (from Lua 5.2). | Mike Pall | 1 | -2/+2 |
2010-11-19 | Add support for "%g" character class in patterns (from Lua 5.2). | Mike Pall | 2 | -3/+5 |
2010-11-19 | string.format("%q", str) is now fully reversible (from Lua 5.2). | Mike Pall | 1 | -11/+9 |
2010-11-19 | Parse hexadecimal escapes in strings (from Lua 5.2). | Mike Pall | 2 | -13/+29 |
2010-11-19 | Disable Lua 5.2 features by default. See -DLUAJIT_ENABLE_LUA52COMPAT. | Mike Pall | 10 | -2834/+2906 |
2010-11-18 | Add support for __pairs and __ipairs metamethods (from Lua 5.2). | Mike Pall | 9 | -1666/+1729 |
2010-11-17 | Allow running C functions with coroutine.create(), too. | Mike Pall | 3 | -4/+3 |
2010-11-16 | Add jit.os string. | Mike Pall | 2 | -1/+10 |
2010-11-16 | Cleanup architecture, ABI and OS definitions. | Mike Pall | 19 | -72/+113 |
2010-11-16 | Avoid using negative hex numbers with DynASM. | Mike Pall | 1 | -2/+2 |
2010-11-09 | Split up extension/API docs into sub-pages. | Mike Pall | 11 | -351/+703 |
2010-11-09 | Rename character type handling from lj_ctype* to lj_char*. | Mike Pall | 10 | -100/+99 |
2010-11-05 | Fix conflict between loop branch inversion and HREF+NE/EQ merging. | Mike Pall | 1 | -5/+7 |
2010-11-02 | Number parser shouldn't accept '0x' without hex digits. | Mike Pall | 1 | -4/+6 |
2010-11-01 | Fix parsing of hex floats. | Mike Pall | 1 | -18/+20 |
2010-11-01 | Fix anchors in API docs. | Mike Pall | 1 | -2/+2 |
2010-10-25 | Fix collectgarbage("count") result if more than 2GB is in use. | Mike Pall | 1 | -1/+1 |
2010-10-23 | Reduce 32GB RLIMIT_DATA on FreeBSD/x64 to allocate low-2GB memory. | Mike Pall | 1 | -9/+20 |
2010-10-23 | Avoid compiler warning. | Mike Pall | 1 | -1/+1 |
2010-10-18 | PPC: Preserve RD during array resizing in BC_TSETM. | Mike Pall | 2 | -52/+56 |
2010-10-11 | Fix recording of y = select(n, ...) for non-int indexes. | Mike Pall | 1 | -0/+2 |
2010-10-11 | Decouple SLOAD type and optional conversion. | Mike Pall | 5 | -26/+36 |
2010-10-11 | x64: Fix type check for numbers in compiled code. | Mike Pall | 1 | -5/+21 |
2010-10-11 | x64: Optimize internal/external tag conversion in lua_type(). | Mike Pall | 1 | -0/+4 |
2010-10-11 | Reorganize compatibility table in install docs. | Mike Pall | 1 | -37/+43 |
2010-10-11 | Fix external link in docs. | Mike Pall | 1 | -1/+1 |
2010-10-07 | PPC: Update DynASM-generated file. | Mike Pall | 1 | -380/+5244 |
2010-10-07 | PPC: Use ZERO register instead of extra load immediate. | Mike Pall | 1 | -2/+1 |
2010-10-07 | PPC: Add coroutine.resume/wrap_aux/yield() fast functions. | Mike Pall | 1 | -2/+122 |
2010-10-06 | PPC: Add string.sub() fast function. | Mike Pall | 1 | -1/+45 |
2010-10-06 | PPC: Add string.rep/reverse/lower/upper() fast functions. | Mike Pall | 1 | -12/+84 |
2010-10-06 | PPC: Add string.len/byte/char() fast functions. | Mike Pall | 1 | -5/+42 |
2010-10-05 | PPC: Fix math.deg/rad() fast functions. | Mike Pall | 1 | -1/+1 |
2010-10-05 | PPC: Use own implementation for math.floor/ceil() fast functions. | Mike Pall | 1 | -2/+17 |
2010-10-05 | PPC: Add math.ldexp/frexp/modf() fast functions. | Mike Pall | 1 | -3/+47 |
2010-10-05 | PPC: Add math.abs/deg/rad/min/max() fast functions. | Mike Pall | 1 | -5/+38 |
2010-10-05 | PPC: Remove pointless optimization in BC_UNM. | Mike Pall | 1 | -4/+1 |
2010-10-05 | PPC: Add table.getn() fast function. | Mike Pall | 1 | -1/+6 |
2010-10-05 | PPC: Add tonumber() and tostring() fast functions. | Mike Pall | 1 | -4/+48 |
2010-10-05 | PPC: Add getmetatable(), setmetatable() and rawget() fast functions. | Mike Pall | 1 | -4/+72 |
2010-10-05 | PPC: Add assert() and type() fast functions. | Mike Pall | 1 | -2/+31 |
2010-10-05 | Update docs for PPC port. Clarify and extend install instructions. | Mike Pall | 8 | -70/+185 |
2010-10-01 | PPC: Add pcall() and xpcall() fast functions. | Mike Pall | 1 | -3/+23 |
2010-10-01 | PPC: Add ipairs() fast function and its iterator. | Mike Pall | 1 | -6/+50 |
2010-10-01 | PPC: Add next() and pairs() fast functions. | Mike Pall | 1 | -6/+35 |
2010-10-01 | PPC: Add BC_ITERN and BC_ISNEXT. | Mike Pall | 1 | -2/+91 |
2010-09-30 | Specialize bytecode for pairs()/next() iterator. Speedup: 3.5x. | Mike Pall | 9 | -354/+634 |
2010-09-30 | x64: Use 64 bit slot copies in the interpreter. | Mike Pall | 4 | -2351/+2492 |
2010-09-30 | PPC: Add dispatch to fast function fallback handlers. | Mike Pall | 1 | -1/+44 |