-
Notifications
You must be signed in to change notification settings - Fork 185
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule luajit
updated
39 files
+3 −1 | Makefile | |
+3 −1 | doc/ext_ffi_api.html | |
+6 −11 | dynasm/dasm_arm.h | |
+6 −11 | dynasm/dasm_arm64.h | |
+7 −0 | dynasm/dasm_arm64.lua | |
+6 −11 | dynasm/dasm_mips.h | |
+6 −11 | dynasm/dasm_ppc.h | |
+7 −12 | dynasm/dasm_x86.h | |
+4 −0 | src/Makefile | |
+6 −3 | src/host/buildvm_asm.c | |
+2 −1 | src/host/buildvm_lib.c | |
+4 −1 | src/lib_ffi.c | |
+2 −1 | src/lib_jit.c | |
+7 −0 | src/lj_arch.h | |
+9 −2 | src/lj_asm.c | |
+3 −4 | src/lj_asm_arm.h | |
+8 −9 | src/lj_asm_arm64.h | |
+5 −5 | src/lj_asm_mips.h | |
+4 −4 | src/lj_asm_ppc.h | |
+4 −4 | src/lj_asm_x86.h | |
+2 −1 | src/lj_bcwrite.c | |
+3 −3 | src/lj_ccallback.c | |
+10 −4 | src/lj_emit_arm64.h | |
+21 −5 | src/lj_err.c | |
+3 −0 | src/lj_jit.h | |
+14 −0 | src/lj_obj.h | |
+2 −2 | src/lj_opt_mem.c | |
+1 −0 | src/lj_parse.c | |
+8 −5 | src/lj_record.c | |
+6 −0 | src/lj_target_arm64.h | |
+23 −17 | src/lj_trace.c | |
+3 −3 | src/lj_vm.h | |
+15 −2 | src/vm_arm.dasc | |
+59 −18 | src/vm_arm64.dasc | |
+23 −4 | src/vm_mips.dasc | |
+23 −4 | src/vm_mips64.dasc | |
+20 −2 | src/vm_ppc.dasc | |
+12 −1 | src/vm_x64.dasc | |
+16 −1 | src/vm_x86.dasc |