-
Notifications
You must be signed in to change notification settings - Fork 0
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 asmjit
updated
22 files
+18 −14 | .github/workflows/build.yml | |
+1 −1 | CMakeLists.txt | |
+1 −1 | db/isa_x86.json | |
+11 −0 | src/asmjit/arm/a64emitter.h | |
+39 −11 | src/asmjit/arm/a64operand.h | |
+20 −14 | src/asmjit/core.h | |
+1 −1 | src/asmjit/core/api-config.h | |
+1 −1 | src/asmjit/core/cpuinfo.cpp | |
+3 −0 | src/asmjit/core/emitter.h | |
+15 −15 | src/asmjit/core/operand.h | |
+8 −2 | src/asmjit/core/radefs_p.h | |
+7 −6 | src/asmjit/core/ralocal.cpp | |
+2 −0 | src/asmjit/core/rapass_p.h | |
+76 −18 | src/asmjit/core/string.cpp | |
+3 −3 | src/asmjit/core/support.h | |
+86 −32 | src/asmjit/core/zonevector.cpp | |
+16 −1 | src/asmjit/core/zonevector.h | |
+32 −24 | src/asmjit/x86/x86assembler.cpp | |
+3 −1 | src/asmjit/x86/x86emitter.h | |
+3 −0 | src/asmjit/x86/x86operand.h | |
+48 −0 | src/asmjit/x86/x86rapass.cpp | |
+55 −0 | test/asmjit_test_compiler_x86.cpp |