Commit Graph

  • 125cc87988 From Lua 5.2: Add debug.getuservalue() and debug.setuservalue(). Mike Pall 2012-09-24 17:52:32 +02:00
  • ca0bb4881f From Lua 5.2: Add rawlen(). Needs -DLUAJIT_ENABLE_LUA52COMPAT. Mike Pall 2012-09-24 17:33:32 +02:00
  • 4c7c2c8319 Rearrange library functions to get a fixed FF_next. Mike Pall 2012-09-24 17:13:53 +02:00
  • d9c5eba1bb Remove some library functions for no-JIT/no-FFI builds. Mike Pall 2012-09-24 16:56:07 +02:00
  • 2ff4afeb4f Allow conditional inclusion of builtin library functions. Mike Pall 2012-09-24 16:55:10 +02:00
  • 2ba16862c7 From Lua 5.2: Add mode and env arguments to load*(). Mike Pall 2012-09-21 16:33:14 +02:00
  • 3dceaa9a74 Move load/dump functions to lj_load.c. Add load modes. Mike Pall 2012-09-21 16:32:24 +02:00
  • 98f05808fa Fix package.searchpath(). Mike Pall 2012-09-21 16:14:17 +02:00
  • 40afe71c3f Fix last commit. Mike Pall 2012-09-20 17:41:32 +02:00
  • 8352335c74 From Lua 5.2: Add debug.upvalueid() and debug.upvaluejoin(). Mike Pall 2012-09-20 17:36:15 +02:00
  • a9baead59f From Lua 5.2: debug.getinfo(..., "u") returns nparams and isvararg. Mike Pall 2012-09-20 15:50:20 +02:00
  • 965694b0af Fix 'f' and 'L' options for debug.getinfo() and lua_getinfo(). Mike Pall 2012-09-20 15:19:48 +02:00
  • 2d3c1967c7 Disable LUA_COMPAT_GFIND and LUA_COMPAT_MOD in Lua 5.2 mode. Mike Pall 2012-09-19 18:14:00 +02:00
  • 16d8c83743 From Lua 5.2: debug.setmetatable() returns object. Mike Pall 2012-09-19 16:33:50 +02:00
  • 1afcea1435 From Lua 5.2: 'break' allowed anywhere. Mike Pall 2012-09-19 16:30:46 +02:00
  • c687d01c46 From Lua 5.2: debug.getlocal() accepts function arg, too. Mike Pall 2012-09-19 12:08:35 +02:00
  • 7d49b19ad0 From Lua 5.2: debug.getlocal()/setlocal() treats slot < 0 as vararg. Mike Pall 2012-09-19 12:06:56 +02:00
  • 998c656dc4 From Lua 5.2: debug.getupvalue() returns "" for C function upvalues. Mike Pall 2012-09-19 12:03:03 +02:00
  • ead325b0c9 From Lua 5.2: Add goto and :🏷️: statements. Mike Pall 2012-09-16 18:46:04 +02:00
  • aed2009378 Fix despecialization of ITERN when already running. Mike Pall 2012-09-12 16:58:47 +02:00
  • 23932a6c8b Use 0/1 macro for Lua 5.2 compatibility. Mike Pall 2012-09-12 11:20:47 +02:00
  • 039bf85e26 Add more assertions for stack consistency during recording. Mike Pall 2012-09-12 11:02:19 +02:00
  • 76ab3709da FFI: Correctly propagate alignment when interning nested types. Mike Pall 2012-09-10 18:05:54 +02:00
  • 21cea85d92 FFI: Always resolve metamethods for pointers to structs. Mike Pall 2012-09-08 21:03:40 +02:00
  • 0648fd47cb FFI: Handle __pairs/__ipairs metamethods for cdata objects. Mike Pall 2012-09-03 21:10:10 +02:00
  • 90ec1f90d0 Fix recording of ctype() constructors for pointers. Mike Pall 2012-09-03 21:08:37 +02:00
  • a6d636c508 Preserve snapshot #0 PC for all traces (potential gcstep exit). Mike Pall 2012-09-01 00:58:00 +02:00
  • d3699997fa Add check for unsupported MIPS soft-float targets. Mike Pall 2012-08-30 10:31:26 +02:00
  • ff00a78f3a Limit recursion depth in string.match() et al. Mike Pall 2012-08-28 21:22:23 +02:00
  • 751cd9d821 Don't constify upvalues that may retain large amounts of memory. Mike Pall 2012-08-28 15:24:53 +02:00
  • c7826af5a0 FFI: Detect type punning through unions. Mike Pall 2012-08-27 20:52:15 +02:00
  • 76b18b2b46 Add table of IR type sizes. Mike Pall 2012-08-27 20:27:01 +02:00
  • 30f458fb4d ARM, PPC, MIPS: Improve XLOAD operand fusion and register hinting. Mike Pall 2012-08-27 20:25:54 +02:00
  • 1e477e6487 Fix underflow handling in builtin string to number conversion. Mike Pall 2012-08-27 14:26:50 +02:00
  • 774280d9c1 Replace some trivial uses of fprintf() with fputs. Mike Pall 2012-08-26 20:13:23 +02:00
  • c0efa6f00e Replace divisions with simpler code. Mike Pall 2012-08-26 19:41:35 +02:00
  • cf3a263044 Fix compilation with FFI disabled. Mike Pall 2012-08-26 14:36:00 +02:00
  • dad6645098 Remove old Makefile rules. Mike Pall 2012-08-26 11:58:58 +02:00
  • 4c882fe714 Replace strtod() with builtin string to number conversion. Mike Pall 2012-08-25 23:02:29 +02:00
  • 653facd0d5 Add support for '%a' and '%A' to string.format. Mike Pall 2012-08-25 22:46:22 +02:00
  • 52ca2cc8ba ARM: Fix base register coalescing. Mike Pall 2012-08-25 18:38:30 +02:00
  • 099635c86c ARM: Fix commit ceaa60c0. Mike Pall 2012-08-25 14:13:47 +02:00
  • f2479a9654 Minor fixes to FOLD rules. Mike Pall 2012-08-20 18:45:50 +02:00
  • af2cb02542 ARM: Fix hard-float lj_vm_trunc() (used by compiled math.modf). Mike Pall 2012-08-19 22:37:43 +02:00
  • 1fef2df3e8 MIPS: Don't use argument GPRs to rematerialize FPR arguments. Mike Pall 2012-08-19 18:44:29 +02:00
  • ceaa60c0c7 ARM: Don't use argument GPRs to rematerialize FPR arguments. Mike Pall 2012-08-19 18:43:04 +02:00
  • 1481263aaa ARM, MIPS, PPC: Rematerialize FPR invariants first. Mike Pall 2012-08-19 18:42:08 +02:00
  • 2ac083cb5a MIPS: Fix calls to floor/ceil/trunc. Mike Pall 2012-08-19 18:41:34 +02:00
  • f58a84d0bc ARM: Fix calls to hard-float floor/ceil/trunc. Mike Pall 2012-08-19 18:39:47 +02:00
  • d61e9e5d89 Fix shrinking of direct mapped block in builtin allocator. Mike Pall 2012-08-16 13:18:40 +02:00
  • 0dd175d9e7 Fix last commit. Mike Pall 2012-08-15 21:08:00 +02:00
  • ff0a1f3f4e FOLD x / 2^k ==> x * 2^-k. Mike Pall 2012-08-15 16:17:34 +02:00
  • 5e18c91b89 x86: Simplify error message for CPUs lacking CMOV. Mike Pall 2012-08-14 13:19:45 +02:00
  • 1a3e5e1521 FFI: Don't keep CType * across call. Callback may reallocate table. Mike Pall 2012-08-12 01:16:49 +02:00
  • ece23a4788 Do not use DWARF unwinder on Windows. Mike Pall 2012-08-11 05:41:09 +02:00
  • 1878d17f19 Update cross-compilation docs. Mike Pall 2012-08-09 13:15:28 +02:00
  • 85a02f9ae8 ARM: Enable VFP and hard-float ABI support. Mike Pall 2012-08-09 13:13:39 +02:00
  • 4dc9e22def ARM: Add VFP and hard-float ABI variants to JIT compiler. Mike Pall 2012-08-09 13:11:43 +02:00
  • e6fac91d01 Never compile DWARF unwinder on Windows. Mike Pall 2012-08-09 13:09:47 +02:00
  • 2717623e3a FFI: Compile ffi.typeof(cdata). Mike Pall 2012-08-08 21:01:36 +02:00
  • e2373c1538 FFI: Compile assignments from enums. Mike Pall 2012-08-08 20:35:02 +02:00
  • 5e227865bc Add missing change for last commit. Mike Pall 2012-08-05 19:13:35 +02:00
  • 806822b70b FFI: Improve error message for bad indexing attempts. Mike Pall 2012-08-05 17:26:01 +02:00
  • 0a750fe715 FFI: Initialize all fields of standard types. Mike Pall 2012-08-05 09:33:15 +02:00
  • 77183e75f2 FFI: Fix alignment of C call structure. Mike Pall 2012-08-02 15:13:28 +02:00
  • 4b0af611d0 ARM: Add hard-float ABI support to the FFI (interpreter). Mike Pall 2012-07-30 19:00:52 +02:00
  • a373fddbd3 ARM: Add VFP and hard-float ABI variants to interpreter. Mike Pall 2012-07-30 18:59:13 +02:00
  • 23abbd9ef3 Only replay sunk stores up to the snapshot reference. Mike Pall 2012-07-29 21:37:45 +02:00
  • 85f29ffd40 Need to handle TBAR in SINK pass. Mike Pall 2012-07-29 21:33:46 +02:00
  • e84c2a9e9a Handle cross-compiles with FPU/no-FPU or hard-fp/soft-fp ABI mismatch. Mike Pall 2012-07-29 12:22:18 +02:00
  • b98c1582c9 ARM: Add VFP instructions to ARM disassembler. Mike Pall 2012-07-29 12:17:13 +02:00
  • 2d58872cb5 DynASM/ARM: Add VFP instructions. Mike Pall 2012-07-29 12:16:33 +02:00
  • e8af6e9da4 Don't treat all constified cdata content as constant. Mike Pall 2012-07-24 14:56:29 +02:00
  • 3636a720a5 Turn loads from immutable upvalues into constants. Mike Pall 2012-07-20 18:54:52 +02:00
  • 834ff6d36d Fix slot flags in snapshot replay. Mike Pall 2012-07-20 18:52:29 +02:00
  • f1b4fa844b Fix restore of sunk CNEWI with implicit P32 to P64 conversion. Mike Pall 2012-07-18 18:02:32 +02:00
  • 4d9c29a78c FFI: Box all accessed or returned enums. Mike Pall 2012-07-17 22:20:03 +02:00
  • 2139c6791f Fix FOLD rule (i-j)-i => 0-j. Mike Pall 2012-07-17 21:47:45 +02:00
  • c172e7aa30 Workaround for MSVC conversion bug (double -> uint32_t -> int32_t). Mike Pall 2012-07-17 21:45:49 +02:00
  • 08d8ec0648 x86/x64: Fix fusion of unsigned byte comparisons with swapped ops. Mike Pall 2012-07-16 23:43:03 +02:00
  • e44cb53874 ARM: Invoke SPLIT pass for leftover IR_TOBIT. Mike Pall 2012-07-16 23:39:49 +02:00
  • 63bb052bbe From Lua 5.2: Add -E command line option (ignore env vars). Mike Pall 2012-07-16 22:47:01 +02:00
  • bf2d4acf00 Correct dispatch table modifications for return hooks. Mike Pall 2012-07-16 22:36:38 +02:00
  • 0e2f5be140 FFI: Show address pointed to for tostring(ref), too. Mike Pall 2012-07-12 14:19:27 +02:00
  • 53e28d7678 Limit number of parent links handled by backend. Mike Pall 2012-07-11 16:48:52 +02:00
  • 24fa85760c Use an explicit flag to signal SINK tags for a trace. Mike Pall 2012-07-11 16:45:15 +02:00
  • 79ecb231ce Don't allocate constants for sunk stores. Mike Pall 2012-07-09 16:22:08 +02:00
  • f20ff8a30d Avoid compiler warnings about redefined C++ keywords. Mike Pall 2012-07-09 16:02:05 +02:00
  • 6e4d0fdc8e Add missing declarations for MSVC intrinsics. Mike Pall 2012-07-09 15:54:25 +02:00
  • b23a7830d2 Clean up ARM capability flags. Only set highest arch version. Mike Pall 2012-07-08 22:20:11 +02:00
  • c00ffcb870 Change DynASM bit operations to use Lua BitOp. Mike Pall 2012-07-08 16:25:38 +02:00
  • e3dec0438d Add Lua BitOp to minilua. Mike Pall 2012-07-08 16:24:53 +02:00
  • 6a67fa8a4b Finally fix target detection for msvcbuild.bat. Mike Pall 2012-07-07 20:36:35 +02:00
  • 7c056488d9 Drop range limit for sunk stores relative to sunk allocation. Mike Pall 2012-07-04 21:16:06 +02:00
  • bd782cedd5 Bump some limits to accomodate SINK pass. Mike Pall 2012-07-04 21:14:37 +02:00
  • c22d698e17 Add stricter check for sinking PHIs. Mike Pall 2012-07-04 11:41:58 +02:00
  • 4da7ffc34b Remove unneeded snapshot preps for sunk stores. Mike Pall 2012-07-03 23:19:45 +02:00
  • d5b9d84538 Fix NEWREF marking in SINK pass. Mike Pall 2012-07-03 16:45:13 +02:00
  • 80d0acc7c1 Fix compiler warnings. Mike Pall 2012-07-03 13:22:30 +02:00
  • 17d3fc47f3 Avoid pesky compiler warnings about C++ keywords (eh?). Mike Pall 2012-07-03 13:19:32 +02:00