Skip to content

Commit

Permalink
asmjit submodule update (pytorch#364)
Browse files Browse the repository at this point in the history
Summary:
Includes fix for asmjit/asmjit#281
Pull Request resolved: pytorch#364

Test Plan: CI

Reviewed By: jianyuh

Differential Revision: D21309906

Pulled By: dskhudia

fbshipit-source-id: 6638af3426db553531bc9a2a88ecb4d043e49f08
  • Loading branch information
dskhudia authored and facebook-github-bot committed Apr 30, 2020
1 parent 91063b0 commit b2bdf84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion third_party/asmjit
Submodule asmjit updated 86 files
+10 −0 .editorconfig
+62 −52 .travis.yml
+73 −10 CMakeLists.txt
+1 −1 README.md
+25 −0 src/asmjit/core/api-build_p.h
+12 −31 src/asmjit/core/api-config.h
+1 −2 src/asmjit/core/arch.cpp
+1 −2 src/asmjit/core/assembler.cpp
+1 −3 src/asmjit/core/builder.cpp
+8 −8 src/asmjit/core/builder.h
+1 −2 src/asmjit/core/callconv.cpp
+1 −2 src/asmjit/core/codeholder.cpp
+26 −0 src/asmjit/core/codeholder.h
+13 −5 src/asmjit/core/compiler.cpp
+3 −3 src/asmjit/core/compiler.h
+2 −3 src/asmjit/core/constpool.cpp
+1 −2 src/asmjit/core/cpuinfo.cpp
+1 −2 src/asmjit/core/emitter.cpp
+9 −4 src/asmjit/core/emitter.h
+4 −4 src/asmjit/core/features.h
+1 −2 src/asmjit/core/func.cpp
+9 −9 src/asmjit/core/func.h
+1 −2 src/asmjit/core/globals.cpp
+1 −1 src/asmjit/core/globals.h
+1 −3 src/asmjit/core/inst.cpp
+6 −8 src/asmjit/core/jitallocator.cpp
+1 −1 src/asmjit/core/jitallocator.h
+1 −3 src/asmjit/core/jitruntime.cpp
+1 −1 src/asmjit/core/jitruntime.h
+1 −3 src/asmjit/core/logging.cpp
+1 −1 src/asmjit/core/logging.h
+1 −1 src/asmjit/core/misc_p.h
+10 −6 src/asmjit/core/operand.cpp
+92 −67 src/asmjit/core/operand.h
+1 −2 src/asmjit/core/osutils.cpp
+53 −27 src/asmjit/core/osutils.h
+1 −1 src/asmjit/core/raassignment_p.h
+1 −1 src/asmjit/core/rabuilders_p.h
+7 −5 src/asmjit/core/radefs_p.h
+4 −3 src/asmjit/core/ralocal.cpp
+1 −1 src/asmjit/core/ralocal_p.h
+3 −5 src/asmjit/core/rapass.cpp
+1 −1 src/asmjit/core/rapass_p.h
+1 −3 src/asmjit/core/rastack.cpp
+1 −1 src/asmjit/core/rastack_p.h
+2 −3 src/asmjit/core/string.cpp
+6 −6 src/asmjit/core/string.h
+2 −3 src/asmjit/core/support.cpp
+6 −6 src/asmjit/core/support.h
+1 −2 src/asmjit/core/target.cpp
+1 −2 src/asmjit/core/type.cpp
+114 −38 src/asmjit/core/virtmem.cpp
+10 −3 src/asmjit/core/virtmem.h
+1 −2 src/asmjit/core/zone.cpp
+6 −6 src/asmjit/core/zone.h
+174 −36 src/asmjit/core/zonehash.cpp
+29 −13 src/asmjit/core/zonehash.h
+2 −3 src/asmjit/core/zonelist.cpp
+2 −3 src/asmjit/core/zonestack.cpp
+2 −3 src/asmjit/core/zonetree.cpp
+2 −3 src/asmjit/core/zonevector.cpp
+58 −13 src/asmjit/x86/x86assembler.cpp
+1 −3 src/asmjit/x86/x86builder.cpp
+1 −1 src/asmjit/x86/x86builder.h
+1 −3 src/asmjit/x86/x86callconv.cpp
+2 −3 src/asmjit/x86/x86compiler.cpp
+83 −84 src/asmjit/x86/x86compiler.h
+18 −0 src/asmjit/x86/x86emitter.h
+1 −3 src/asmjit/x86/x86features.cpp
+2 −4 src/asmjit/x86/x86instapi.cpp
+1,449 −1,454 src/asmjit/x86/x86instdb.cpp
+7 −6 src/asmjit/x86/x86internal.cpp
+1 −1 src/asmjit/x86/x86internal_p.h
+1 −5 src/asmjit/x86/x86logging.cpp
+1 −1 src/asmjit/x86/x86logging_p.h
+14 −4 src/asmjit/x86/x86operand.cpp
+10 −10 src/asmjit/x86/x86operand.h
+3 −5 src/asmjit/x86/x86rapass.cpp
+1 −1 src/asmjit/x86/x86rapass_p.h
+9 −3 test/asmjit_test_x86_cc.cpp
+3 −3 test/asmjit_test_x86_sections.cpp
+10 −6 test/broken.cpp
+14 −11 test/broken.h
+17 −0 tools/configure-sanitizers.sh
+1 −0 tools/tablegen-x86.js
+1 −1 tools/tablegen.js

0 comments on commit b2bdf84

Please sign in to comment.