aboutsummaryrefslogtreecommitdiff
path: root/src/lj_obj.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'master' into v2.1Mike Pall2014-01-161-1/+1
|\
| * Bump copyright date to 2014.Mike Pall2014-01-161-1/+1
| |
* | Merge branch 'master' into v2.1Mike Pall2013-10-141-1/+1
|\|
| * FFI: Rehash finalizer table after GC cycle, if needed.Mike Pall2013-10-141-1/+1
| |
* | Add low-overhead profiler. Part 1: interpreter, low-level C API.Mike Pall2013-09-021-0/+1
| |
* | Save currently executing lua_State in g->cur_L.Mike Pall2013-08-301-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 Pall2013-08-261-2/+2
| |
* | Refactor raw object to pointer or string conversions.Mike Pall2013-05-131-1/+2
| |
* | ARM: Rearrange global_State to satisfy imm12 encoding constraints.Mike Pall2013-03-131-2/+2
| |
* | String buffer refactoring, part 4.Mike Pall2013-02-281-1/+2
| | | | | | | | Add lua_State pointer to SBuf for buffer resizing.
* | String buffer refactoring, part 2.Mike Pall2013-02-271-3/+3
| | | | | | | | | | Switch to pointers for start/pos/end of buffer. Abstract out some buffer writers.
* | String buffer refactoring, part 1.Mike Pall2013-02-271-1/+1
| | | | | | | | | | Move string buffer handling to lj_buf.*. Use common buffer resizing function.
* | Remove obsolete non-truncating number to integer conversions.Mike Pall2013-02-231-4/+0
|/
* Bump copyright date to 2013.Mike Pall2013-02-111-1/+1
|
* Use 0/1 macro for Lua 5.2 compatibility.Mike Pall2012-09-121-1/+1
|
* FFI: Handle __pairs/__ipairs metamethods for cdata objects.Mike Pall2012-09-031-4/+6
|
* Turn loads from immutable upvalues into constants.Mike Pall2012-07-201-1/+5
|
* Avoid compiler warnings about redefined C++ keywords.Mike Pall2012-07-091-1/+1
|
* Avoid pesky compiler warnings about C++ keywords (eh?).Mike Pall2012-07-031-1/+1
|
* FFI: Check for __new metamethod when calling a constructor.Mike Pall2012-06-201-1/+7
|
* Bump copyright date to 2012.Mike Pall2012-01-231-1/+1
|
* Specialize to prototype for non-monomorphic functions.Mike Pall2011-11-201-0/+3
| | | | Solves the trace-explosion problem with closure-heavy programming.
* From Lua 5.2: __len for tables. Needs -DLUAJIT_ENABLE_LUA52COMPAT.Mike Pall2011-06-201-3/+3
|
* Add support for bytecode loading/saving.Mike Pall2011-06-131-5/+5
|
* Cleanup prototype flags.Mike Pall2011-06-091-6/+9
|
* Flatten and compress in-memory debug info (saves ~70%).Mike Pall2011-06-091-19/+10
|
* ARM: Add LJ_SOFTFP define. Add support for soft-float slot handling.Mike Pall2011-05-161-4/+4
|
* Avoid name clash with Windows MM_MAX define.Mike Pall2011-05-081-3/+3
|
* Use lj_vm_tobit() on targets without FPU.Mike Pall2011-04-101-0/+8
|
* DUALNUM: Handle integer type in JIT compiler.Mike Pall2011-03-101-2/+0
|
* DUALNUM: Add integer type to core VM.Mike Pall2011-02-171-5/+58
|
* FFI: Add 64 bit integer comparisons and pointer comparisons.Mike Pall2011-01-131-1/+1
|
* FFI: Add ffi.load() and ffi.C default namespace.Mike Pall2011-01-101-0/+1
|
* Bump copyright date to 2011.Mike Pall2011-01-091-1/+1
|
* Add support for uint64_t <-> FP conversions to x64 backend.Mike Pall2011-01-021-2/+1
|
* Add lj_num2u64 for number to uint64_t conversion.Mike Pall2010-12-311-0/+11
|
* FFI: Add 64 bit integer arithmetic.Mike Pall2010-12-251-0/+2
|
* Undo ef8c2648.Mike Pall2010-12-031-7/+0
|
* FFI: Add macros for consistent number to integer truncation.Mike Pall2010-11-261-0/+7
|
* FFI: Add cdata object type.Mike Pall2010-11-261-4/+34
|
* Disable Lua 5.2 features by default. See -DLUAJIT_ENABLE_LUA52COMPAT.Mike Pall2010-11-191-1/+7
|
* Add support for __pairs and __ipairs metamethods (from Lua 5.2).Mike Pall2010-11-181-1/+1
|
* Cleanup architecture, ABI and OS definitions.Mike Pall2010-11-161-1/+1
|
* Turn some lua_State fields into 32 bit pointers.Mike Pall2010-09-091-2/+2
| | | | lua_State now fits into one cache line on x64.
* Minor tweaks to integration of assembler part.Mike Pall2010-08-291-1/+1
| | | | | | | Remove unneeded PC restore in vm_growstack_*. Don't declare symbols that are unused in interpreter-only builds. Don't embed lj_vm_foldfpm in interpreter-only builds. Add 2nd temporary TValue in lua_State.
* Switch to fast string hash.Mike Pall2010-07-211-1/+2
|
* Turn TValue setter macros into inline functions.Mike Pall2010-04-261-110/+119
|
* Treat the tag of a TValue as unsigned everywhere.Mike Pall2010-04-251-28/+26
|
* Make metamethod names proper GC roots.Mike Pall2010-04-251-4/+6
|
* Turn traces into true GC objects (GCtrace).Mike Pall2010-04-251-1/+1
|