| Commit message (Expand) | Author | Files | Lines |
2011-01-05 | Fix handling of floats in x86/x64 backend. | Mike Pall | 3 | -13/+19 |
2011-01-05 | FFI: Force snapshot after store to cdata. | Mike Pall | 1 | -0/+1 |
2011-01-03 | FFI: Record 64 bit integer arithmetic. | Mike Pall | 3 | -8/+40 |
2011-01-03 | Add support for non-constant integer IR_MUL to backend. | Mike Pall | 2 | -28/+16 |
2011-01-03 | Add support for integer IR_NEG to backend. | Mike Pall | 1 | -4/+9 |
2011-01-03 | FFI: Record pointer arithmetic. | Mike Pall | 3 | -7/+114 |
2011-01-02 | FFI: Add support for cdata constants to IR. | Mike Pall | 2 | -13/+57 |
2011-01-02 | Use cdata to pass IR_KINT64 to -jdump. | Mike Pall | 4 | -3/+17 |
2011-01-02 | Improve uint64_t <-> FP conversions in x64 backend. | Mike Pall | 3 | -16/+21 |
2011-01-02 | FFI: Record tonumber() for boxed cdata. | Mike Pall | 4 | -2/+32 |
2011-01-02 | Add support for uint64_t <-> FP conversions to x64 backend. | Mike Pall | 2 | -17/+35 |
2010-12-31 | Add conversions for type mismatches in XSTORE forwarding. | Mike Pall | 1 | -7/+21 |
2010-12-31 | Add 8/16 to 32 bit sign/zero-extension variants to CONV. | Mike Pall | 1 | -1/+24 |
2010-12-31 | Fix register allocation for FP <- int conversion. | Mike Pall | 1 | -1/+1 |
2010-12-31 | Refactoring of conversion ops, part 5: drop TOINT/TOI64/TONUM. | Mike Pall | 4 | -186/+2 |
2010-12-31 | Refactoring of conversion ops, part 4: use CONV instead of TOINT/TONUM. | Mike Pall | 8 | -61/+89 |
2010-12-31 | Refactoring of conversion ops, part 3: add FOLD rules for IR_CONV. | Mike Pall | 2 | -35/+226 |
2010-12-31 | Copy destination type for CONV from ir->t to op2, too. | Mike Pall | 8 | -29/+49 |
2010-12-31 | Add lj_num2u64 for number to uint64_t conversion. | Mike Pall | 2 | -6/+12 |
2010-12-30 | FFI: Add missing GC steps for implicit allocations. | Mike Pall | 5 | -15/+24 |
2010-12-30 | Refactoring of conversion ops, part 2: cleanup cdata conversions. | Mike Pall | 3 | -72/+82 |
2010-12-30 | Add support for IRT_FLOAT to XLOAD/XSTORE. | Mike Pall | 2 | -2/+7 |
2010-12-30 | Refactoring of conversion ops, part 1: add IR_CONV. | Mike Pall | 5 | -1/+142 |
2010-12-28 | Use macro-map for IRT_* enum. Add IRT_FLOAT. | Mike Pall | 2 | -30/+21 |
2010-12-28 | FFI: Catch various NYI cases while recording. | Mike Pall | 2 | -2/+7 |
2010-12-28 | Make recording of type() independent of LJ_T*/IRT_* mapping. | Mike Pall | 1 | -1/+7 |
2010-12-25 | FFI: Add 64 bit integer arithmetic. | Mike Pall | 6 | -17/+157 |
2010-12-25 | FFI: Fix C type representation for valarrays. | Mike Pall | 1 | -1/+1 |
2010-12-24 | FFI: Parse complex and 64 bit integer literals. | Mike Pall | 14 | -110/+303 |
2010-12-24 | Fix misnamed macro in Lua parser. | Mike Pall | 1 | -8/+8 |
2010-12-23 | FFI: Fix C parser for hex literals. | Mike Pall | 1 | -1/+1 |
2010-12-23 | FFI: Add pointer arithmetic. | Mike Pall | 3 | -6/+118 |
2010-12-23 | Fix display of branches to exit stubs in 32 bit disassembly. | Mike Pall | 1 | -1/+1 |
2010-12-23 | Improve register allocation for loops with variable shifts. | Mike Pall | 1 | -1/+4 |
2010-12-22 | FFI: Record cdata allocations. | Mike Pall | 6 | -16/+142 |
2010-12-22 | Avoid compiler warnings. | Mike Pall | 2 | -2/+2 |
2010-12-20 | Reassociate XLOAD across PHIs to handle a[i-1] forwarding case. | Mike Pall | 1 | -5/+80 |
2010-12-20 | Fix XSTORE for IRT_NUM constants. | Mike Pall | 1 | -1/+2 |
2010-12-20 | Fix dump of pointer constants. | Mike Pall | 1 | -1/+1 |
2010-12-20 | Improve alias analysis for cdata allocations. | Mike Pall | 1 | -15/+43 |
2010-12-17 | FFI: Drop IR_CNEWI. Add IR_CNEWP only for pointers/refs. | Mike Pall | 5 | -91/+50 |
2010-12-17 | FFI: FOLD load of initializers even across PHIs. | Mike Pall | 1 | -1/+1 |
2010-12-17 | FFI: Record copy-by-value for pointer and complex C types. | Mike Pall | 1 | -10/+28 |
2010-12-15 | FFI: Simplify copy-by-value. Strip attributes, keep qualifiers. | Mike Pall | 1 | -23/+8 |
2010-12-15 | FFI: Fix auto-deref of pointers to structs. | Mike Pall | 2 | -9/+15 |
2010-12-15 | Fix error location while recording metamethods. | Mike Pall | 1 | -1/+1 |
2010-12-12 | Fix type-based alias analysis for XLOAD/XSTORE. | Mike Pall | 1 | -10/+10 |
2010-12-12 | Add alias analysis for XLOAD/XSTORE. Add DSE for XSTORE. | Mike Pall | 3 | -3/+90 |
2010-12-12 | FOLD (base+k)+(idx*sz)+ofs ==> (base+idx*sz)+(ofs+k). | Mike Pall | 1 | -15/+23 |
2010-12-12 | Add missing PHI barrier to strength reduction of widening. | Mike Pall | 1 | -0/+2 |