| Commit message (Expand) | Author | Age | Files | Lines |
* | Merge branch 'master' into v2.1 | Mike Pall | 2015-01-06 | 1 | -1/+1 |
|\ |
|
| * | Bump copyright date to 2015. | Mike Pall | 2015-01-05 | 1 | -1/+1 |
* | | Add LJ_GC64 mode: 64 bit GC object references. | Mike Pall | 2015-01-03 | 1 | -2/+9 |
* | | Specialize to ffid for non-monomorphic builtins. | Mike Pall | 2014-03-04 | 1 | -0/+1 |
* | | Merge branch 'master' into v2.1 | Mike Pall | 2014-01-16 | 1 | -1/+1 |
|\| |
|
| * | Bump copyright date to 2014. | Mike Pall | 2014-01-16 | 1 | -1/+1 |
* | | Compile getfenv(0). | Mike Pall | 2013-10-09 | 1 | -0/+2 |
* | | FFI: Compile lightuserdata to void * conversion. | Mike Pall | 2013-10-09 | 1 | -0/+1 |
* | | Add table.new(). | Mike Pall | 2013-10-09 | 1 | -0/+1 |
* | | Low-overhead profiler, part 4: JIT compiler support. | Mike Pall | 2013-09-08 | 1 | -0/+1 |
* | | Change semantics of buffer ops to simplify CSE and DCE. | Mike Pall | 2013-04-26 | 1 | -2/+2 |
* | | Use explicit conversion type for IR_TOSTR. Add char conversion. | Mike Pall | 2013-04-23 | 1 | -1/+6 |
* | | Compile string concatenations (BC_CAT). | Mike Pall | 2013-04-21 | 1 | -0/+9 |
* | | Remove obsolete non-truncating number to integer conversions. | Mike Pall | 2013-02-23 | 1 | -1/+0 |
|/ |
|
* | Bump copyright date to 2013. | Mike Pall | 2013-02-11 | 1 | -1/+1 |
* | Add table of IR type sizes. | Mike Pall | 2012-08-27 | 1 | -5/+12 |
* | Don't treat all constified cdata content as constant. | Mike Pall | 2012-07-24 | 1 | -0/+1 |
* | Avoid pesky compiler warnings about C++ keywords (eh?). | Mike Pall | 2012-07-03 | 1 | -1/+1 |
* | Add IR_PVAL instruction for non-slot parent links. | Mike Pall | 2012-07-02 | 1 | -0/+1 |
* | Add explicit IR_GCSTEP instruction. | Mike Pall | 2012-07-02 | 1 | -0/+1 |
* | FFI: Use CNEWI/FLOAD to box/access ffi.new("int", x) (for varargs). | Mike Pall | 2012-06-04 | 1 | -0/+1 |
* | Bump copyright date to 2012. | Mike Pall | 2012-01-23 | 1 | -1/+1 |
* | Specialize to prototype for non-monomorphic functions. | Mike Pall | 2011-11-20 | 1 | -0/+1 |
* | Cleanup various endianess issues in assembler backend. | Mike Pall | 2011-10-22 | 1 | -1/+1 |
* | FFI/ARM: Ensure invocation of SPLIT pass for float conversions. | Mike Pall | 2011-10-14 | 1 | -0/+1 |
* | Split up FP IR instructions with SPLIT pass for soft-float targets. | Mike Pall | 2011-05-22 | 1 | -1/+1 |
* | Move IR_CALL* definitions to lj_ircall.h. | Mike Pall | 2011-05-22 | 1 | -85/+0 |
* | FFI: Fix cdata finalization. | Mike Pall | 2011-04-13 | 1 | -0/+1 |
* | DUALNUM: Handle integer type in JIT compiler. | Mike Pall | 2011-03-10 | 1 | -9/+21 |
* | DUALNUM: Make overflow guards weak. Add IR_USE and IR_MULOV. | Mike Pall | 2011-03-07 | 1 | -2/+5 |
* | FFI: Fix compiled ffi.string() semantics. | Mike Pall | 2011-02-28 | 1 | -0/+1 |
* | FFI: Record ffi.copy() and ffi.fill(). | Mike Pall | 2011-02-07 | 1 | -1/+3 |
* | Add IR_XBAR, a barrier against XLOAD/XSTORE optimizations. | Mike Pall | 2011-02-07 | 1 | -1/+2 |
* | Improve static assertion macro. | Mike Pall | 2011-02-07 | 1 | -1/+2 |
* | FFI: Record simple C function calls. | Mike Pall | 2011-02-05 | 1 | -2/+2 |
* | FFI: Record ffi.string(). | Mike Pall | 2011-02-05 | 1 | -1/+2 |
* | FFI: Rename IR_CNEWP to IR_CNEWI and use it to box 64 bit integers. | Mike Pall | 2011-02-03 | 1 | -4/+6 |
* | Rename IR_POWI to IR_POW. | Mike Pall | 2011-02-02 | 1 | -1/+1 |
* | FFI: Record 64 bit integer divide and modulo. | Mike Pall | 2011-02-02 | 1 | -7/+11 |
* | Add SPLIT pass to split 64 bit IR instructions for 32 bit CPUs. | Mike Pall | 2011-02-02 | 1 | -5/+16 |
* | FFI: Split up 64 bit x^k helper into signed/unsigned. | Mike Pall | 2011-01-28 | 1 | -1/+3 |
* | FFI: Move code for cdata arithmetic to lj_carith.c. | Mike Pall | 2011-01-26 | 1 | -1/+1 |
* | Add volatile XLOADs. | Mike Pall | 2011-01-19 | 1 | -1/+2 |
* | Differentiate between IR_KPTR and IR_KKPTR. | Mike Pall | 2011-01-19 | 1 | -1/+3 |
* | Bump copyright date to 2011. | Mike Pall | 2011-01-09 | 1 | -1/+1 |
* | Fix handling of floats in x86/x64 backend. | Mike Pall | 2011-01-05 | 1 | -0/+1 |
* | FFI: Record 64 bit integer arithmetic. | Mike Pall | 2011-01-03 | 1 | -0/+7 |
* | Use cdata to pass IR_KINT64 to -jdump. | Mike Pall | 2011-01-02 | 1 | -0/+1 |
* | Refactoring of conversion ops, part 5: drop TOINT/TOI64/TONUM. | Mike Pall | 2010-12-31 | 1 | -13/+0 |
* | Refactoring of conversion ops, part 4: use CONV instead of TOINT/TONUM. | Mike Pall | 2010-12-31 | 1 | -0/+4 |