-
-
Notifications
You must be signed in to change notification settings - Fork 271
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 CodeGen
updated
16 files
+6 −4 | build_cmake/CMakeLists.txt | |
+3 −0 | include/Jitter.h | |
+4 −2 | include/Jitter_CodeGen_AArch32.h | |
+5 −0 | include/Jitter_CodeGen_AArch64.h | |
+4 −0 | include/Jitter_CodeGen_Wasm.h | |
+3 −0 | include/Jitter_CodeGen_x86.h | |
+2 −0 | include/Jitter_Statement.h | |
+60 −0 | src/Jitter.cpp | |
+1 −18 | src/Jitter_CodeGen_AArch32.cpp | |
+72 −13 | src/Jitter_CodeGen_AArch32_Md.cpp | |
+93 −19 | src/Jitter_CodeGen_AArch64_Md.cpp | |
+83 −9 | src/Jitter_CodeGen_Wasm_Md.cpp | |
+33 −0 | src/Jitter_CodeGen_x86_Md_Avx.cpp | |
+51 −1 | tests/MdMemAccessTest.cpp | |
+4 −2 | tests/MdMemAccessTest.h | |
+15 −5 | tests/Test.h |