summaryrefslogtreecommitdiff
path: root/src/lj_state.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Bump copyright date to 2013.Mike Pall2013-02-111-1/+1
|
* Fix userdata __gc separations at state close.Mike Pall2012-06-101-2/+2
|
* Limit number of userdata __gc separations at state close.Mike Pall2012-04-111-1/+3
|
* Ensure running __gc of userdata created in __gc at state close.Mike Pall2012-04-111-2/+7
|
* FFI: Finalize cdata before userdata when closing the state.Mike Pall2012-03-051-1/+1
|
* Bump copyright date to 2012.Mike Pall2012-01-231-1/+1
|
* No need for L argument to lj_str_initbuf().Mike Pall2011-06-121-1/+1
|
* Get rid of the remaining silly cast macros from Lua.Mike Pall2011-03-101-1/+1
|
* FFI: Add ffi.gc() function for finalization of cdata objects.Mike Pall2011-02-281-1/+2
|
* Bump copyright date to 2011.Mike Pall2011-01-091-1/+1
|
* FFI: Add C type management.Mike Pall2010-12-051-2/+5
|
* Release all memory when using the builtin allocator.Mike Pall2010-09-131-16/+11
| | | | Blocks >128K are not kept in the segment list and were not destroyed.
* Turn some lua_State fields into 32 bit pointers.Mike Pall2010-09-091-16/+18
| | | | lua_State now fits into one cache line on x64.
* Switch to fast string hash.Mike Pall2010-07-211-0/+2
|
* Move free node pos to t->node[0].freetop. Saves 4 bytes in GCtab.Mike Pall2010-03-221-0/+1
|
* Reorder various structs to reduce padding (thanks to /usr/bin/pahole).Mike Pall2010-03-151-1/+1
|
* Resize stack up to the true limit.Mike Pall2010-03-011-2/+11
|
* Conditionally compile functions that are unused with JIT disabled.Mike Pall2010-02-281-0/+2
|
* Correctly align and free allocated machine code areas.Mike Pall2010-02-271-1/+4
| | | | Bump default mcode area size to 64K for x64.
* Place dynamically generated code near static code on x64.Mike Pall2010-02-261-0/+1
|
* Move SIMD constants to jit_State to keep them in the low 4GB.Mike Pall2010-02-241-0/+1
|
* Major redesign of function call handling.Mike Pall2010-02-131-8/+6
| | | | | | | | | | | Drop call gates. Use function headers, dispatched like bytecodes. Emit BC_FUNCF/BC_FUNCV bytecode at PC 0 for all Lua functions. C functions and ASM fast functions get extra bytecodes. Modify internal calling convention: new base in BASE (formerly in RA). Can now use better C function wrapper semantics (dynamic on/off). Prerequisite for call hooks with zero-overhead if disabled. Prerequisite for compiling recursive calls. Prerequisite for efficient 32/64 bit prototype guards.
* Move dispatch tables out of GG_State struct.Mike Pall2010-02-111-4/+6
|
* Switch to pre-initialized stacks. Drop frame clearing in interpreter.Mike Pall2010-02-111-16/+17
|
* Force error if lua_newstate() is used in 64 bit mode.Mike Pall2010-01-241-0/+4
|
* Add some sanity checks for allocator in 64 bit mode.Mike Pall2010-01-181-1/+1
|
* Fix 32/64 bit portability issue with upval->v.Mike Pall2010-01-091-1/+1
|
* Bump all copyright dates to 2010.Mike Pall2010-01-091-1/+1
|
* Fix alloc/free sizes of internal GCRef arrays.Mike Pall2009-12-291-1/+1
|
* Use fastcall for remaining 1-arg/2-arg calls from interpreter.Mike Pall2009-12-271-2/+2
| | | | Simplifies conversion to x64 calling conventions.
* Adapt primary inbound calls in x64 interpreter.Mike Pall2009-12-171-2/+2
| | | | Change argument order for lj_vm_cpcall() to simplify x64 interpreter.
* RELEASE LuaJIT-2.0.0-beta1v2.0.0-beta1Mike Pall2009-12-081-0/+255