| Commit message (Expand) | Author | Files | Lines |
2011-02-14 | PPC: Disable FFI due to NYI: comparisons and calls. | Mike Pall | 1 | -0/+1 |
2011-02-14 | Fix type mismatch in XSTORE forwarding. | Mike Pall | 1 | -2/+2 |
2011-02-11 | RELEASE LuaJIT-2.0.0-beta6v2.0.0-beta6 | Mike Pall | 8 | -15/+15 |
2011-02-11 | FFI: Disable unused code for some build modes. | Mike Pall | 2 | -2/+2 |
2011-02-11 | Update changelog. | Mike Pall | 1 | -0/+45 |
2011-02-11 | Cleanup of docs. | Mike Pall | 8 | -75/+157 |
2011-02-11 | FFI: Finish FFI docs. | Mike Pall | 15 | -157/+469 |
2011-02-10 | FFI: Finish docs on FFI semantics. Phew. | Mike Pall | 1 | -34/+521 |
2011-02-10 | Fix various HTML errors in the docs. | Mike Pall | 5 | -6/+6 |
2011-02-09 | FFI: Add more docs on FFI semantics. | Mike Pall | 1 | -24/+268 |
2011-02-08 | FFI: Document current FFI implementation status. | Mike Pall | 1 | -9/+82 |
2011-02-08 | Fix bytecode optimization of and/or operators. | Mike Pall | 1 | -4/+0 |
2011-02-08 | FFI: Record ffi.abi(). | Mike Pall | 5 | -4/+21 |
2011-02-07 | FFI: Record ffi.copy() and ffi.fill(). | Mike Pall | 5 | -19/+57 |
2011-02-07 | FFI: Fix recording of pointer arithmetic. | Mike Pall | 1 | -1/+1 |
2011-02-07 | Add IR_XBAR, a barrier against XLOAD/XSTORE optimizations. | Mike Pall | 4 | -2/+6 |
2011-02-07 | Improve static assertion macro. | Mike Pall | 2 | -1/+7 |
2011-02-07 | FFI: Allow cdata types for integer arguments of ffi.* functions. | Mike Pall | 2 | -6/+23 |
2011-02-07 | FFI: Fix handling of enum arguments to C calls. | Mike Pall | 1 | -2/+2 |
2011-02-06 | FFI: Perform stricter checks in ffi.cast(). Record ffi.cast(). | Mike Pall | 1 | -7/+6 |
2011-02-06 | FFI: Simplify and fix tonumber() for cdata objects. | Mike Pall | 2 | -38/+13 |
2011-02-06 | Strength-reduce 32 to 64 bit widening for XLOAD U8/U16 inputs. | Mike Pall | 1 | -0/+3 |
2011-02-05 | FFI: Limit number of arguments for recorded calls. | Mike Pall | 1 | -1/+1 |
2011-02-05 | FFI: Record simple C function calls. | Mike Pall | 7 | -35/+177 |
2011-02-05 | FFI: Optimize snapshots for cdata comparisons. | Mike Pall | 4 | -8/+23 |
2011-02-05 | Fix metamethod comparisons triggered by BC_ISEQP/BC_ISNEP. | Mike Pall | 1 | -1/+1 |
2011-02-05 | FFI: Record C library namespace lookups. | Mike Pall | 8 | -11/+53 |
2011-02-05 | Treat metatables of special userdata objects as immutable. | Mike Pall | 1 | -12/+26 |
2011-02-05 | FFI: Record ffi.string(). | Mike Pall | 4 | -7/+31 |
2011-02-05 | FFI: Avoid intermediate boxes for tonumber(), too. | Mike Pall | 1 | -0/+6 |
2011-02-03 | FFI: Disable MUL => BSHL FOLD rule on 32 bit. | Mike Pall | 1 | -0/+3 |
2011-02-03 | FFI: Rename IR_CNEWP to IR_CNEWI and use it to box 64 bit integers. | Mike Pall | 5 | -82/+140 |
2011-02-02 | Rename IR_POWI to IR_POW. | Mike Pall | 5 | -15/+15 |
2011-02-02 | FFI: Add basic FOLD rules for 64 bit integer DIV, MOD and POWI. | Mike Pall | 2 | -1/+54 |
2011-02-02 | FFI: Record 64 bit integer divide and modulo. | Mike Pall | 6 | -34/+86 |
2011-02-02 | Use names defined in lualib.h for library registration. | Mike Pall | 11 | -19/+17 |
2011-02-02 | Fix OSX build to work with newer ld64 versions. | Mike Pall | 4 | -0/+4 |
2011-02-02 | Add SPLIT pass to split 64 bit IR instructions for 32 bit CPUs. | Mike Pall | 14 | -116/+795 |
2011-02-01 | Add SSE3 CPU feature detection. | Mike Pall | 2 | -8/+10 |
2011-01-29 | FFI: Limit index range for complex numbers. | Mike Pall | 2 | -3/+8 |
2011-01-29 | FFI: Implement POSIX/x64 struct-by-value calling conventions. | Mike Pall | 2 | -9/+127 |
2011-01-28 | Fix 64 bit case of (SUB x x) and (BXOR x x) FOLD rules. | Mike Pall | 1 | -2/+2 |
2011-01-28 | FFI: Split up 64 bit x^k helper into signed/unsigned. | Mike Pall | 4 | -20/+34 |
2011-01-27 | FFI: Fix various issues with C type table reallocations. | Mike Pall | 1 | -9/+13 |
2011-01-27 | FFI: Fix symbol name redirection. | Mike Pall | 1 | -0/+1 |
2011-01-26 | FFI: Move code for cdata arithmetic to lj_carith.c. | Mike Pall | 11 | -260/+308 |
2011-01-26 | FFI: Record cdata indexing with integer cdata. | Mike Pall | 1 | -0/+13 |
2011-01-26 | FFI: Allow cdata indexing with integer cdata. | Mike Pall | 1 | -2/+12 |
2011-01-26 | Fix comments for BC_ITERN. | Mike Pall | 2 | -2/+2 |
2011-01-26 | FFI: Convert enum return value of C function to underlying type. | Mike Pall | 1 | -0/+1 |