Commit message (Collapse) | 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 |
| | | |||||
* | | Fix MSVC build. | Mike Pall | 2015-01-05 | 1 | -3/+8 |
| | | |||||
* | | Add LJ_GC64 mode: 64 bit GC object references. | Mike Pall | 2015-01-03 | 1 | -7/+104 |
| | | | | | | | | Actually NaN tagging with 47 bit pointers and 13+4 bit tags. | ||||
* | | Add LJ_FR2 mode: Two-slot frame info. | Mike Pall | 2015-01-03 | 1 | -2/+16 |
| | | |||||
* | | Cleanup of TValue setters. No functional changes. | Mike Pall | 2014-12-20 | 1 | -4/+8 |
| | | |||||
* | | Cleanup of memory vs. GC sizes. No functional changes. | Mike Pall | 2014-12-20 | 1 | -5/+6 |
| | | |||||
* | | 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 |
| | | |||||
* | | Merge branch 'master' into v2.1 | Mike Pall | 2013-10-14 | 1 | -1/+1 |
|\| | |||||
| * | FFI: Rehash finalizer table after GC cycle, if needed. | Mike Pall | 2013-10-14 | 1 | -1/+1 |
| | | |||||
* | | Add low-overhead profiler. Part 1: interpreter, low-level C API. | Mike Pall | 2013-09-02 | 1 | -0/+1 |
| | | |||||
* | | Save currently executing lua_State in g->cur_L. | Mike Pall | 2013-08-30 | 1 | -1/+1 |
| | | | | | | | | | | | | This is only a good approximation due to deficiencies in the design of the Lua/C API. It indicates _some_ valid state that is/was executing. Also reorder L->cframe stores to achieve a synchronously consistent state. | ||||
* | | Use g->jit_base for on/off-trace detection. | Mike Pall | 2013-08-26 | 1 | -2/+2 |
| | | |||||
* | | Refactor raw object to pointer or string conversions. | Mike Pall | 2013-05-13 | 1 | -1/+2 |
| | | |||||
* | | ARM: Rearrange global_State to satisfy imm12 encoding constraints. | Mike Pall | 2013-03-13 | 1 | -2/+2 |
| | | |||||
* | | String buffer refactoring, part 4. | Mike Pall | 2013-02-28 | 1 | -1/+2 |
| | | | | | | | | Add lua_State pointer to SBuf for buffer resizing. | ||||
* | | String buffer refactoring, part 2. | Mike Pall | 2013-02-27 | 1 | -3/+3 |
| | | | | | | | | | | Switch to pointers for start/pos/end of buffer. Abstract out some buffer writers. | ||||
* | | String buffer refactoring, part 1. | Mike Pall | 2013-02-27 | 1 | -1/+1 |
| | | | | | | | | | | Move string buffer handling to lj_buf.*. Use common buffer resizing function. | ||||
* | | Remove obsolete non-truncating number to integer conversions. | Mike Pall | 2013-02-23 | 1 | -4/+0 |
|/ | |||||
* | Bump copyright date to 2013. | Mike Pall | 2013-02-11 | 1 | -1/+1 |
| | |||||
* | Use 0/1 macro for Lua 5.2 compatibility. | Mike Pall | 2012-09-12 | 1 | -1/+1 |
| | |||||
* | FFI: Handle __pairs/__ipairs metamethods for cdata objects. | Mike Pall | 2012-09-03 | 1 | -4/+6 |
| | |||||
* | Turn loads from immutable upvalues into constants. | Mike Pall | 2012-07-20 | 1 | -1/+5 |
| | |||||
* | Avoid compiler warnings about redefined C++ keywords. | Mike Pall | 2012-07-09 | 1 | -1/+1 |
| | |||||
* | Avoid pesky compiler warnings about C++ keywords (eh?). | Mike Pall | 2012-07-03 | 1 | -1/+1 |
| | |||||
* | FFI: Check for __new metamethod when calling a constructor. | Mike Pall | 2012-06-20 | 1 | -1/+7 |
| | |||||
* | 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/+3 |
| | | | | Solves the trace-explosion problem with closure-heavy programming. | ||||
* | From Lua 5.2: __len for tables. Needs -DLUAJIT_ENABLE_LUA52COMPAT. | Mike Pall | 2011-06-20 | 1 | -3/+3 |
| | |||||
* | Add support for bytecode loading/saving. | Mike Pall | 2011-06-13 | 1 | -5/+5 |
| | |||||
* | Cleanup prototype flags. | Mike Pall | 2011-06-09 | 1 | -6/+9 |
| | |||||
* | Flatten and compress in-memory debug info (saves ~70%). | Mike Pall | 2011-06-09 | 1 | -19/+10 |
| | |||||
* | ARM: Add LJ_SOFTFP define. Add support for soft-float slot handling. | Mike Pall | 2011-05-16 | 1 | -4/+4 |
| | |||||
* | Avoid name clash with Windows MM_MAX define. | Mike Pall | 2011-05-08 | 1 | -3/+3 |
| | |||||
* | Use lj_vm_tobit() on targets without FPU. | Mike Pall | 2011-04-10 | 1 | -0/+8 |
| | |||||
* | DUALNUM: Handle integer type in JIT compiler. | Mike Pall | 2011-03-10 | 1 | -2/+0 |
| | |||||
* | DUALNUM: Add integer type to core VM. | Mike Pall | 2011-02-17 | 1 | -5/+58 |
| | |||||
* | FFI: Add 64 bit integer comparisons and pointer comparisons. | Mike Pall | 2011-01-13 | 1 | -1/+1 |
| | |||||
* | FFI: Add ffi.load() and ffi.C default namespace. | Mike Pall | 2011-01-10 | 1 | -0/+1 |
| | |||||
* | Bump copyright date to 2011. | Mike Pall | 2011-01-09 | 1 | -1/+1 |
| | |||||
* | Add support for uint64_t <-> FP conversions to x64 backend. | Mike Pall | 2011-01-02 | 1 | -2/+1 |
| | |||||
* | Add lj_num2u64 for number to uint64_t conversion. | Mike Pall | 2010-12-31 | 1 | -0/+11 |
| | |||||
* | FFI: Add 64 bit integer arithmetic. | Mike Pall | 2010-12-25 | 1 | -0/+2 |
| | |||||
* | Undo ef8c2648. | Mike Pall | 2010-12-03 | 1 | -7/+0 |
| | |||||
* | FFI: Add macros for consistent number to integer truncation. | Mike Pall | 2010-11-26 | 1 | -0/+7 |
| | |||||
* | FFI: Add cdata object type. | Mike Pall | 2010-11-26 | 1 | -4/+34 |
| | |||||
* | Disable Lua 5.2 features by default. See -DLUAJIT_ENABLE_LUA52COMPAT. | Mike Pall | 2010-11-19 | 1 | -1/+7 |
| | |||||
* | Add support for __pairs and __ipairs metamethods (from Lua 5.2). | Mike Pall | 2010-11-18 | 1 | -1/+1 |
| | |||||
* | Cleanup architecture, ABI and OS definitions. | Mike Pall | 2010-11-16 | 1 | -1/+1 |
| |