mikepaul-LuaJIT/src
2012-11-26 11:01:59 +01:00
..
host Allow conditional inclusion of builtin library functions. 2012-09-24 16:55:10 +02:00
jit ARM: Add VFP and hard-float ABI variants to JIT compiler. 2012-08-09 13:13:11 +02:00
.gitignore Reorganize build process. 2012-06-09 15:12:44 +02:00
lauxlib.h From Lua 5.2: Add luaL_traceback(). 2012-10-01 20:45:30 +02:00
lib_aux.c From Lua 5.2: Extended results from os.execute() and pipe:close(). 2012-09-24 19:00:54 +02:00
lib_base.c From Lua 5.2: Add luaL_traceback(). 2012-10-01 20:45:30 +02:00
lib_bit.c Bump copyright date to 2012. 2012-01-23 22:42:42 +01:00
lib_debug.c From Lua 5.2: Add luaL_traceback(). 2012-10-01 20:45:30 +02:00
lib_ffi.c FFI: Compile ffi.gc(). 2012-10-10 18:56:16 +02:00
lib_init.c FFI: Add ffi.* library. 2010-12-05 00:52:17 +01:00
lib_io.c From Lua 5.2: Add format options to io.lines(). 2012-10-12 14:11:41 +02:00
lib_jit.c Remove some library functions for no-JIT/no-FFI builds. 2012-09-24 16:56:07 +02:00
lib_math.c From Lua 5.2: Add math.log(x, base). 2012-10-07 15:47:11 +02:00
lib_os.c From Lua 5.2: Extended results from os.execute() and pipe:close(). 2012-09-24 19:00:54 +02:00
lib_package.c From Lua 5.2: Add package.loadlib(libname, "*"). 2012-10-12 14:42:40 +02:00
lib_string.c From Lua 5.2: Add string.rep(s, n, sep). 2012-10-07 17:11:39 +02:00
lib_table.c From Lua 5.2: Add table.pack(). Needs -DLUAJIT_ENABLE_LUA52COMPAT. 2012-09-28 17:29:17 +02:00
lj_alloc.c Fix shrinking of direct mapped block in builtin allocator. 2012-08-16 13:18:40 +02:00
lj_alloc.h RELEASE LuaJIT-2.0.0-beta1 2009-12-08 19:46:35 +01:00
lj_api.c Don't use stack unwinding for lua_yield(). 2012-10-09 13:19:57 +02:00
lj_arch.h Prevent erroneous x64 builds with non-native exception handling. 2012-11-14 22:16:10 +01:00
lj_asm_arm.h ARM: Drop hard-fp variants of floor/ceil/trunc. 2012-10-15 16:53:03 +02:00
lj_asm_mips.h MIPS: Compile math.sqrt() to sqrt.d instruction. 2012-10-15 21:28:10 +02:00
lj_asm_ppc.h PPC: Compile math.sqrt() to fsqrt instruction. 2012-10-15 21:23:20 +02:00
lj_asm_x86.h Fix assertion. 2012-11-14 21:54:17 +01:00
lj_asm.c Fix CONV.num.int sinking. 2012-11-06 16:57:50 +01:00
lj_asm.h Bump copyright date to 2012. 2012-01-23 22:42:42 +01:00
lj_bc.c Bump copyright date to 2012. 2012-01-23 22:42:42 +01:00
lj_bc.h Rearrange library functions to get a fixed FF_next. 2012-09-24 17:13:53 +02:00
lj_bcdump.h Bump copyright date to 2012. 2012-01-23 22:42:42 +01:00
lj_bcread.c Bump copyright date to 2012. 2012-01-23 22:42:42 +01:00
lj_bcwrite.c Replace divisions with simpler code. 2012-08-26 19:41:35 +02:00
lj_carith.c FFI: Always resolve metamethods for pointers to structs. 2012-09-08 21:03:40 +02:00
lj_carith.h Bump copyright date to 2012. 2012-01-23 22:42:42 +01:00
lj_ccall.c FFI: Don't keep CType * across call. Callback may reallocate table. 2012-08-12 01:16:49 +02:00
lj_ccall.h FFI: Fix alignment of C call structure. 2012-08-02 15:13:28 +02:00
lj_ccallback.c FFI: Fix stack-adjustment for __thiscall callbacks. 2012-11-07 18:04:58 +01:00
lj_ccallback.h Bump copyright date to 2012. 2012-01-23 22:42:42 +01:00
lj_cconv.c FFI: Change priority of table initializer variants for structs. 2012-11-15 00:26:34 +01:00
lj_cconv.h FFI: Add support for copy constructors. 2012-10-08 17:15:28 +02:00
lj_cdata.c Move a GC macro. 2012-10-02 09:57:49 +02:00
lj_cdata.h Avoid pesky compiler warnings about C++ keywords (eh?). 2012-07-03 13:19:32 +02:00
lj_char.c Rename character type handling from lj_ctype* to lj_char*. 2010-11-09 12:09:54 +01:00
lj_char.h Replace strtod() with builtin string to number conversion. 2012-08-25 23:02:29 +02:00
lj_clib.c FFI: Don't call FreeLibrary() on our own EXE/DLL. 2012-05-14 13:41:08 +02:00
lj_clib.h Bump copyright date to 2012. 2012-01-23 22:42:42 +01:00
lj_cparse.c FFI: Fix signedness of bool. 2012-11-06 17:04:21 +01:00
lj_cparse.h FFI: Add support for parameterized C types. 2012-06-14 19:54:07 +02:00
lj_crecord.c FFI: Fix recording of bool call result check on x86/x64. 2012-11-06 17:05:37 +01:00
lj_crecord.h FFI: Compile ffi.gc(). 2012-10-10 18:56:16 +02:00
lj_ctype.c FFI: Add debug define to check for unanchored CTypes. 2012-11-26 11:01:59 +01:00
lj_ctype.h ARM: Add hard-float ABI support to the FFI (interpreter). 2012-07-30 19:00:52 +02:00
lj_debug.c From Lua 5.2: Add luaL_traceback(). 2012-10-01 20:45:30 +02:00
lj_debug.h From Lua 5.2: debug.getinfo(..., "u") returns nparams and isvararg. 2012-09-20 15:50:20 +02:00
lj_def.h Add missing declarations for MSVC intrinsics. 2012-07-09 15:54:25 +02:00
lj_dispatch.c Add more assertions for stack consistency during recording. 2012-09-12 11:02:19 +02:00
lj_dispatch.h Bump copyright date to 2012. 2012-01-23 22:42:42 +01:00
lj_emit_arm.h ARM: Add VFP and hard-float ABI variants to JIT compiler. 2012-08-09 13:13:11 +02:00
lj_emit_mips.h Fix PHI stack slot syncing. 2012-05-07 23:16:19 +02:00
lj_emit_ppc.h Fix PHI stack slot syncing. 2012-05-07 23:16:19 +02:00
lj_emit_x86.h Fix PHI stack slot syncing. 2012-05-07 23:16:19 +02:00
lj_err.c Don't clear frame for out-of-memory error. 2012-11-14 21:54:27 +01:00
lj_err.h Bump copyright date to 2012. 2012-01-23 22:42:42 +01:00
lj_errmsg.h From Lua 5.2: Remove error for ambiguous function call syntax. 2012-09-28 18:12:43 +02:00
lj_ff.h Bump copyright date to 2012. 2012-01-23 22:42:42 +01:00
lj_ffrecord.c From Lua 5.2: Add math.log(x, base). 2012-10-07 15:47:11 +02:00
lj_ffrecord.h Bump copyright date to 2012. 2012-01-23 22:42:42 +01:00
lj_frame.h ARM: Add VFP and hard-float ABI variants to interpreter. 2012-07-30 18:59:13 +02:00
lj_func.c Turn loads from immutable upvalues into constants. 2012-07-20 18:54:52 +02:00
lj_func.h Bump copyright date to 2012. 2012-01-23 22:42:42 +01:00
lj_gc.c Move a GC macro. 2012-10-02 09:57:49 +02:00
lj_gc.h Move a GC macro. 2012-10-02 09:57:49 +02:00
lj_gdbjit.c MIPS: Add support for GDB JIT API. 2012-04-01 20:01:13 +02:00
lj_gdbjit.h Bump copyright date to 2012. 2012-01-23 22:42:42 +01:00
lj_ir.c Add table of IR type sizes. 2012-08-27 20:27:01 +02:00
lj_ir.h Add table of IR type sizes. 2012-08-27 20:27:01 +02:00
lj_ircall.h Replace strtod() with builtin string to number conversion. 2012-08-25 23:02:29 +02:00
lj_iropt.h Add allocation sinking and store sinking optimization. 2012-07-02 23:47:12 +02:00
lj_jit.h FFI: Compile ffi.sizeof(), ffi.alignof() and ffi.offsetof(). 2012-10-10 18:16:18 +02:00
lj_lex.c Move load/dump functions to lj_load.c. Add load modes. 2012-09-21 16:32:24 +02:00
lj_lex.h Fix detection of immutable upvalues. 2012-10-21 13:51:12 +02:00
lj_lib.c Replace strtod() with builtin string to number conversion. 2012-08-25 23:02:29 +02:00
lj_lib.h Bump copyright date to 2012. 2012-01-23 22:42:42 +01:00
lj_load.c Move load/dump functions to lj_load.c. Add load modes. 2012-09-21 16:32:24 +02:00
lj_mcode.c CONSOLE: Fix PS3 build. 2012-06-10 02:01:25 +02:00
lj_mcode.h Bump copyright date to 2012. 2012-01-23 22:42:42 +01:00
lj_meta.c From Lua 5.2: Allow mixed metamethods for ordered comparisons. 2012-09-28 19:30:08 +02:00
lj_meta.h Bump copyright date to 2012. 2012-01-23 22:42:42 +01:00
lj_obj.c Bump copyright date to 2012. 2012-01-23 22:42:42 +01:00
lj_obj.h Use 0/1 macro for Lua 5.2 compatibility. 2012-09-12 11:20:47 +02:00
lj_opt_dce.c Bump copyright date to 2012. 2012-01-23 22:42:42 +01:00
lj_opt_fold.c Fix assertion. 2012-10-11 21:40:46 +02:00
lj_opt_loop.c Remove stray comment. 2012-05-09 17:53:05 +02:00
lj_opt_mem.c FFI: Detect type punning through unions. 2012-08-27 20:53:37 +02:00
lj_opt_narrow.c Replace strtod() with builtin string to number conversion. 2012-08-25 23:02:29 +02:00
lj_opt_sink.c Need to handle TBAR in SINK pass. 2012-07-29 21:37:31 +02:00
lj_opt_split.c Fold KPTR + offset in SPLIT pass. 2012-09-27 14:39:16 +02:00
lj_parse.c Add missing GC steps for template table creation. 2012-11-16 13:20:12 +01:00
lj_parse.h Bump copyright date to 2012. 2012-01-23 22:42:42 +01:00
lj_record.c Don't propagate implicitly widened number to index metamethods. 2012-11-06 16:58:52 +01:00
lj_record.h Turn loads from immutable upvalues into constants. 2012-07-20 18:54:52 +02:00
lj_snap.c Preserve snapshot #0 PC for all traces (potential gcstep exit). 2012-09-01 00:58:00 +02:00
lj_snap.h Move snapshot replay for side traces to lj_snap.c. 2012-07-02 13:37:55 +02:00
lj_state.c Fix userdata __gc separations at state close. 2012-06-10 23:40:53 +02:00
lj_state.h Bump copyright date to 2012. 2012-01-23 22:42:42 +01:00
lj_str.c Workaround for broken Android sprintf("%g", -0.0). 2012-10-15 01:31:56 +02:00
lj_str.h Replace strtod() with builtin string to number conversion. 2012-08-25 23:02:29 +02:00
lj_strscan.c Fix builtin string to number conversion for INT_MIN. 2012-10-24 23:46:21 +02:00
lj_strscan.h Replace strtod() with builtin string to number conversion. 2012-08-25 23:02:29 +02:00
lj_tab.c Fix despecialization of ITERN when already running. 2012-09-12 16:58:47 +02:00
lj_tab.h Bump copyright date to 2012. 2012-01-23 22:42:42 +01:00
lj_target_arm.h ARM: Add VFP and hard-float ABI variants to JIT compiler. 2012-08-09 13:13:11 +02:00
lj_target_mips.h MIPS: Compile math.sqrt() to sqrt.d instruction. 2012-10-15 21:28:10 +02:00
lj_target_ppc.h PPC: Compile math.sqrt() to fsqrt instruction. 2012-10-15 21:23:20 +02:00
lj_target_x86.h FFI: Fix recording of bool call result check on x86/x64. 2012-11-06 17:05:37 +01:00
lj_target.h Add allocation sinking and store sinking optimization. 2012-07-02 23:47:12 +02:00
lj_trace.c Add allocation sinking and store sinking optimization. 2012-07-02 23:47:12 +02:00
lj_trace.h Bump copyright date to 2012. 2012-01-23 22:42:42 +01:00
lj_traceerr.h Bump copyright date to 2012. 2012-01-23 22:42:42 +01:00
lj_udata.c Bump copyright date to 2012. 2012-01-23 22:42:42 +01:00
lj_udata.h Bump copyright date to 2012. 2012-01-23 22:42:42 +01:00
lj_vm.h ARM: Drop hard-fp variants of floor/ceil/trunc. 2012-10-15 16:53:03 +02:00
lj_vmevent.c Replace some trivial uses of fprintf() with fputs. 2012-08-26 20:13:23 +02:00
lj_vmevent.h Bump copyright date to 2012. 2012-01-23 22:42:42 +01:00
lj_vmmath.c ARM/PPC: Remove assembler code for lj_vm_foldarith(). 2012-06-12 17:25:52 +02:00
lj.supp Add more comparison variants to Valgrind suppressions file. 2012-04-26 23:47:00 +02:00
ljamalg.c Move load/dump functions to lj_load.c. Add load modes. 2012-09-21 16:32:24 +02:00
lua.h Move load/dump functions to lj_load.c. Add load modes. 2012-09-21 16:32:24 +02:00
lua.hpp RELEASE LuaJIT-2.0.0-beta2 2009-12-08 19:49:20 +01:00
luaconf.h RELEASE LuaJIT-2.0.0-rc1 2012-10-31 18:24:10 +01:00
luajit.c From Lua 5.2: Add luaL_traceback(). 2012-10-01 20:45:30 +02:00
luajit.h RELEASE LuaJIT-2.0.0-rc1 2012-10-31 18:24:10 +01:00
lualib.h Bump copyright date to 2012. 2012-01-23 22:42:42 +01:00
Makefile Clarify comments in Makefile on -DLUAJIT_ENABLE_LUA52COMPAT. 2012-10-04 13:55:34 +02:00
Makefile.dep From Lua 5.2: Add format options to io.lines(). 2012-10-12 14:11:41 +02:00
msvcbuild.bat Finally fix target detection for msvcbuild.bat. 2012-07-07 20:36:35 +02:00
vm_arm.dasc ARM: Fix ordered comparisons for number <=> non-number. 2012-11-07 18:05:23 +01:00
vm_mips.dasc Don't use stack unwinding for lua_yield(). 2012-10-09 13:19:57 +02:00
vm_ppc.dasc Don't use stack unwinding for lua_yield(). 2012-10-09 13:19:57 +02:00
vm_ppcspe.dasc Don't use stack unwinding for lua_yield(). 2012-10-09 13:19:57 +02:00
vm_x86.dasc Don't use stack unwinding for lua_yield(). 2012-10-09 13:19:57 +02:00