Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump deps/asmjit from 118ae6c to 7bed2b0 #974

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion deps/asmjit
Submodule asmjit updated 75 files
+42 −0 .github/ISSUE_TEMPLATE/01_bug_report.yml
+18 −0 .github/ISSUE_TEMPLATE/02_feature_request.yml
+18 −0 .github/ISSUE_TEMPLATE/03_help_question.yml
+11 −0 .github/ISSUE_TEMPLATE/99_other_issues.yml
+10 −33 .github/workflows/build-config.json
+58 −41 .github/workflows/build.yml
+39 −61 CMakeLists.txt
+102 −0 CONTRIBUTING.md
+1 −1 LICENSE.md
+26 −22 README.md
+26 −0 db/LICENSE.md
+5 −0 db/README.md
+1 −2 db/aarch32.js
+1 −2 db/aarch64.js
+1 −1 db/base.js
+1 −1 db/exp.js
+1 −1 db/index.js
+108 −31 db/isa_aarch64.json
+7 −8 db/isa_x86.json
+3 −1 db/x86.js
+47 −13 src/asmjit/arm/a64assembler.cpp
+11 −0 src/asmjit/arm/a64emitter.h
+1 −1 src/asmjit/arm/a64formatter.cpp
+21 −8 src/asmjit/arm/a64func.cpp
+1 −1 src/asmjit/arm/a64func_p.h
+1 −1 src/asmjit/arm/a64globals.h
+7 −2 src/asmjit/arm/a64instapi.cpp
+2 −2 src/asmjit/arm/a64instdb.cpp
+61 −10 src/asmjit/arm/a64operand.h
+5 −3 src/asmjit/arm/a64rapass.cpp
+6 −0 src/asmjit/arm/armformatter.cpp
+12 −1 src/asmjit/arm/armoperand.h
+7 −0 src/asmjit/arm/armutils.h
+1 −1 src/asmjit/asmjit.h
+21 −15 src/asmjit/core.h
+1 −1 src/asmjit/core/api-config.h
+37 −7 src/asmjit/core/archcommons.h
+2 −0 src/asmjit/core/compiler.h
+25 −12 src/asmjit/core/cpuinfo.cpp
+10 −8 src/asmjit/core/cpuinfo.h
+3 −0 src/asmjit/core/emitter.h
+6 −0 src/asmjit/core/environment.h
+1 −1 src/asmjit/core/func.cpp
+2 −0 src/asmjit/core/func.h
+2 −1 src/asmjit/core/globals.cpp
+4 −0 src/asmjit/core/globals.h
+35 −19 src/asmjit/core/jitallocator.cpp
+83 −37 src/asmjit/core/operand.h
+10 −4 src/asmjit/core/radefs_p.h
+7 −6 src/asmjit/core/ralocal.cpp
+32 −11 src/asmjit/core/rapass.cpp
+2 −0 src/asmjit/core/rapass_p.h
+76 −18 src/asmjit/core/string.cpp
+3 −3 src/asmjit/core/support.h
+198 −19 src/asmjit/core/virtmem.cpp
+19 −2 src/asmjit/core/virtmem.h
+3 −1 src/asmjit/core/zonestack.h
+86 −32 src/asmjit/core/zonevector.cpp
+16 −1 src/asmjit/core/zonevector.h
+32 −24 src/asmjit/x86/x86assembler.cpp
+1 −1 src/asmjit/x86/x86compiler.h
+17 −15 src/asmjit/x86/x86emithelper.cpp
+5 −3 src/asmjit/x86/x86emitter.h
+4 −3 src/asmjit/x86/x86func.cpp
+12 −6 src/asmjit/x86/x86globals.h
+7 −0 src/asmjit/x86/x86instapi.cpp
+690 −693 src/asmjit/x86/x86instdb.cpp
+29 −2 src/asmjit/x86/x86operand.h
+48 −0 src/asmjit/x86/x86rapass.cpp
+5 −2 test/asmjit_test_assembler_a64.cpp
+772 −658 test/asmjit_test_compiler_x86.cpp
+175 −48 test/asmjit_test_emitters.cpp
+103 −0 test/asmjit_test_execute.cpp
+2 −2 test/asmjit_test_perf_a64.cpp
+1 −1 tools/tablegen.js
Loading