summaryrefslogtreecommitdiff
path: root/src (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Reorganize build process.Mike Pall2012-06-0923-41374/+115
| | | | | | | | | 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.
* Add minified Lua interpreter (minilua). Used by the build process.Mike Pall2012-06-093-0/+8273
|
* FFI: Fix address calculation for refs.Mike Pall2012-06-091-8/+10
| | | | Fixes bug introduced in commit 5032e6d8.
* Move lib/* to src/jit/*.Mike Pall2012-06-0813-2/+3996
|
* Correctly preserve snapshot #0 PC for root traces (insert NOP).Mike Pall2012-06-081-2/+7
|
* Rearrange OSX vs. iOS defines. Disable callbacks on iOS.Mike Pall2012-06-087-76/+94
|
* Print version and JIT status to stdout, not stderr.Mike Pall2012-06-061-6/+7
|
* Split-off large-file support flags to TARGET_LFSFLAGS.Mike Pall2012-06-051-1/+2
|
* FFI: Use CNEWI/FLOAD to box/access ffi.new("int", x) (for varargs).Mike Pall2012-06-043-19/+23
|
* FFI: Convert io.* file handle to FILE * pointer (but as a void *).Mike Pall2012-05-292-2/+12
|
* Fix argument checks for coroutine.create().Mike Pall2012-05-281-1/+2
|
* PPC/e500: Fix tailcall from fast function (esp. tostring).Mike Pall2012-05-232-171/+173
|
* FFI: Equality comparisons never raise an error.Mike Pall2012-05-232-6/+14
|
* Preserve snapshot #0 PC for root traces.Mike Pall2012-05-141-0/+5
|
* FFI: Don't call FreeLibrary() on our own EXE/DLL.Mike Pall2012-05-141-1/+1
|
* ARM/PPC/MIPS: Fix tailcall from fast function (esp. tostring).Mike Pall2012-05-106-1029/+1041
|
* ARM: Fix modulo operator and math.floor/ceil for inf/nan.Mike Pall2012-05-101-0/+2
|
* ARM: Fix tonumber() argument check.Mike Pall2012-05-102-2/+5
|
* RELEASE LuaJIT-2.0.0-beta10v2.0.0-beta10Mike Pall2012-05-092-4/+4
|
* Remove stray comment.Mike Pall2012-05-091-1/+1
|
* FFI: Fix recording of test for bool result of call.Mike Pall2012-05-091-7/+10
|
* FFI: Don't record test for bool result of call, if ignored.Mike Pall2012-05-081-1/+3
|
* FFI: Allow 'typedef _Bool int BOOL;' to make Windows users happy.Mike Pall2012-05-083-9/+16
|
* Fix PHI stack slot syncing.Mike Pall2012-05-078-5/+97
|
* FFI: Use correct PC in FFI metamethod error message.Mike Pall2012-05-051-0/+1
|
* Disable loading bytecode with an extra header (BOM or #!).Mike Pall2012-05-032-1/+18
|
* ARM: Fix compilation of math.sinh/cosh/tanh.Mike Pall2012-04-302-4/+4
|
* ARM: Fix rejoin of pow in SPLIT pass.Mike Pall2012-04-301-1/+1
|
* ARM: Handle all CALL* ops with double results in SPLIT pass.Mike Pall2012-04-291-0/+2
|
* Add more comparison variants to Valgrind suppressions file.Mike Pall2012-04-262-1/+12
|
* ARM/FFI: Invoke SPLIT pass for double args in FFI call.Mike Pall2012-04-261-0/+2
|
* ARM: Fix conditional branch fixup for OBAR.Mike Pall2012-04-261-2/+2
|
* ARM: Fix register allocation for ldrd-optimized HREFK.Mike Pall2012-04-261-1/+2
|
* ARM: Reorder type/value tests to silence Valgrind.Mike Pall2012-04-263-17/+16
|
* Add required PHIs for implicit conversions (via XREF fwd).Mike Pall2012-04-191-21/+29
|
* FFI: Fix result type of pointer difference.Mike Pall2012-04-171-1/+1
|
* Fix dependencies.Mike Pall2012-04-171-1/+2
|
* FFI: Fix blacklisting of C functions calling callbacks.Mike Pall2012-04-121-0/+3
|
* Make lua_concat() work from C hook with partial frame.Mike Pall2012-04-122-2/+7
|
* Fix DSE of USTORE. Have to remove OBAR, too.Mike Pall2012-04-111-0/+13
|
* Fix bytecode JMP slot range after const + and/or optimization.Mike Pall2012-04-111-12/+15
|
* 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
|
* Fix discharge order of comparisons in Lua parser.Mike Pall2012-04-091-2/+3
|
* MIPS: Add support for GDB JIT API.Mike Pall2012-04-011-4/+14
|
* FFI: Fix symbol resolving error messages on Windows.Mike Pall2012-03-311-6/+11
|
* FFI: Fix resolving of function name redirects on Windows/x86.Mike Pall2012-03-311-3/+4
|
* MIPS: Integrate and enable JIT compiler.Mike Pall2012-03-308-21/+2293
|
* MIPS: Add MIPS32R2 compile-time/runtime CPU detection.Mike Pall2012-03-302-1/+21
|
* MIPS: Interpreter/JIT integrationMike Pall2012-03-302-219/+577
|