├── .gitattributes ├── .gitignore ├── .relver ├── CMakeLists.txt ├── COPYRIGHT ├── Makefile ├── README ├── README.md ├── cmake └── modules │ ├── DetectArchitecture.c │ ├── DetectArchitecture.cmake │ ├── DetectFPUApi.cmake │ └── DetectFpuAbi.c ├── doc ├── bluequad-print.css ├── bluequad.css ├── contact.html ├── ext_buffer.html ├── ext_c_api.html ├── ext_ffi.html ├── ext_ffi_api.html ├── ext_ffi_semantics.html ├── ext_ffi_tutorial.html ├── ext_jit.html ├── ext_profiler.html ├── extensions.html ├── img │ └── contact.png ├── install.html ├── luajit.html └── running.html ├── dynasm ├── dasm_arm.h ├── dasm_arm.lua ├── dasm_arm64.h ├── dasm_arm64.lua ├── dasm_mips.h ├── dasm_mips.lua ├── dasm_mips64.lua ├── dasm_ppc.h ├── dasm_ppc.lua ├── dasm_proto.h ├── dasm_x64.lua ├── dasm_x86.h ├── dasm_x86.lua └── dynasm.lua ├── etc ├── luajit.1 └── luajit.pc └── src ├── .gitignore ├── CMakeLists.txt ├── Makefile ├── Makefile.dep ├── host ├── .gitignore ├── README ├── buildvm.c ├── buildvm.h ├── buildvm_asm.c ├── buildvm_fold.c ├── buildvm_lib.c ├── buildvm_libbc.h ├── buildvm_peobj.c ├── cmake │ ├── buildvm │ │ └── CMakeLists.txt │ └── minilua │ │ └── CMakeLists.txt ├── genlibbc.lua ├── genminilua.lua ├── genversion.lua └── minilua.c ├── jit ├── .gitignore ├── bc.lua ├── bcsave.lua ├── dis_arm.lua ├── dis_arm64.lua ├── dis_arm64be.lua ├── dis_mips.lua ├── dis_mips64.lua ├── dis_mips64el.lua ├── dis_mips64r6.lua ├── dis_mips64r6el.lua ├── dis_mipsel.lua ├── dis_ppc.lua ├── dis_x64.lua ├── dis_x86.lua ├── dump.lua ├── p.lua ├── v.lua └── zone.lua ├── lauxlib.h ├── lib_aux.c ├── lib_base.c ├── lib_bit.c ├── lib_buffer.c ├── lib_debug.c ├── lib_ffi.c ├── lib_init.c ├── lib_io.c ├── lib_jit.c ├── lib_math.c ├── lib_os.c ├── lib_package.c ├── lib_string.c ├── lib_table.c ├── lj_alloc.c ├── lj_alloc.h ├── lj_api.c ├── lj_arch.h ├── lj_asm.c ├── lj_asm.h ├── lj_asm_arm.h ├── lj_asm_arm64.h ├── lj_asm_mips.h ├── lj_asm_ppc.h ├── lj_asm_x86.h ├── lj_assert.c ├── lj_bc.c ├── lj_bc.h ├── lj_bcdump.h ├── lj_bcread.c ├── lj_bcwrite.c ├── lj_buf.c ├── lj_buf.h ├── lj_carith.c ├── lj_carith.h ├── lj_ccall.c ├── lj_ccall.h ├── lj_ccallback.c ├── lj_ccallback.h ├── lj_cconv.c ├── lj_cconv.h ├── lj_cdata.c ├── lj_cdata.h ├── lj_char.c ├── lj_char.h ├── lj_clib.c ├── lj_clib.h ├── lj_cparse.c ├── lj_cparse.h ├── lj_crecord.c ├── lj_crecord.h ├── lj_ctype.c ├── lj_ctype.h ├── lj_debug.c ├── lj_debug.h ├── lj_def.h ├── lj_dispatch.c ├── lj_dispatch.h ├── lj_emit_arm.h ├── lj_emit_arm64.h ├── lj_emit_mips.h ├── lj_emit_ppc.h ├── lj_emit_x86.h ├── lj_err.c ├── lj_err.h ├── lj_errmsg.h ├── lj_ff.h ├── lj_ffrecord.c ├── lj_ffrecord.h ├── lj_fopen.c ├── lj_fopen.h ├── lj_frame.h ├── lj_func.c ├── lj_func.h ├── lj_gc.c ├── lj_gc.h ├── lj_gdbjit.c ├── lj_gdbjit.h ├── lj_ir.c ├── lj_ir.h ├── lj_ircall.h ├── lj_iropt.h ├── lj_jit.h ├── lj_lex.c ├── lj_lex.h ├── lj_lib.c ├── lj_lib.h ├── lj_load.c ├── lj_mcode.c ├── lj_mcode.h ├── lj_meta.c ├── lj_meta.h ├── lj_obj.c ├── lj_obj.h ├── lj_opt_dce.c ├── lj_opt_fold.c ├── lj_opt_loop.c ├── lj_opt_mem.c ├── lj_opt_narrow.c ├── lj_opt_sink.c ├── lj_opt_split.c ├── lj_parse.c ├── lj_parse.h ├── lj_prng.c ├── lj_prng.h ├── lj_profile.c ├── lj_profile.h ├── lj_record.c ├── lj_record.h ├── lj_serialize.c ├── lj_serialize.h ├── lj_snap.c ├── lj_snap.h ├── lj_state.c ├── lj_state.h ├── lj_str.c ├── lj_str.h ├── lj_strfmt.c ├── lj_strfmt.h ├── lj_strfmt_num.c ├── lj_strscan.c ├── lj_strscan.h ├── lj_tab.c ├── lj_tab.h ├── lj_target.h ├── lj_target_arm.h ├── lj_target_arm64.h ├── lj_target_mips.h ├── lj_target_ppc.h ├── lj_target_x86.h ├── lj_trace.c ├── lj_trace.h ├── lj_traceerr.h ├── lj_udata.c ├── lj_udata.h ├── lj_vm.h ├── lj_vmevent.c ├── lj_vmevent.h ├── lj_vmmath.c ├── ljamalg.c ├── lua.h ├── lua.hpp ├── luaconf.h ├── luajit.c ├── luajit_rolling.h ├── lualib.h ├── msvcbuild.bat ├── msvcbuild_utf8open.bat ├── nxbuild.bat ├── ps4build.bat ├── ps5build.bat ├── psvitabuild.bat ├── vm_arm.dasc ├── vm_arm64.dasc ├── vm_mips.dasc ├── vm_mips64.dasc ├── vm_ppc.dasc ├── vm_x64.dasc ├── vm_x86.dasc ├── xb1build.bat └── xedkbuild.bat /.gitattributes: -------------------------------------------------------------------------------- 1 | /.relver export-subst 2 | *.bat text eol=crlf 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/.gitignore -------------------------------------------------------------------------------- /.relver: -------------------------------------------------------------------------------- 1 | 1763468052 2 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/COPYRIGHT -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/README -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/README.md -------------------------------------------------------------------------------- /cmake/modules/DetectArchitecture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/cmake/modules/DetectArchitecture.c -------------------------------------------------------------------------------- /cmake/modules/DetectArchitecture.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/cmake/modules/DetectArchitecture.cmake -------------------------------------------------------------------------------- /cmake/modules/DetectFPUApi.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/cmake/modules/DetectFPUApi.cmake -------------------------------------------------------------------------------- /cmake/modules/DetectFpuAbi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/cmake/modules/DetectFpuAbi.c -------------------------------------------------------------------------------- /doc/bluequad-print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/doc/bluequad-print.css -------------------------------------------------------------------------------- /doc/bluequad.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/doc/bluequad.css -------------------------------------------------------------------------------- /doc/contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/doc/contact.html -------------------------------------------------------------------------------- /doc/ext_buffer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/doc/ext_buffer.html -------------------------------------------------------------------------------- /doc/ext_c_api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/doc/ext_c_api.html -------------------------------------------------------------------------------- /doc/ext_ffi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/doc/ext_ffi.html -------------------------------------------------------------------------------- /doc/ext_ffi_api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/doc/ext_ffi_api.html -------------------------------------------------------------------------------- /doc/ext_ffi_semantics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/doc/ext_ffi_semantics.html -------------------------------------------------------------------------------- /doc/ext_ffi_tutorial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/doc/ext_ffi_tutorial.html -------------------------------------------------------------------------------- /doc/ext_jit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/doc/ext_jit.html -------------------------------------------------------------------------------- /doc/ext_profiler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/doc/ext_profiler.html -------------------------------------------------------------------------------- /doc/extensions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/doc/extensions.html -------------------------------------------------------------------------------- /doc/img/contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/doc/img/contact.png -------------------------------------------------------------------------------- /doc/install.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/doc/install.html -------------------------------------------------------------------------------- /doc/luajit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/doc/luajit.html -------------------------------------------------------------------------------- /doc/running.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/doc/running.html -------------------------------------------------------------------------------- /dynasm/dasm_arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/dynasm/dasm_arm.h -------------------------------------------------------------------------------- /dynasm/dasm_arm.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/dynasm/dasm_arm.lua -------------------------------------------------------------------------------- /dynasm/dasm_arm64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/dynasm/dasm_arm64.h -------------------------------------------------------------------------------- /dynasm/dasm_arm64.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/dynasm/dasm_arm64.lua -------------------------------------------------------------------------------- /dynasm/dasm_mips.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/dynasm/dasm_mips.h -------------------------------------------------------------------------------- /dynasm/dasm_mips.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/dynasm/dasm_mips.lua -------------------------------------------------------------------------------- /dynasm/dasm_mips64.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/dynasm/dasm_mips64.lua -------------------------------------------------------------------------------- /dynasm/dasm_ppc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/dynasm/dasm_ppc.h -------------------------------------------------------------------------------- /dynasm/dasm_ppc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/dynasm/dasm_ppc.lua -------------------------------------------------------------------------------- /dynasm/dasm_proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/dynasm/dasm_proto.h -------------------------------------------------------------------------------- /dynasm/dasm_x64.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/dynasm/dasm_x64.lua -------------------------------------------------------------------------------- /dynasm/dasm_x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/dynasm/dasm_x86.h -------------------------------------------------------------------------------- /dynasm/dasm_x86.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/dynasm/dasm_x86.lua -------------------------------------------------------------------------------- /dynasm/dynasm.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/dynasm/dynasm.lua -------------------------------------------------------------------------------- /etc/luajit.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/etc/luajit.1 -------------------------------------------------------------------------------- /etc/luajit.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/etc/luajit.pc -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/.gitignore -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/Makefile.dep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/Makefile.dep -------------------------------------------------------------------------------- /src/host/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/host/.gitignore -------------------------------------------------------------------------------- /src/host/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/host/README -------------------------------------------------------------------------------- /src/host/buildvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/host/buildvm.c -------------------------------------------------------------------------------- /src/host/buildvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/host/buildvm.h -------------------------------------------------------------------------------- /src/host/buildvm_asm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/host/buildvm_asm.c -------------------------------------------------------------------------------- /src/host/buildvm_fold.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/host/buildvm_fold.c -------------------------------------------------------------------------------- /src/host/buildvm_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/host/buildvm_lib.c -------------------------------------------------------------------------------- /src/host/buildvm_libbc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/host/buildvm_libbc.h -------------------------------------------------------------------------------- /src/host/buildvm_peobj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/host/buildvm_peobj.c -------------------------------------------------------------------------------- /src/host/cmake/buildvm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/host/cmake/buildvm/CMakeLists.txt -------------------------------------------------------------------------------- /src/host/cmake/minilua/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/host/cmake/minilua/CMakeLists.txt -------------------------------------------------------------------------------- /src/host/genlibbc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/host/genlibbc.lua -------------------------------------------------------------------------------- /src/host/genminilua.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/host/genminilua.lua -------------------------------------------------------------------------------- /src/host/genversion.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/host/genversion.lua -------------------------------------------------------------------------------- /src/host/minilua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/host/minilua.c -------------------------------------------------------------------------------- /src/jit/.gitignore: -------------------------------------------------------------------------------- 1 | vmdef.lua 2 | -------------------------------------------------------------------------------- /src/jit/bc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/jit/bc.lua -------------------------------------------------------------------------------- /src/jit/bcsave.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/jit/bcsave.lua -------------------------------------------------------------------------------- /src/jit/dis_arm.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/jit/dis_arm.lua -------------------------------------------------------------------------------- /src/jit/dis_arm64.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/jit/dis_arm64.lua -------------------------------------------------------------------------------- /src/jit/dis_arm64be.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/jit/dis_arm64be.lua -------------------------------------------------------------------------------- /src/jit/dis_mips.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/jit/dis_mips.lua -------------------------------------------------------------------------------- /src/jit/dis_mips64.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/jit/dis_mips64.lua -------------------------------------------------------------------------------- /src/jit/dis_mips64el.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/jit/dis_mips64el.lua -------------------------------------------------------------------------------- /src/jit/dis_mips64r6.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/jit/dis_mips64r6.lua -------------------------------------------------------------------------------- /src/jit/dis_mips64r6el.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/jit/dis_mips64r6el.lua -------------------------------------------------------------------------------- /src/jit/dis_mipsel.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/jit/dis_mipsel.lua -------------------------------------------------------------------------------- /src/jit/dis_ppc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/jit/dis_ppc.lua -------------------------------------------------------------------------------- /src/jit/dis_x64.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/jit/dis_x64.lua -------------------------------------------------------------------------------- /src/jit/dis_x86.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/jit/dis_x86.lua -------------------------------------------------------------------------------- /src/jit/dump.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/jit/dump.lua -------------------------------------------------------------------------------- /src/jit/p.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/jit/p.lua -------------------------------------------------------------------------------- /src/jit/v.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/jit/v.lua -------------------------------------------------------------------------------- /src/jit/zone.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/jit/zone.lua -------------------------------------------------------------------------------- /src/lauxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lauxlib.h -------------------------------------------------------------------------------- /src/lib_aux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lib_aux.c -------------------------------------------------------------------------------- /src/lib_base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lib_base.c -------------------------------------------------------------------------------- /src/lib_bit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lib_bit.c -------------------------------------------------------------------------------- /src/lib_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lib_buffer.c -------------------------------------------------------------------------------- /src/lib_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lib_debug.c -------------------------------------------------------------------------------- /src/lib_ffi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lib_ffi.c -------------------------------------------------------------------------------- /src/lib_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lib_init.c -------------------------------------------------------------------------------- /src/lib_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lib_io.c -------------------------------------------------------------------------------- /src/lib_jit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lib_jit.c -------------------------------------------------------------------------------- /src/lib_math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lib_math.c -------------------------------------------------------------------------------- /src/lib_os.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lib_os.c -------------------------------------------------------------------------------- /src/lib_package.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lib_package.c -------------------------------------------------------------------------------- /src/lib_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lib_string.c -------------------------------------------------------------------------------- /src/lib_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lib_table.c -------------------------------------------------------------------------------- /src/lj_alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_alloc.c -------------------------------------------------------------------------------- /src/lj_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_alloc.h -------------------------------------------------------------------------------- /src/lj_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_api.c -------------------------------------------------------------------------------- /src/lj_arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_arch.h -------------------------------------------------------------------------------- /src/lj_asm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_asm.c -------------------------------------------------------------------------------- /src/lj_asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_asm.h -------------------------------------------------------------------------------- /src/lj_asm_arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_asm_arm.h -------------------------------------------------------------------------------- /src/lj_asm_arm64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_asm_arm64.h -------------------------------------------------------------------------------- /src/lj_asm_mips.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_asm_mips.h -------------------------------------------------------------------------------- /src/lj_asm_ppc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_asm_ppc.h -------------------------------------------------------------------------------- /src/lj_asm_x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_asm_x86.h -------------------------------------------------------------------------------- /src/lj_assert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_assert.c -------------------------------------------------------------------------------- /src/lj_bc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_bc.c -------------------------------------------------------------------------------- /src/lj_bc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_bc.h -------------------------------------------------------------------------------- /src/lj_bcdump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_bcdump.h -------------------------------------------------------------------------------- /src/lj_bcread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_bcread.c -------------------------------------------------------------------------------- /src/lj_bcwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_bcwrite.c -------------------------------------------------------------------------------- /src/lj_buf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_buf.c -------------------------------------------------------------------------------- /src/lj_buf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_buf.h -------------------------------------------------------------------------------- /src/lj_carith.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_carith.c -------------------------------------------------------------------------------- /src/lj_carith.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_carith.h -------------------------------------------------------------------------------- /src/lj_ccall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_ccall.c -------------------------------------------------------------------------------- /src/lj_ccall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_ccall.h -------------------------------------------------------------------------------- /src/lj_ccallback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_ccallback.c -------------------------------------------------------------------------------- /src/lj_ccallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_ccallback.h -------------------------------------------------------------------------------- /src/lj_cconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_cconv.c -------------------------------------------------------------------------------- /src/lj_cconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_cconv.h -------------------------------------------------------------------------------- /src/lj_cdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_cdata.c -------------------------------------------------------------------------------- /src/lj_cdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_cdata.h -------------------------------------------------------------------------------- /src/lj_char.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_char.c -------------------------------------------------------------------------------- /src/lj_char.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_char.h -------------------------------------------------------------------------------- /src/lj_clib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_clib.c -------------------------------------------------------------------------------- /src/lj_clib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_clib.h -------------------------------------------------------------------------------- /src/lj_cparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_cparse.c -------------------------------------------------------------------------------- /src/lj_cparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_cparse.h -------------------------------------------------------------------------------- /src/lj_crecord.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_crecord.c -------------------------------------------------------------------------------- /src/lj_crecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_crecord.h -------------------------------------------------------------------------------- /src/lj_ctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_ctype.c -------------------------------------------------------------------------------- /src/lj_ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_ctype.h -------------------------------------------------------------------------------- /src/lj_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_debug.c -------------------------------------------------------------------------------- /src/lj_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_debug.h -------------------------------------------------------------------------------- /src/lj_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_def.h -------------------------------------------------------------------------------- /src/lj_dispatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_dispatch.c -------------------------------------------------------------------------------- /src/lj_dispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_dispatch.h -------------------------------------------------------------------------------- /src/lj_emit_arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_emit_arm.h -------------------------------------------------------------------------------- /src/lj_emit_arm64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_emit_arm64.h -------------------------------------------------------------------------------- /src/lj_emit_mips.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_emit_mips.h -------------------------------------------------------------------------------- /src/lj_emit_ppc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_emit_ppc.h -------------------------------------------------------------------------------- /src/lj_emit_x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_emit_x86.h -------------------------------------------------------------------------------- /src/lj_err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_err.c -------------------------------------------------------------------------------- /src/lj_err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_err.h -------------------------------------------------------------------------------- /src/lj_errmsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_errmsg.h -------------------------------------------------------------------------------- /src/lj_ff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_ff.h -------------------------------------------------------------------------------- /src/lj_ffrecord.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_ffrecord.c -------------------------------------------------------------------------------- /src/lj_ffrecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_ffrecord.h -------------------------------------------------------------------------------- /src/lj_fopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_fopen.c -------------------------------------------------------------------------------- /src/lj_fopen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_fopen.h -------------------------------------------------------------------------------- /src/lj_frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_frame.h -------------------------------------------------------------------------------- /src/lj_func.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_func.c -------------------------------------------------------------------------------- /src/lj_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_func.h -------------------------------------------------------------------------------- /src/lj_gc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_gc.c -------------------------------------------------------------------------------- /src/lj_gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_gc.h -------------------------------------------------------------------------------- /src/lj_gdbjit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_gdbjit.c -------------------------------------------------------------------------------- /src/lj_gdbjit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_gdbjit.h -------------------------------------------------------------------------------- /src/lj_ir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_ir.c -------------------------------------------------------------------------------- /src/lj_ir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_ir.h -------------------------------------------------------------------------------- /src/lj_ircall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_ircall.h -------------------------------------------------------------------------------- /src/lj_iropt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_iropt.h -------------------------------------------------------------------------------- /src/lj_jit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_jit.h -------------------------------------------------------------------------------- /src/lj_lex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_lex.c -------------------------------------------------------------------------------- /src/lj_lex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_lex.h -------------------------------------------------------------------------------- /src/lj_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_lib.c -------------------------------------------------------------------------------- /src/lj_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_lib.h -------------------------------------------------------------------------------- /src/lj_load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_load.c -------------------------------------------------------------------------------- /src/lj_mcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_mcode.c -------------------------------------------------------------------------------- /src/lj_mcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_mcode.h -------------------------------------------------------------------------------- /src/lj_meta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_meta.c -------------------------------------------------------------------------------- /src/lj_meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_meta.h -------------------------------------------------------------------------------- /src/lj_obj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_obj.c -------------------------------------------------------------------------------- /src/lj_obj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_obj.h -------------------------------------------------------------------------------- /src/lj_opt_dce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_opt_dce.c -------------------------------------------------------------------------------- /src/lj_opt_fold.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_opt_fold.c -------------------------------------------------------------------------------- /src/lj_opt_loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_opt_loop.c -------------------------------------------------------------------------------- /src/lj_opt_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_opt_mem.c -------------------------------------------------------------------------------- /src/lj_opt_narrow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_opt_narrow.c -------------------------------------------------------------------------------- /src/lj_opt_sink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_opt_sink.c -------------------------------------------------------------------------------- /src/lj_opt_split.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_opt_split.c -------------------------------------------------------------------------------- /src/lj_parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_parse.c -------------------------------------------------------------------------------- /src/lj_parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_parse.h -------------------------------------------------------------------------------- /src/lj_prng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_prng.c -------------------------------------------------------------------------------- /src/lj_prng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_prng.h -------------------------------------------------------------------------------- /src/lj_profile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_profile.c -------------------------------------------------------------------------------- /src/lj_profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_profile.h -------------------------------------------------------------------------------- /src/lj_record.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_record.c -------------------------------------------------------------------------------- /src/lj_record.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_record.h -------------------------------------------------------------------------------- /src/lj_serialize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_serialize.c -------------------------------------------------------------------------------- /src/lj_serialize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_serialize.h -------------------------------------------------------------------------------- /src/lj_snap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_snap.c -------------------------------------------------------------------------------- /src/lj_snap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_snap.h -------------------------------------------------------------------------------- /src/lj_state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_state.c -------------------------------------------------------------------------------- /src/lj_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_state.h -------------------------------------------------------------------------------- /src/lj_str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_str.c -------------------------------------------------------------------------------- /src/lj_str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_str.h -------------------------------------------------------------------------------- /src/lj_strfmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_strfmt.c -------------------------------------------------------------------------------- /src/lj_strfmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_strfmt.h -------------------------------------------------------------------------------- /src/lj_strfmt_num.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_strfmt_num.c -------------------------------------------------------------------------------- /src/lj_strscan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_strscan.c -------------------------------------------------------------------------------- /src/lj_strscan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_strscan.h -------------------------------------------------------------------------------- /src/lj_tab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_tab.c -------------------------------------------------------------------------------- /src/lj_tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_tab.h -------------------------------------------------------------------------------- /src/lj_target.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_target.h -------------------------------------------------------------------------------- /src/lj_target_arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_target_arm.h -------------------------------------------------------------------------------- /src/lj_target_arm64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_target_arm64.h -------------------------------------------------------------------------------- /src/lj_target_mips.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_target_mips.h -------------------------------------------------------------------------------- /src/lj_target_ppc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_target_ppc.h -------------------------------------------------------------------------------- /src/lj_target_x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_target_x86.h -------------------------------------------------------------------------------- /src/lj_trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_trace.c -------------------------------------------------------------------------------- /src/lj_trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_trace.h -------------------------------------------------------------------------------- /src/lj_traceerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_traceerr.h -------------------------------------------------------------------------------- /src/lj_udata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_udata.c -------------------------------------------------------------------------------- /src/lj_udata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_udata.h -------------------------------------------------------------------------------- /src/lj_vm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_vm.h -------------------------------------------------------------------------------- /src/lj_vmevent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_vmevent.c -------------------------------------------------------------------------------- /src/lj_vmevent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_vmevent.h -------------------------------------------------------------------------------- /src/lj_vmmath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lj_vmmath.c -------------------------------------------------------------------------------- /src/ljamalg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/ljamalg.c -------------------------------------------------------------------------------- /src/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lua.h -------------------------------------------------------------------------------- /src/lua.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lua.hpp -------------------------------------------------------------------------------- /src/luaconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/luaconf.h -------------------------------------------------------------------------------- /src/luajit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/luajit.c -------------------------------------------------------------------------------- /src/luajit_rolling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/luajit_rolling.h -------------------------------------------------------------------------------- /src/lualib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/lualib.h -------------------------------------------------------------------------------- /src/msvcbuild.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/msvcbuild.bat -------------------------------------------------------------------------------- /src/msvcbuild_utf8open.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/msvcbuild_utf8open.bat -------------------------------------------------------------------------------- /src/nxbuild.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/nxbuild.bat -------------------------------------------------------------------------------- /src/ps4build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/ps4build.bat -------------------------------------------------------------------------------- /src/ps5build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/ps5build.bat -------------------------------------------------------------------------------- /src/psvitabuild.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/psvitabuild.bat -------------------------------------------------------------------------------- /src/vm_arm.dasc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/vm_arm.dasc -------------------------------------------------------------------------------- /src/vm_arm64.dasc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/vm_arm64.dasc -------------------------------------------------------------------------------- /src/vm_mips.dasc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/vm_mips.dasc -------------------------------------------------------------------------------- /src/vm_mips64.dasc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/vm_mips64.dasc -------------------------------------------------------------------------------- /src/vm_ppc.dasc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/vm_ppc.dasc -------------------------------------------------------------------------------- /src/vm_x64.dasc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/vm_x64.dasc -------------------------------------------------------------------------------- /src/vm_x86.dasc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/vm_x86.dasc -------------------------------------------------------------------------------- /src/xb1build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/xb1build.bat -------------------------------------------------------------------------------- /src/xedkbuild.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WohlSoft/LuaJIT/HEAD/src/xedkbuild.bat --------------------------------------------------------------------------------