Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Reorganize build process. | Mike Pall | 2012-06-09 | 1 | -3406/+0 |
| | | | | | | | | | Drop pre-translated buildvm_*.h. Rename buildvm_*.dasc to vm_*.dasc. Move buildvm* to host directory. Build minilua, unless HOST_LUA is set. Use HOST_LUA to run DynASM. Translate only vm_*.dasc for target architecture. | ||||
* | FFI: Add callback support (for x86/x64). | Mike Pall | 2011-11-14 | 1 | -1246/+1282 |
| | |||||
* | FFI: Add unwind definitions for lj_vm_ffi_call. | Mike Pall | 2011-11-12 | 1 | -494/+615 |
| | | | | | Adds exception interoperability for C/C++ functions called via FFI from the interpreter. | ||||
* | x64: Fix lightuserdata comparisons. | Mike Pall | 2011-11-04 | 1 | -574/+574 |
| | |||||
* | Prefer recording loops over calls. | Mike Pall | 2011-06-29 | 1 | -30/+30 |
| | | | | Hotcounts are decremented by 2 for loops and by 1 for calls. | ||||
* | From Lua 5.2: __len for tables. Needs -DLUAJIT_ENABLE_LUA52COMPAT. | Mike Pall | 2011-06-20 | 1 | -1156/+1173 |
| | |||||
* | More fixes for the Solaris/x86 build. Thanks to Will Metcalf. | Mike Pall | 2011-06-14 | 1 | -1/+1 |
| | |||||
* | Make .eh_frame section read-write on Solaris. | Mike Pall | 2011-06-11 | 1 | -0/+4 |
| | |||||
* | Move math helpers to lj_vmmath.c. Add missing log2/exp2 for Symbian. | Mike Pall | 2011-06-03 | 1 | -7/+7 |
| | |||||
* | x86/x64: Fix bit.* argument checking. | Mike Pall | 2011-05-06 | 1 | -668/+673 |
| | |||||
* | RELEASE LuaJIT-2.0.0-beta7v2.0.0-beta7 | Mike Pall | 2011-05-05 | 1 | -2/+2 |
| | |||||
* | Add support for tailcalls from internal C functions. | Mike Pall | 2011-04-12 | 1 | -1028/+1032 |
| | | | | PPC: Fix __call metamethod for tailcalls. | ||||
* | x64: Fix getmetatable(lightuserdata). | Mike Pall | 2011-04-05 | 1 | -1052/+1053 |
| | |||||
* | x64: Workaround for libgcc unwind bug (still present in RHEL 5.5). | Mike Pall | 2011-03-17 | 1 | -1081/+1084 |
| | |||||
* | Get rid of the remaining silly cast macros from Lua. | Mike Pall | 2011-03-10 | 1 | -5/+5 |
| | |||||
* | DUALNUM: Add extra assertions to interpreter. | Mike Pall | 2011-03-09 | 1 | -679/+695 |
| | |||||
* | DUALNUM: Fix x87 code for BC_ISEQN/BC_ISNEN. | Mike Pall | 2011-03-07 | 1 | -391/+390 |
| | |||||
* | DUALNUM: Handle integer type in x86/x64 interpreter and libraries. | Mike Pall | 2011-02-27 | 1 | -1141/+1791 |
| | |||||
* | x64: Improve accuracy of x^-k. | Mike Pall | 2011-02-25 | 1 | -593/+593 |
| | |||||
* | Fix OSX build to work with newer ld64 versions. | Mike Pall | 2011-02-02 | 1 | -0/+1 |
| | |||||
* | FFI: Add 64 bit integer comparisons and pointer comparisons. | Mike Pall | 2011-01-13 | 1 | -909/+942 |
| | |||||
* | FFI: Auto-detect __stdcall and fix up C function declarations. | Mike Pall | 2011-01-10 | 1 | -319/+325 |
| | |||||
* | Bump copyright date to 2011. | Mike Pall | 2011-01-09 | 1 | -2/+2 |
| | |||||
* | Fix Windows/x86 build and update pregenerated files. | Mike Pall | 2011-01-06 | 1 | -499/+513 |
| | |||||
* | FFI: Parse complex and 64 bit integer literals. | Mike Pall | 2010-12-24 | 1 | -0/+5 |
| | |||||
* | Disable Lua 5.2 features by default. See -DLUAJIT_ENABLE_LUA52COMPAT. | Mike Pall | 2010-11-19 | 1 | -996/+1003 |
| | |||||
* | Add support for __pairs and __ipairs metamethods (from Lua 5.2). | Mike Pall | 2010-11-18 | 1 | -462/+464 |
| | |||||
* | Specialize bytecode for pairs()/next() iterator. Speedup: 3.5x. | Mike Pall | 2010-09-30 | 1 | -107/+148 |
| | | | | | | Parser predict pairs/next and emits specialized bytecode. Bytecode is descpecialized at runtime if the prediction was wrong. Store slot index in hidden control var to avoid key lookups. | ||||
* | x64: Use 64 bit slot copies in the interpreter. | Mike Pall | 2010-09-30 | 1 | -995/+989 |
| | |||||
* | x86/x64: Fix stack overflow handling for coroutine results. | Mike Pall | 2010-09-22 | 1 | -932/+932 |
| | |||||
* | Consistently round int args of string functions on x64. | Mike Pall | 2010-09-21 | 1 | -4/+4 |
| | |||||
* | x86/x64: Avoid unnecessary resize in BC_TSETM. | Mike Pall | 2010-09-13 | 1 | -1/+1 |
| | |||||
* | Optimize BC_VARG: use RC for numparams. | Mike Pall | 2010-09-10 | 1 | -108/+108 |
| | |||||
* | Turn some lua_State fields into 32 bit pointers. | Mike Pall | 2010-09-09 | 1 | -146/+141 |
| | | | | lua_State now fits into one cache line on x64. | ||||
* | Explicitly indicate tailcall from fast function fallback. | Mike Pall | 2010-09-02 | 1 | -309/+309 |
| | |||||
* | Minor tweaks to integration of assembler part. | Mike Pall | 2010-08-29 | 1 | -1105/+1107 |
| | | | | | | | 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. | ||||
* | Fix return from pcall within active hook. | Mike Pall | 2010-08-07 | 1 | -1124/+1126 |
| | |||||
* | Fix lua_cpcall(). Duplicate save corrupted C frame chain. | Mike Pall | 2010-08-06 | 1 | -2/+2 |
| | |||||
* | Untangle some target dependencies. | Mike Pall | 2010-08-03 | 1 | -1/+0 |
| | |||||
* | Fix arg check for two-arg SSE math functions in interpreter. | Mike Pall | 2010-07-14 | 1 | -6/+6 |
| | |||||
* | Fix frame setup for error handling in next(). | Mike Pall | 2010-06-28 | 1 | -542/+542 |
| | |||||
* | Fix string.char() range check on x64. | Mike Pall | 2010-05-30 | 1 | -469/+469 |
| | |||||
* | Fix TNEW in x64 interpreter. Do not force a full GC (ouch). | Mike Pall | 2010-04-25 | 1 | -5/+5 |
| | |||||
* | Make metamethod names proper GC roots. | Mike Pall | 2010-04-25 | 1 | -1/+1 |
| | |||||
* | Turn traces into true GC objects (GCtrace). | Mike Pall | 2010-04-25 | 1 | -2/+2 |
| | |||||
* | Replace on-trace GC frame syncing with interpreter exit. | Mike Pall | 2010-04-19 | 1 | -604/+604 |
| | | | | | | | Need to sync GC objects to stack only during atomic GC phase. Need to setup a proper frame structure only for calling finalizers. Force an exit to the interpreter and let it handle the uncommon cases. Finally solves the "NYI: gcstep sync with frames" issue. | ||||
* | Refactor buildvm symbol generation. | Mike Pall | 2010-04-14 | 1 | -41/+24 |
| | | | | Fixes Windows and OSX builds with LUAJIT_DISABLE_JIT. | ||||
* | Fix setup of RD when dispatching to function headers after exit. | Mike Pall | 2010-04-09 | 1 | -597/+598 |
| | |||||
* | Pass MULTRES or negated error code in RD to lj_vm_exit_interp. | Mike Pall | 2010-03-23 | 1 | -598/+598 |
| | | | | Fixes overwrite of saved r12 after trace exit. | ||||
* | Fix TSETM on x64/SSE builds when table is resized. | Mike Pall | 2010-03-15 | 1 | -147/+142 |
| |