]> git.ipfire.org Git - thirdparty/LuaJIT.git/log
thirdparty/LuaJIT.git
13 years agoFFI: Fix stack adjustment for calls to stdcall/fastcall functions.
Mike Pall [Thu, 1 Dec 2011 15:27:24 +0000 (16:27 +0100)] 
FFI: Fix stack adjustment for calls to stdcall/fastcall functions.

13 years agoFFI: Need to treat strlen() as a load.
Mike Pall [Sun, 27 Nov 2011 17:22:48 +0000 (18:22 +0100)] 
FFI: Need to treat strlen() as a load.

13 years agoFix docs. The code base doesn't work on Windows 98 anymore.
Mike Pall [Sun, 27 Nov 2011 11:35:35 +0000 (12:35 +0100)] 
Fix docs. The code base doesn't work on Windows 98 anymore.

13 years agoDon't increment module reference counts due to symbol resolving.
Mike Pall [Sun, 27 Nov 2011 10:45:55 +0000 (11:45 +0100)] 
Don't increment module reference counts due to symbol resolving.

13 years agoFFI: Record ffi.errno().
Mike Pall [Sat, 26 Nov 2011 15:54:52 +0000 (16:54 +0100)] 
FFI: Record ffi.errno().

13 years agoFix stack check in side exit.
Mike Pall [Fri, 25 Nov 2011 18:36:48 +0000 (19:36 +0100)] 
Fix stack check in side exit.

13 years agoFFI: Record C function calls with bool return values.
Mike Pall [Fri, 25 Nov 2011 18:36:35 +0000 (19:36 +0100)] 
FFI: Record C function calls with bool return values.

13 years agoFFI: Fix line info for result conversion errors in callbacks.
Mike Pall [Fri, 25 Nov 2011 18:25:44 +0000 (19:25 +0100)] 
FFI: Fix line info for result conversion errors in callbacks.

13 years agoFFI: Fix GetLastError() save/restore around ffi.load().
Mike Pall [Fri, 25 Nov 2011 11:25:51 +0000 (12:25 +0100)] 
FFI: Fix GetLastError() save/restore around ffi.load().

13 years agoFFI: Improve ld script detection in ffi.load().
Mike Pall [Fri, 25 Nov 2011 10:19:59 +0000 (11:19 +0100)] 
FFI: Improve ld script detection in ffi.load().

13 years agoDo not eliminate PHIs only referenced from other PHIs.
Mike Pall [Wed, 23 Nov 2011 23:42:14 +0000 (00:42 +0100)] 
Do not eliminate PHIs only referenced from other PHIs.

13 years agoReplace stack slot for implicit number->string conv. in Lua/C API.
Mike Pall [Mon, 21 Nov 2011 19:50:27 +0000 (20:50 +0100)] 
Replace stack slot for implicit number->string conv. in Lua/C API.

13 years agoSpecialize to prototype for non-monomorphic functions.
Mike Pall [Sun, 20 Nov 2011 18:14:39 +0000 (19:14 +0100)] 
Specialize to prototype for non-monomorphic functions.

Solves the trace-explosion problem with closure-heavy programming.

13 years agoCount frames with same prototype in call unroll limit check.
Mike Pall [Sun, 20 Nov 2011 16:59:41 +0000 (17:59 +0100)] 
Count frames with same prototype in call unroll limit check.

13 years agoKeep maximum frame extent in snap->topslot.
Mike Pall [Sun, 20 Nov 2011 16:56:47 +0000 (17:56 +0100)] 
Keep maximum frame extent in snap->topslot.

13 years agoGet rid of snap->depth.
Mike Pall [Sun, 20 Nov 2011 12:23:25 +0000 (13:23 +0100)] 
Get rid of snap->depth.

13 years agoFix debug option for msvcbuild.bat.
Mike Pall [Thu, 17 Nov 2011 16:34:23 +0000 (17:34 +0100)] 
Fix debug option for msvcbuild.bat.

13 years agoFFI: Fix EnumWindows example in docs.
Mike Pall [Tue, 15 Nov 2011 15:45:36 +0000 (16:45 +0100)] 
FFI: Fix EnumWindows example in docs.

13 years agoFFI: Add missing GC barrier for callback registration.
Mike Pall [Tue, 15 Nov 2011 15:43:43 +0000 (16:43 +0100)] 
FFI: Add missing GC barrier for callback registration.

13 years agoFFI: Save GetLastError() around ffi.load() and symbol resolving, too.
Mike Pall [Tue, 15 Nov 2011 15:37:06 +0000 (16:37 +0100)] 
FFI: Save GetLastError() around ffi.load() and symbol resolving, too.

13 years agoEliminate some rare occurrences of redundant PHIs.
Mike Pall [Mon, 14 Nov 2011 22:57:05 +0000 (23:57 +0100)] 
Eliminate some rare occurrences of redundant PHIs.

13 years agoFix hint-based register allocation in ra_dest().
Mike Pall [Mon, 14 Nov 2011 22:52:26 +0000 (23:52 +0100)] 
Fix hint-based register allocation in ra_dest().

13 years agoFFI: Add callback support (for x86/x64).
Mike Pall [Mon, 14 Nov 2011 13:15:57 +0000 (14:15 +0100)] 
FFI: Add callback support (for x86/x64).

13 years agoPPC: Clarify docs.
Mike Pall [Mon, 14 Nov 2011 13:13:53 +0000 (14:13 +0100)] 
PPC: Clarify docs.

13 years agoFFI: Resolve __call metamethod for pointers, too.
Mike Pall [Mon, 14 Nov 2011 11:01:48 +0000 (12:01 +0100)] 
FFI: Resolve __call metamethod for pointers, too.

13 years agoAvoid dependence on lj_jit.h if only including lj_target.h.
Mike Pall [Sat, 12 Nov 2011 00:16:43 +0000 (01:16 +0100)] 
Avoid dependence on lj_jit.h if only including lj_target.h.

13 years agoFFI: Add unwind definitions for lj_vm_ffi_call.
Mike Pall [Fri, 11 Nov 2011 21:10:31 +0000 (22:10 +0100)] 
FFI: Add unwind definitions for lj_vm_ffi_call.

Adds exception interoperability for C/C++ functions called via FFI
from the interpreter.

13 years agoFFI: Extend metamethod tutorial.
Mike Pall [Fri, 11 Nov 2011 19:41:44 +0000 (20:41 +0100)] 
FFI: Extend metamethod tutorial.

13 years agoARM: Fix IR splitting for softfp XLOAD.
Mike Pall [Fri, 11 Nov 2011 00:07:34 +0000 (01:07 +0100)] 
ARM: Fix IR splitting for softfp XLOAD.

13 years agoARM: Fix code generation for type-check only softfp [AHUV]LOAD.
Mike Pall [Fri, 11 Nov 2011 00:05:37 +0000 (01:05 +0100)] 
ARM: Fix code generation for type-check only softfp [AHUV]LOAD.

13 years agox64: Fix lightuserdata comparisons.
Mike Pall [Fri, 4 Nov 2011 13:48:44 +0000 (14:48 +0100)] 
x64: Fix lightuserdata comparisons.

13 years agoSpelling.
Mike Pall [Fri, 4 Nov 2011 13:07:19 +0000 (14:07 +0100)] 
Spelling.

13 years agoPPC: Install dis_ppc.lua.
Mike Pall [Thu, 27 Oct 2011 17:47:47 +0000 (19:47 +0200)] 
PPC: Install dis_ppc.lua.

13 years agoFFI: Compile calls to stdcall, fastcall and vararg functions.
Mike Pall [Wed, 26 Oct 2011 23:52:37 +0000 (01:52 +0200)] 
FFI: Compile calls to stdcall, fastcall and vararg functions.

13 years agoPPC: Fuse BAND with shift to rlwinm.
Mike Pall [Tue, 25 Oct 2011 19:29:58 +0000 (21:29 +0200)] 
PPC: Fuse BAND with shift to rlwinm.

13 years agoAdd more FOLD rules for shift + BAND simplifications.
Mike Pall [Tue, 25 Oct 2011 19:16:27 +0000 (21:16 +0200)] 
Add more FOLD rules for shift + BAND simplifications.

13 years agox64: Fix code generation for BSWAP.
Mike Pall [Tue, 25 Oct 2011 19:14:01 +0000 (21:14 +0200)] 
x64: Fix code generation for BSWAP.

13 years agoPPC: Fuse BSWAP with XLOAD/XSTORE to lwbrx/stwbrx.
Mike Pall [Tue, 25 Oct 2011 17:50:44 +0000 (19:50 +0200)] 
PPC: Fuse BSWAP with XLOAD/XSTORE to lwbrx/stwbrx.

13 years agoPPC/e500: Fix write barrier in USETS.
Mike Pall [Tue, 25 Oct 2011 10:41:38 +0000 (12:41 +0200)] 
PPC/e500: Fix write barrier in USETS.

13 years agoPPC: Fix externally provided relocation offsets in DynASM.
Mike Pall [Mon, 24 Oct 2011 23:18:59 +0000 (01:18 +0200)] 
PPC: Fix externally provided relocation offsets in DynASM.

13 years agoPPC: Fix write barrier in USETV/USETS.
Mike Pall [Mon, 24 Oct 2011 22:29:10 +0000 (00:29 +0200)] 
PPC: Fix write barrier in USETV/USETS.

13 years agoPPC: Integrate and enable JIT compiler.
Mike Pall [Mon, 24 Oct 2011 14:43:51 +0000 (16:43 +0200)] 
PPC: Integrate and enable JIT compiler.

13 years agoAllow selection of single-number vs. dual-number mode in Makefile.
Mike Pall [Mon, 24 Oct 2011 14:35:17 +0000 (16:35 +0200)] 
Allow selection of single-number vs. dual-number mode in Makefile.

13 years agoPPC: Fix/improve interpreter/JIT integration.
Mike Pall [Mon, 24 Oct 2011 14:23:01 +0000 (16:23 +0200)] 
PPC: Fix/improve interpreter/JIT integration.

Switch to per-trace exit stubs.
Drop register holding current trace number.

13 years agoPPC: Generalize rematerialization handling.
Mike Pall [Mon, 24 Oct 2011 14:21:11 +0000 (16:21 +0200)] 
PPC: Generalize rematerialization handling.

13 years agoPPC: Add support for GDB JIT API.
Mike Pall [Mon, 24 Oct 2011 14:20:04 +0000 (16:20 +0200)] 
PPC: Add support for GDB JIT API.

13 years agoPPC: Add Linux/PPC cache flush mechanism.
Mike Pall [Mon, 24 Oct 2011 14:18:02 +0000 (16:18 +0200)] 
PPC: Add Linux/PPC cache flush mechanism.

GCC's __clear_cache() does nothing on PPC. Duh.

13 years agoMake sure to flush/sync the D/I-cache for all generated code.
Mike Pall [Mon, 24 Oct 2011 14:16:14 +0000 (16:16 +0200)] 
Make sure to flush/sync the D/I-cache for all generated code.

13 years agoFix handling of alignment arguments (nil) to CALLX.
Mike Pall [Mon, 24 Oct 2011 14:14:01 +0000 (16:14 +0200)] 
Fix handling of alignment arguments (nil) to CALLX.

13 years agoPPC: Add support for per-trace exit stubs.
Mike Pall [Mon, 24 Oct 2011 14:13:12 +0000 (16:13 +0200)] 
PPC: Add support for per-trace exit stubs.

13 years agoGeneralize handling of stack checks indicated by highest exit + 1.
Mike Pall [Mon, 24 Oct 2011 14:02:37 +0000 (16:02 +0200)] 
Generalize handling of stack checks indicated by highest exit + 1.

13 years agoDon't save/restore tmptv with copyTV.
Mike Pall [Mon, 24 Oct 2011 13:58:54 +0000 (15:58 +0200)] 
Don't save/restore tmptv with copyTV.

13 years agoFix compiler warning.
Mike Pall [Mon, 24 Oct 2011 13:58:24 +0000 (15:58 +0200)] 
Fix compiler warning.

13 years agoWhitespace.
Mike Pall [Sat, 22 Oct 2011 00:04:11 +0000 (02:04 +0200)] 
Whitespace.

13 years agoAdd missing FOLD rule for CONV.u64.int + sign-extension.
Mike Pall [Sat, 22 Oct 2011 00:03:07 +0000 (02:03 +0200)] 
Add missing FOLD rule for CONV.u64.int + sign-extension.

13 years agoFFI: Cleanup/fix 64 bit arithmetic in assembler backend.
Mike Pall [Sat, 22 Oct 2011 00:02:51 +0000 (02:02 +0200)] 
FFI: Cleanup/fix 64 bit arithmetic in assembler backend.

13 years agox64: Fix math.random() code generation.
Mike Pall [Sat, 22 Oct 2011 00:01:44 +0000 (02:01 +0200)] 
x64: Fix math.random() code generation.

13 years agoFix register hints for arithmetic helper functions.
Mike Pall [Sat, 22 Oct 2011 00:00:15 +0000 (02:00 +0200)] 
Fix register hints for arithmetic helper functions.

13 years agoSeparate/rename NUM/FLOAT <-> I64/U64 conversion functions.
Mike Pall [Fri, 21 Oct 2011 23:59:10 +0000 (01:59 +0200)] 
Separate/rename NUM/FLOAT <-> I64/U64 conversion functions.

13 years agoCleanup various endianess issues in assembler backend.
Mike Pall [Fri, 21 Oct 2011 23:35:57 +0000 (01:35 +0200)] 
Cleanup various endianess issues in assembler backend.

13 years agoRearrange defines for workarounds to embedded operating systems.
Mike Pall [Wed, 19 Oct 2011 16:14:46 +0000 (18:14 +0200)] 
Rearrange defines for workarounds to embedded operating systems.

13 years agoFix PE/COFF bytecode file format for big-endian targets.
Mike Pall [Tue, 18 Oct 2011 23:56:44 +0000 (01:56 +0200)] 
Fix PE/COFF bytecode file format for big-endian targets.

13 years agoFix FOLD rule for CONV.flt.num(CONV.num.flt(x)) => x.
Mike Pall [Tue, 18 Oct 2011 23:52:50 +0000 (01:52 +0200)] 
Fix FOLD rule for CONV.flt.num(CONV.num.flt(x)) => x.

13 years agoFFI/x86: Fix CONV.u32.num rounding.
Mike Pall [Tue, 18 Oct 2011 22:18:36 +0000 (00:18 +0200)] 
FFI/x86: Fix CONV.u32.num rounding.

13 years agoDon't fuse colocated array offsets without -Ofuse.
Mike Pall [Tue, 18 Oct 2011 22:17:19 +0000 (00:17 +0200)] 
Don't fuse colocated array offsets without -Ofuse.

13 years agoFixup PC in tracebacks after exits from down-recursive traces.
Mike Pall [Mon, 17 Oct 2011 18:06:04 +0000 (20:06 +0200)] 
Fixup PC in tracebacks after exits from down-recursive traces.

13 years agoPPC: Distinguish slwi, srwi and rlwinm in disassembly.
Mike Pall [Mon, 17 Oct 2011 15:22:21 +0000 (17:22 +0200)] 
PPC: Distinguish slwi, srwi and rlwinm in disassembly.

13 years agoAdd missing FOLD rule for integer NEG of constants.
Mike Pall [Mon, 17 Oct 2011 15:21:09 +0000 (17:21 +0200)] 
Add missing FOLD rule for integer NEG of constants.

13 years agoFFI/ARM: Ensure invocation of SPLIT pass for float conversions.
Mike Pall [Thu, 13 Oct 2011 23:09:30 +0000 (01:09 +0200)] 
FFI/ARM: Ensure invocation of SPLIT pass for float conversions.

13 years agoSave tmptv state for trace recorder across RECORD vmevent.
Mike Pall [Thu, 13 Oct 2011 22:43:17 +0000 (00:43 +0200)] 
Save tmptv state for trace recorder across RECORD vmevent.

13 years agoFFI: Fix unfused loads of float fields.
Mike Pall [Thu, 13 Oct 2011 18:53:01 +0000 (20:53 +0200)] 
FFI: Fix unfused loads of float fields.

13 years agoFFI: Fix call argument and return handling for I8/U8/I16/U16 types.
Mike Pall [Thu, 13 Oct 2011 18:44:31 +0000 (20:44 +0200)] 
FFI: Fix call argument and return handling for I8/U8/I16/U16 types.

13 years agoFFI: Record loads/stores to external variables in namespaces.
Mike Pall [Tue, 11 Oct 2011 18:56:57 +0000 (20:56 +0200)] 
FFI: Record loads/stores to external variables in namespaces.

13 years agoFFI: Fix recording of const/enum lookups in namespaces.
Mike Pall [Tue, 11 Oct 2011 09:51:48 +0000 (11:51 +0200)] 
FFI: Fix recording of const/enum lookups in namespaces.

13 years agoRemove unneeded PHI barrier for reassociation of duplicate ops.
Mike Pall [Mon, 10 Oct 2011 18:35:42 +0000 (20:35 +0200)] 
Remove unneeded PHI barrier for reassociation of duplicate ops.

13 years agoAvoid overwriting argument with error from metacall recording.
Mike Pall [Wed, 28 Sep 2011 15:29:15 +0000 (17:29 +0200)] 
Avoid overwriting argument with error from metacall recording.

13 years agoFix (harmless) typo.
Mike Pall [Wed, 21 Sep 2011 06:22:07 +0000 (08:22 +0200)] 
Fix (harmless) typo.

13 years agoARM: Fix HREFK code generation.
Mike Pall [Wed, 21 Sep 2011 06:21:25 +0000 (08:21 +0200)] 
ARM: Fix HREFK code generation.

13 years agoGenerate a portable vmdef.lua.
Mike Pall [Tue, 20 Sep 2011 19:15:05 +0000 (21:15 +0200)] 
Generate a portable vmdef.lua.

13 years agoPPC/e500: Fix GC barrier for TSETM.
Mike Pall [Sat, 17 Sep 2011 19:59:35 +0000 (21:59 +0200)] 
PPC/e500: Fix GC barrier for TSETM.

13 years agoPPC: Fix GC barrier for TSETM.
Mike Pall [Wed, 14 Sep 2011 14:02:43 +0000 (16:02 +0200)] 
PPC: Fix GC barrier for TSETM.

13 years agoARM: Fix GC barrier for TSETM.
Mike Pall [Wed, 14 Sep 2011 13:52:21 +0000 (15:52 +0200)] 
ARM: Fix GC barrier for TSETM.

13 years agoFix typo.
Mike Pall [Wed, 14 Sep 2011 13:29:30 +0000 (15:29 +0200)] 
Fix typo.

13 years agoARM: Disable CPU detection for interpreter-only builds.
Mike Pall [Thu, 8 Sep 2011 13:34:53 +0000 (15:34 +0200)] 
ARM: Disable CPU detection for interpreter-only builds.

13 years agoIncrease max. number of exit stub groups to correspond with -Omaxsnap.
Mike Pall [Mon, 5 Sep 2011 21:12:58 +0000 (23:12 +0200)] 
Increase max. number of exit stub groups to correspond with -Omaxsnap.

13 years agoUse some register allocator helpers for multiple architectures.
Mike Pall [Mon, 5 Sep 2011 18:23:20 +0000 (20:23 +0200)] 
Use some register allocator helpers for multiple architectures.

13 years agoPPC: Interpreter/JIT integration.
Mike Pall [Mon, 5 Sep 2011 16:34:38 +0000 (18:34 +0200)] 
PPC: Interpreter/JIT integration.

13 years agoPPC: Fix or remove assembler helper functions.
Mike Pall [Mon, 5 Sep 2011 16:32:53 +0000 (18:32 +0200)] 
PPC: Fix or remove assembler helper functions.

13 years agoPPC: More interpreter tuning. Use y-bit for branch predictions.
Mike Pall [Mon, 5 Sep 2011 16:30:36 +0000 (18:30 +0200)] 
PPC: More interpreter tuning. Use y-bit for branch predictions.

13 years agoPPC: Export register names from disassembler.
Mike Pall [Mon, 5 Sep 2011 16:28:03 +0000 (18:28 +0200)] 
PPC: Export register names from disassembler.

13 years agoPPC: Disassemble y-bit instead of at-bits for conditional branches.
Mike Pall [Mon, 5 Sep 2011 16:27:05 +0000 (18:27 +0200)] 
PPC: Disassemble y-bit instead of at-bits for conditional branches.

13 years agoPPC: Add y-bit variants of conditional branches to DynASM.
Mike Pall [Mon, 5 Sep 2011 16:26:08 +0000 (18:26 +0200)] 
PPC: Add y-bit variants of conditional branches to DynASM.

13 years agoAlways use ANSI variants of Windows system functions.
Mike Pall [Fri, 2 Sep 2011 09:42:01 +0000 (11:42 +0200)] 
Always use ANSI variants of Windows system functions.

13 years agoMark installed shared library as executable.
Mike Pall [Wed, 31 Aug 2011 09:56:40 +0000 (11:56 +0200)] 
Mark installed shared library as executable.

14 years agoAvoid conversion narrowing of arithmetic with large constants.
Mike Pall [Fri, 26 Aug 2011 18:29:05 +0000 (20:29 +0200)] 
Avoid conversion narrowing of arithmetic with large constants.

14 years agoFFI/x64: Fix struct-by-value calling conventions.
Mike Pall [Thu, 25 Aug 2011 09:10:39 +0000 (11:10 +0200)] 
FFI/x64: Fix struct-by-value calling conventions.

14 years agoRecord missing FORI slot loads (e.g. after return to lower frame).
Mike Pall [Sun, 21 Aug 2011 13:08:27 +0000 (15:08 +0200)] 
Record missing FORI slot loads (e.g. after return to lower frame).

14 years agoPPC: Add PPC disassembler.
Mike Pall [Thu, 18 Aug 2011 17:41:27 +0000 (19:41 +0200)] 
PPC: Add PPC disassembler.

14 years agoAdd potential PHI for number conversions due to type instability, too.
Mike Pall [Wed, 17 Aug 2011 18:42:41 +0000 (20:42 +0200)] 
Add potential PHI for number conversions due to type instability, too.

14 years agoExtend -b to generate c/h/obj/o files with embedded bytecode.
Mike Pall [Tue, 16 Aug 2011 22:13:39 +0000 (00:13 +0200)] 
Extend -b to generate c/h/obj/o files with embedded bytecode.

Supported object file formats: ELF or PE/COFF object files.