This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from e144f87e908 CMake: Turn LLVM_ENABLE_LIBXML2 into a tri-state option new 0053d0421c5 [GISel]: Rework legalization algorithm for better eliminati [...] new 9300d72534a [cfi-verify] Add DOT graph printing for GraphResult objects.
The 2 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: include/llvm/CodeGen/GlobalISel/GISelWorkList.h | 67 +++++ ...erCombiner.h => LegalizationArtifactCombiner.h} | 68 ++++- lib/CodeGen/GlobalISel/Legalizer.cpp | 212 ++++++++------- test/CodeGen/AArch64/GlobalISel/arm64-fallback.ll | 29 ++- test/CodeGen/AArch64/GlobalISel/legalize-add.mir | 76 ++---- test/CodeGen/AArch64/GlobalISel/legalize-and.mir | 17 +- test/CodeGen/AArch64/GlobalISel/legalize-cmp.mir | 40 ++- .../AArch64/GlobalISel/legalize-combines.mir | 7 + .../AArch64/GlobalISel/legalize-constant.mir | 33 ++- test/CodeGen/AArch64/GlobalISel/legalize-div.mir | 48 ++-- test/CodeGen/AArch64/GlobalISel/legalize-ext.mir | 98 +++++-- .../AArch64/GlobalISel/legalize-extracts.mir | 35 ++- test/CodeGen/AArch64/GlobalISel/legalize-fcmp.mir | 18 +- test/CodeGen/AArch64/GlobalISel/legalize-fptoi.mir | 61 ++++- .../AArch64/GlobalISel/legalize-inserts.mir | 9 +- test/CodeGen/AArch64/GlobalISel/legalize-itofp.mir | 14 + .../AArch64/GlobalISel/legalize-load-store.mir | 17 +- test/CodeGen/AArch64/GlobalISel/legalize-mul.mir | 10 +- .../GlobalISel/legalize-nonpowerof2eltsvec.mir | 8 +- test/CodeGen/AArch64/GlobalISel/legalize-or.mir | 50 ++-- test/CodeGen/AArch64/GlobalISel/legalize-phi.mir | 290 +++++++++++++++------ test/CodeGen/AArch64/GlobalISel/legalize-pow.mir | 2 + test/CodeGen/AArch64/GlobalISel/legalize-rem.mir | 94 ++++--- test/CodeGen/AArch64/GlobalISel/legalize-shift.mir | 57 ++-- .../CodeGen/AArch64/GlobalISel/legalize-simple.mir | 115 ++++++-- test/CodeGen/AArch64/GlobalISel/legalize-sub.mir | 3 +- test/CodeGen/AArch64/GlobalISel/legalize-undef.mir | 2 + test/CodeGen/AArch64/GlobalISel/legalize-vaarg.mir | 37 ++- test/CodeGen/AArch64/GlobalISel/legalize-xor.mir | 3 +- test/CodeGen/AMDGPU/GlobalISel/legalize-add.mir | 1 + test/CodeGen/AMDGPU/GlobalISel/legalize-and.mir | 1 + .../CodeGen/AMDGPU/GlobalISel/legalize-bitcast.mir | 1 + .../AMDGPU/GlobalISel/legalize-constant.mir | 2 + test/CodeGen/AMDGPU/GlobalISel/legalize-fadd.mir | 1 + test/CodeGen/AMDGPU/GlobalISel/legalize-fmul.mir | 1 + test/CodeGen/AMDGPU/GlobalISel/legalize-icmp.mir | 4 + test/CodeGen/AMDGPU/GlobalISel/legalize-or.mir | 1 + test/CodeGen/AMDGPU/GlobalISel/legalize-select.mir | 1 + test/CodeGen/AMDGPU/GlobalISel/legalize-shl.mir | 1 + test/CodeGen/ARM/GlobalISel/arm-isel.ll | 12 +- .../CodeGen/ARM/GlobalISel/arm-legalize-divmod.mir | 24 +- test/CodeGen/ARM/GlobalISel/arm-legalize-fp.mir | 209 ++++++++++----- test/CodeGen/X86/GlobalISel/add-scalar.ll | 18 +- test/CodeGen/X86/GlobalISel/and-scalar.ll | 1 + test/CodeGen/X86/GlobalISel/ext.ll | 14 +- test/CodeGen/X86/GlobalISel/legalize-add-v128.mir | 8 + test/CodeGen/X86/GlobalISel/legalize-add-v256.mir | 133 ++++++---- test/CodeGen/X86/GlobalISel/legalize-add-v512.mir | 235 ++++++++--------- test/CodeGen/X86/GlobalISel/legalize-add.mir | 75 ++++-- .../CodeGen/X86/GlobalISel/legalize-and-scalar.mir | 5 +- test/CodeGen/X86/GlobalISel/legalize-constant.mir | 61 ++++- .../CodeGen/X86/GlobalISel/legalize-ext-x86-64.mir | 10 +- test/CodeGen/X86/GlobalISel/legalize-ext.mir | 281 +++++++++++++------- test/CodeGen/X86/GlobalISel/legalize-gep.mir | 16 +- .../X86/GlobalISel/legalize-memop-scalar.mir | 99 +++---- .../CodeGen/X86/GlobalISel/legalize-mul-scalar.mir | 75 +++--- test/CodeGen/X86/GlobalISel/legalize-or-scalar.mir | 8 +- test/CodeGen/X86/GlobalISel/legalize-phi.mir | 4 +- test/CodeGen/X86/GlobalISel/legalize-sub-v128.mir | 4 + test/CodeGen/X86/GlobalISel/legalize-sub-v256.mir | 4 + test/CodeGen/X86/GlobalISel/legalize-sub-v512.mir | 4 + test/CodeGen/X86/GlobalISel/legalize-sub.mir | 8 +- test/CodeGen/X86/GlobalISel/legalize-trunc.mir | 33 ++- test/CodeGen/X86/GlobalISel/legalize-undef.mir | 48 +++- .../CodeGen/X86/GlobalISel/legalize-xor-scalar.mir | 3 +- test/CodeGen/X86/GlobalISel/or-scalar.ll | 1 + test/CodeGen/X86/GlobalISel/sub-scalar.ll | 4 +- test/CodeGen/X86/GlobalISel/x86_64-fallback.ll | 2 +- test/CodeGen/X86/GlobalISel/xor-scalar.ll | 1 + test/tools/llvm-cfi-verify/X86/dot-printing.s | 18 ++ tools/llvm-cfi-verify/lib/FileAnalysis.cpp | 5 + tools/llvm-cfi-verify/lib/FileAnalysis.h | 4 + tools/llvm-cfi-verify/lib/GraphBuilder.cpp | 24 ++ tools/llvm-cfi-verify/lib/GraphBuilder.h | 3 + tools/llvm-cfi-verify/llvm-cfi-verify.cpp | 14 +- 75 files changed, 1958 insertions(+), 1044 deletions(-) create mode 100644 include/llvm/CodeGen/GlobalISel/GISelWorkList.h rename include/llvm/CodeGen/GlobalISel/{LegalizerCombiner.h => LegalizationArtifac [...] create mode 100644 test/tools/llvm-cfi-verify/X86/dot-printing.s