| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Add frame and continuation flags to TRef and SnapEntry. | Mike Pall | 2010-01-27 | 5 | -39/+57 |
* | Add missing check for return to lower frame. | Mike Pall | 2010-01-27 | 1 | -1/+2 |
* | Cleanup types for narrowing stack machine. | Mike Pall | 2010-01-27 | 1 | -28/+35 |
* | Compress snapshots using a simple, extensible 1D-compression. | Mike Pall | 2010-01-26 | 11 | -319/+365 |
* | Add missing eviction in asm_obar(). | Mike Pall | 2010-01-26 | 1 | -0/+1 |
* | Fill gaps in frames (caused by metamethod calls) with nil. | Mike Pall | 2010-01-26 | 3 | -5/+5 |
* | Use dedicated type for snapshot map entry. | Mike Pall | 2010-01-25 | 8 | -33/+36 |
* | Force error if lua_newstate() is used in 64 bit mode. | Mike Pall | 2010-01-24 | 3 | -0/+21 |
* | Integrate MinGW build with DWARF2 exception handling. | Mike Pall | 2010-01-22 | 7 | -31/+216 |
* | Fix undefined behavior in table resizing calculation. | Mike Pall | 2010-01-21 | 1 | -1/+2 |
* | Fix ordered string comparisons. Unsigned arithmetic is evil. | Mike Pall | 2010-01-21 | 1 | -1/+1 |
* | Decouple guard vs. INT check vs. TYPECHECK semantics for SLOAD. | Mike Pall | 2010-01-19 | 3 | -7/+14 |
* | Fix broken intarith + testop optimization. | Mike Pall | 2010-01-19 | 1 | -1/+1 |
* | Add some sanity checks for allocator in 64 bit mode. | Mike Pall | 2010-01-18 | 4 | -1/+8 |
* | Reduce non-numeric tag range by bumping up 64 bit lightud tag. | Mike Pall | 2010-01-18 | 1 | -6/+6 |
* | Fix more 64 bit conversion warnings. | Mike Pall | 2010-01-17 | 1 | -2/+2 |
* | Silence 64 bit conversion warning. | Mike Pall | 2010-01-17 | 1 | -1/+1 |
* | Enable build for x64 interpreter on WIN64. | Mike Pall | 2010-01-17 | 1 | -2/+11 |
* | Allocate 32 bit memory on WIN64 using NtAllocateVirtualMemory. | Mike Pall | 2010-01-17 | 1 | -7/+48 |
* | Fix off-by-one error in x64 PE object symbol mangling. | Mike Pall | 2010-01-17 | 1 | -1/+1 |
* | Error for blacklisted loop bytecodes has no info argument. | Mike Pall | 2010-01-16 | 1 | -1/+1 |
* | Add build infrastructure for x64 interpreter. | Mike Pall | 2010-01-14 | 4 | -6/+4655 |
* | Shorten %p format for pure 32 bit pointers on x64. | Mike Pall | 2010-01-14 | 1 | -3/+7 |
* | Strip '@' suffix from external symbols for MACH-O, too. | Mike Pall | 2010-01-10 | 1 | -17/+16 |
* | Improve alias analysis of upvalues using a disambiguation hash value. | Mike Pall | 2010-01-09 | 6 | -13/+30 |
* | Avoid int16_t widening for pt->uv elements. | Mike Pall | 2010-01-09 | 4 | -8/+13 |
* | Fix 32/64 bit portability issue with upval->v. | Mike Pall | 2010-01-09 | 7 | -22/+21 |
* | Fix x64 PE object emitter. | Mike Pall | 2010-01-09 | 1 | -1/+1 |
* | Bump all copyright dates to 2010. | Mike Pall | 2010-01-09 | 85 | -86/+86 |
* | Add support for WIN64 exception handling to external unwinder. | Mike Pall | 2010-01-05 | 5 | -44/+177 |
* | Fix PE object build for fastcall entry points into interpreter. | Mike Pall | 2010-01-05 | 4 | -6/+20 |
* | Major rewrite of error handling to allow external/internal unwinding. | Mike Pall | 2010-01-02 | 6 | -967/+1107 |
* | Rename NRESULTS to MULTRES on the assembler side, too. | Mike Pall | 2009-12-30 | 1 | -33/+33 |
* | Implement yield from C hooks. | Mike Pall | 2009-12-30 | 8 | -932/+949 |
* | Fix narrowing casts of pointer differences for x64. | Mike Pall | 2009-12-29 | 3 | -4/+4 |
* | Minor fixes for x64 interpreter. | Mike Pall | 2009-12-29 | 1 | -4/+12 |
* | Fix PE object build on x64 and with disabled interpreter. | Mike Pall | 2009-12-29 | 1 | -2/+5 |
* | Add DWARF2 unwind info for x64 interpreter. | Mike Pall | 2009-12-29 | 2 | -46/+130 |
* | Fix alloc/free sizes of internal GCRef arrays. | Mike Pall | 2009-12-29 | 5 | -5/+5 |
* | Fix various 32/64 bit issues in interpreter. | Mike Pall | 2009-12-29 | 1 | -10/+21 |
* | Fix bad stack setup in collectgarbage(). | Mike Pall | 2009-12-29 | 1 | -3/+4 |
* | Fix x64 lj_vm_pow_sse(). | Mike Pall | 2009-12-29 | 1 | -2/+2 |
* | Save all callee-saved x64 integer regs for unwinding. | Mike Pall | 2009-12-29 | 3 | -22/+30 |
* | Logical 'not' must be sign-extended for address operands. | Mike Pall | 2009-12-29 | 6 | -27/+35 |
* | Define CFRAME structure for x64 interpreter. | Mike Pall | 2009-12-28 | 3 | -14/+35 |
* | Linux/x64 mremap() does not obey MAP_32BIT, so make it non-moving. | Mike Pall | 2009-12-28 | 1 | -2/+9 |
* | Fix size calculation for closure structs. | Mike Pall | 2009-12-28 | 1 | -2/+2 |
* | Fix POSIX/x64 call argument order. | Mike Pall | 2009-12-28 | 1 | -4/+4 |
* | Change callee-save regs for x64 interpreter to shorten code. | Mike Pall | 2009-12-28 | 2 | -2/+9 |
* | Final calling convention cleanup for x64 interpreter. | Mike Pall | 2009-12-28 | 2 | -443/+468 |