Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Bump copyright date to 2015. | Mike Pall | 2015-01-05 | 1 | -1/+1 |
| | |||||
* | Bump copyright date to 2014. | Mike Pall | 2014-01-16 | 1 | -1/+1 |
| | |||||
* | Bump copyright date to 2013. | Mike Pall | 2013-02-11 | 1 | -1/+1 |
| | |||||
* | ARM: Drop hard-fp variants of floor/ceil/trunc. | Mike Pall | 2012-10-15 | 1 | -3/+3 |
| | | | | Soft-fp variants are faster on a Cortex-A9. Duh. | ||||
* | From Lua 5.2: Add math.log(x, base). | Mike Pall | 2012-10-07 | 1 | -5/+5 |
| | |||||
* | ARM: Add VFP and hard-float ABI variants to JIT compiler. | Mike Pall | 2012-08-09 | 1 | -0/+7 |
| | |||||
* | PPC: Remove lj_vm_floor/ceil/trunc assembler wrappers. | Mike Pall | 2012-06-12 | 1 | -3/+7 |
| | |||||
* | PPC: Use builtin D-Cache/I-Cache sync code. | Mike Pall | 2012-03-29 | 1 | -0/+3 |
| | |||||
* | Bump copyright date to 2012. | Mike Pall | 2012-01-23 | 1 | -1/+1 |
| | |||||
* | FFI: Record ffi.errno(). | Mike Pall | 2011-11-26 | 1 | -0/+3 |
| | |||||
* | FFI: Add callback support (for x86/x64). | Mike Pall | 2011-11-14 | 1 | -0/+2 |
| | |||||
* | Rearrange defines for workarounds to embedded operating systems. | Mike Pall | 2011-10-19 | 1 | -2/+2 |
| | |||||
* | ARM: Add fast assembler implementation of floor/ceil/trunc. | Mike Pall | 2011-06-05 | 1 | -3/+9 |
| | |||||
* | Add narrowing of modulo operator. | Mike Pall | 2011-06-03 | 1 | -0/+1 |
| | |||||
* | Move math helpers to lj_vmmath.c. Add missing log2/exp2 for Symbian. | Mike Pall | 2011-06-03 | 1 | -2/+13 |
| | |||||
* | Simplify helper routines for soft-float targets. Add POW rejoin. | Mike Pall | 2011-05-26 | 1 | -4/+3 |
| | |||||
* | Use lj_vm_tobit() on targets without FPU. | Mike Pall | 2011-04-10 | 1 | -0/+3 |
| | |||||
* | x64: Workaround for libgcc unwind bug (still present in RHEL 5.5). | Mike Pall | 2011-03-17 | 1 | -0/+3 |
| | |||||
* | Bump copyright date to 2011. | Mike Pall | 2011-01-09 | 1 | -1/+1 |
| | |||||
* | Minor tweaks to integration of assembler part. | Mike Pall | 2010-08-29 | 1 | -0/+11 |
| | | | | | | | 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. | ||||
* | Implement return hooks for Lua functions (zero-cost if disabled). | Mike Pall | 2010-02-14 | 1 | -1/+2 |
| | |||||
* | Implement call hooks (zero-cost if disabled). | Mike Pall | 2010-02-14 | 1 | -0/+1 |
| | |||||
* | Major redesign of function call handling. | Mike Pall | 2010-02-13 | 1 | -6/+0 |
| | | | | | | | | | | | 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 bytecode offsets from lj_vm.* to generated header. | Mike Pall | 2010-02-05 | 1 | -3/+1 |
| | |||||
* | Bump all copyright dates to 2010. | Mike Pall | 2010-01-09 | 1 | -1/+1 |
| | |||||
* | Major rewrite of error handling to allow external/internal unwinding. | Mike Pall | 2010-01-02 | 1 | -2/+4 |
| | | | | | | | | | | | Make external unwinding the default on x64. It's mandatory on WIN64 due to the abundance of callee-saved regs. Allow piecewise internal frame unwinding and optional cleanup. Store ERRMEM, ERRERR and ERRCPP early and copy down later. Use FRAME_CP for lj_vm_resume. Add lj_vm_unwind_*_eh variants as landing pads for external unwinder. Use fastcall for lj_vm_unwind_*. Can drop r12/r13 saves in POSIX/x64 interpreter now. | ||||
* | Implement yield from C hooks. | Mike Pall | 2009-12-30 | 1 | -0/+1 |
| | | | | | | Get number of multiple results from C frame. Add lj_cont_hook: restores multres and dispatch to static ins. Can use fastcall for lj_dispatch_ins() now. | ||||
* | Add SSE variant of pow/powi to interpreter. | Mike Pall | 2009-12-25 | 1 | -5/+2 |
| | | | | | | Use SSE pow/powi helper functions from compiled code. Cleanup use of helper functions. Related cleanups of folding functions in x64 interpreter. | ||||
* | Use SSE variants for IRFPM_FLOOR/CEIL/TRUNC unless SSE4.1 available. | Mike Pall | 2009-12-22 | 1 | -0/+3 |
| | |||||
* | Adapt primary inbound calls in x64 interpreter. | Mike Pall | 2009-12-17 | 1 | -2/+2 |
| | | | | Change argument order for lj_vm_cpcall() to simplify x64 interpreter. | ||||
* | RELEASE LuaJIT-2.0.0-beta2v2.0.0-beta2 | Mike Pall | 2009-12-08 | 1 | -3/+3 |
| | |||||
* | RELEASE LuaJIT-2.0.0-beta1v2.0.0-beta1 | Mike Pall | 2009-12-08 | 1 | -0/+66 |