| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | FFI: Clarify callback docs. | Mike Pall | 2012-11-07 | 1 | -6/+7 |
* | Improve iOS install docs. | Mike Pall | 2012-11-07 | 1 | -2/+2 |
* | FFI: Mention __thiscall attribute in docs. | Mike Pall | 2012-11-07 | 1 | -3/+3 |
* | ARM: Fix ordered comparisons for number <=> non-number. | Mike Pall | 2012-11-07 | 1 | -0/+2 |
* | FFI: Fix stack-adjustment for __thiscall callbacks. | Mike Pall | 2012-11-07 | 1 | -5/+2 |
* | RELEASE LuaJIT-2.0.0-rc2v2.0.0-rc2 | Mike Pall | 2012-11-06 | 1 | -1/+6 |
* | FFI: Fix recording of bool call result check on x86/x64. | Mike Pall | 2012-11-06 | 3 | -2/+9 |
* | FFI: Fix signedness of bool. | Mike Pall | 2012-11-06 | 1 | -1/+1 |
* | Don't propagate implicitly widened number to index metamethods. | Mike Pall | 2012-11-06 | 1 | -1/+1 |
* | Fix CONV.num.int sinking. | Mike Pall | 2012-11-06 | 1 | -3/+12 |
* | Don't create unneeded array part for template tables. | Mike Pall | 2012-11-06 | 1 | -1/+1 |
* | RELEASE LuaJIT-2.0.0-rc1v2.0.0-rc1 | Mike Pall | 2012-10-31 | 5 | -9/+8 |
* | Update docs for release candidate. | Mike Pall | 2012-10-31 | 5 | -41/+9 |
* | Update changelog. | Mike Pall | 2012-10-31 | 1 | -4/+16 |
* | Install bin/luajit symlink for non-beta releases. | Mike Pall | 2012-10-31 | 1 | -9/+3 |
* | FFI: Fix code generation for replay of sunk float fields. | Mike Pall | 2012-10-29 | 1 | -1/+1 |
* | Document tonumber() enhancements. | Mike Pall | 2012-10-28 | 1 | -1/+12 |
* | Fix builtin string to number conversion for INT_MIN. | Mike Pall | 2012-10-24 | 1 | -11/+10 |
* | Remove strict.lua. | Mike Pall | 2012-10-24 | 1 | -41/+0 |
* | Release planning update. | Mike Pall | 2012-10-24 | 1 | -3/+4 |
* | Replace error with PANIC for callbacks from JIT-compiled code. | Mike Pall | 2012-10-21 | 2 | -3/+23 |
* | Fix detection of immutable upvalues. | Mike Pall | 2012-10-21 | 2 | -60/+67 |
* | Fix recording of equality comparisons with __eq metamethods. | Mike Pall | 2012-10-19 | 1 | -5/+3 |
* | Extended Android build instructions. | Mike Pall | 2012-10-17 | 1 | -4/+33 |
* | Fix Android/x86 build. | Mike Pall | 2012-10-17 | 1 | -1/+1 |
* | RELEASE LuaJIT-2.0.0-beta11v2.0.0-beta11 | Mike Pall | 2012-10-16 | 10 | -30/+21 |
* | Update changelog. | Mike Pall | 2012-10-16 | 1 | -0/+100 |
* | MIPS: Compile math.sqrt() to sqrt.d instruction. | Mike Pall | 2012-10-15 | 2 | -0/+3 |
* | PPC: Compile math.sqrt() to fsqrt instruction. | Mike Pall | 2012-10-15 | 2 | -1/+5 |
* | ARM: Drop hard-fp variants of floor/ceil/trunc. | Mike Pall | 2012-10-15 | 3 | -88/+57 |
* | DynASM/ARM: Fix conditional VFP instruction encoding. | Mike Pall | 2012-10-15 | 1 | -1/+4 |
* | ARM, MIPS: Fix workaround for argument GPRs vs. FPR remat. | Mike Pall | 2012-10-15 | 2 | -2/+2 |
* | Workaround for broken Android sprintf("%g", -0.0). | Mike Pall | 2012-10-15 | 1 | -0/+3 |
* | Update Android install docs. | Mike Pall | 2012-10-15 | 1 | -4/+7 |
* | Add note to recalcitrant distro maintainers. | Mike Pall | 2012-10-14 | 1 | -0/+4 |
* | Documentation cleanup and reorganization. | Mike Pall | 2012-10-14 | 14 | -207/+245 |
* | Documentation layout changes. | Mike Pall | 2012-10-14 | 5 | -18/+17 |
* | From Lua 5.2: Add package.loadlib(libname, "*"). | Mike Pall | 2012-10-12 | 1 | -12/+16 |
* | From Lua 5.2: Add format options to io.lines(). | Mike Pall | 2012-10-12 | 2 | -26/+37 |
* | Fix assertion. | Mike Pall | 2012-10-11 | 1 | -1/+1 |
* | FFI: Update docs on FFI semantics. | Mike Pall | 2012-10-10 | 1 | -10/+51 |
* | FFI: Compile ffi.gc(). | Mike Pall | 2012-10-10 | 3 | -17/+29 |
* | FFI: Compile ffi.sizeof(), ffi.alignof() and ffi.offsetof(). | Mike Pall | 2012-10-10 | 6 | -8/+42 |
* | FFI: Compile array/struct copies. | Mike Pall | 2012-10-09 | 2 | -4/+3 |
* | FFI: Optimize ffi.copy() and ffi.fill(). | Mike Pall | 2012-10-09 | 1 | -26/+261 |
* | Add LJ_TARGET_UNALIGNED. | Mike Pall | 2012-10-09 | 2 | -1/+7 |
* | Add FOLD rules for CONV.int.i8/u8/i16/u16 of KINT. | Mike Pall | 2012-10-09 | 1 | -0/+14 |
* | Don't use stack unwinding for lua_yield(). | Mike Pall | 2012-10-09 | 6 | -17/+35 |
* | FFI: Add support for copy constructors. | Mike Pall | 2012-10-08 | 4 | -6/+10 |
* | PPC: Fix string.sub() range check. | Mike Pall | 2012-10-07 | 1 | -4/+4 |