-
-
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
21 files
+4 −4 | build_android/build.gradle | |
+1 −1 | build_android/gradle/wrapper/gradle-wrapper.properties | |
+1 −1 | build_android/src/main/AndroidManifest.xml | |
+1 −0 | include/AArch32Assembler.h | |
+1 −0 | include/AArch64Assembler.h | |
+7 −2 | include/Jitter.h | |
+1 −0 | include/Jitter_CodeGen_AArch32.h | |
+1 −0 | include/Jitter_CodeGen_AArch64.h | |
+7 −0 | include/Jitter_CodeGen_x86.h | |
+2 −0 | include/Jitter_Statement.h | |
+10 −0 | src/AArch32Assembler.cpp | |
+10 −0 | src/AArch64Assembler.cpp | |
+78 −2 | src/Jitter.cpp | |
+26 −3 | src/Jitter_CodeGen_AArch32_Md.cpp | |
+18 −0 | src/Jitter_CodeGen_AArch64_Md.cpp | |
+1 −0 | src/Jitter_CodeGen_x86.cpp | |
+11 −1 | src/Jitter_CodeGen_x86_32.cpp | |
+97 −0 | src/Jitter_CodeGen_x86_Md_Avx.cpp | |
+50 −0 | src/Jitter_Optimize.cpp | |
+21 −0 | tests/MdManipTest.cpp | |
+4 −0 | tests/MdManipTest.h |