summaryrefslogtreecommitdiff
path: root/src/buildvm_x86.h (follow)
Commit message (Expand)AuthorAgeFilesLines
* Specialize bytecode for pairs()/next() iterator. Speedup: 3.5x.Mike Pall2010-09-301-105/+148
* x64: Use 64 bit slot copies in the interpreter.Mike Pall2010-09-301-191/+192
* x86/x64: Fix stack overflow handling for coroutine results.Mike Pall2010-09-221-552/+552
* Consistently round int args of string functions on x64.Mike Pall2010-09-211-4/+4
* x86/x64: Avoid unnecessary resize in BC_TSETM.Mike Pall2010-09-131-1/+1
* Optimize BC_VARG: use RC for numparams.Mike Pall2010-09-101-106/+105
* Turn some lua_State fields into 32 bit pointers.Mike Pall2010-09-091-143/+137
* Explicitly indicate tailcall from fast function fallback.Mike Pall2010-09-021-331/+331
* Minor tweaks to integration of assembler part.Mike Pall2010-08-291-843/+846
* Fix return from pcall within active hook.Mike Pall2010-08-071-705/+706
* Fix lua_cpcall(). Duplicate save corrupted C frame chain.Mike Pall2010-08-061-10/+10
* Untangle some target dependencies.Mike Pall2010-08-031-1/+0
* Fix arg check for two-arg SSE math functions in interpreter.Mike Pall2010-07-141-6/+6
* Fix frame setup for error handling in next().Mike Pall2010-06-281-1084/+1085
* Fix string.char() range check on x64.Mike Pall2010-05-301-847/+847
* Fix TNEW in x64 interpreter. Do not force a full GC (ouch).Mike Pall2010-04-251-224/+224
* Make metamethod names proper GC roots.Mike Pall2010-04-251-1/+1
* Turn traces into true GC objects (GCtrace).Mike Pall2010-04-251-1/+1
* Replace on-trace GC frame syncing with interpreter exit.Mike Pall2010-04-191-638/+639
* Refactor buildvm symbol generation.Mike Pall2010-04-141-41/+24
* Fix setup of RD when dispatching to function headers after exit.Mike Pall2010-04-091-633/+633
* Pass MULTRES or negated error code in RD to lj_vm_exit_interp.Mike Pall2010-03-231-635/+636
* Fix TSETM on x64/SSE builds when table is resized.Mike Pall2010-03-151-145/+138
* Fix unwind info for assembler part for OSX.Mike Pall2010-03-071-36/+61
* Fix generated 64 bit Mach-O assembler output.Mike Pall2010-03-051-0/+8
* Enable tracing of recursion.Mike Pall2010-03-011-31/+33
* Save/restore remaining callee-save regs on trace<->interp transitions.Mike Pall2010-02-271-328/+328
* Add trace exit helper for x64. Fix trace entry for x64.Mike Pall2010-02-241-960/+958
* Rethrow errors from trace exit handling from the right C frame.Mike Pall2010-02-191-485/+488
* Use a different marker for hot calls.Mike Pall2010-02-151-342/+346
* Implement return hooks for Lua functions (zero-cost if disabled).Mike Pall2010-02-141-511/+514
* Implement call hooks (zero-cost if disabled).Mike Pall2010-02-141-651/+659
* Major redesign of function call handling.Mike Pall2010-02-131-1164/+1197
* Move dispatch tables out of GG_State struct.Mike Pall2010-02-111-2/+2
* Switch to pre-initialized stacks. Drop frame clearing in interpreter.Mike Pall2010-02-111-1226/+1230
* Drop bc field in GCproto since the bytecode is colocated.Mike Pall2010-02-081-6/+6
* Integrate MinGW build with DWARF2 exception handling.Mike Pall2010-01-221-0/+45
* Add support for WIN64 exception handling to external unwinder.Mike Pall2010-01-051-1/+1
* Fix PE object build for fastcall entry points into interpreter.Mike Pall2010-01-051-2/+2
* Major rewrite of error handling to allow external/internal unwinding.Mike Pall2010-01-021-819/+817
* Implement yield from C hooks.Mike Pall2009-12-301-898/+901
* Add DWARF2 unwind info for x64 interpreter.Mike Pall2009-12-291-23/+65
* Final calling convention cleanup for x64 interpreter.Mike Pall2009-12-281-430/+430
* More calling convention cleanups for x64 interpreter.Mike Pall2009-12-271-190/+190
* Use fastcall for remaining 1-arg/2-arg calls from interpreter.Mike Pall2009-12-271-1168/+1168
* Add SSE variant of pow/powi to interpreter.Mike Pall2009-12-251-571/+568
* Add build infrastructure for the SSE2-enabled interpreter.Mike Pall2009-12-221-1/+1
* Fix last commit.Mike Pall2009-12-221-1/+1
* Miscellaneous cleanups for x64 interpreter.Mike Pall2009-12-221-11/+11
* Add SSE2 variants for all FP ops (except vm_pow*) in interpreter.Mike Pall2009-12-221-900/+1333