This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 72084078157 Revert the test commit new 977832bffa2 Remove variable only used in an assert. new 2d2b63fa737 [globalisel] Add G_SEXT_INREG
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: .../CodeGen/GlobalISel/ConstantFoldingMIRBuilder.h | 11 + .../GlobalISel/LegalizationArtifactCombiner.h | 18 +- include/llvm/CodeGen/GlobalISel/LegalizerInfo.h | 57 +- include/llvm/CodeGen/GlobalISel/Utils.h | 3 + include/llvm/MC/MCInstrDesc.h | 16 +- include/llvm/Support/TargetOpcodes.def | 1 + include/llvm/Target/GenericOpcodes.td | 14 + include/llvm/Target/Target.td | 7 + lib/CodeGen/GlobalISel/CSEMIRBuilder.cpp | 11 + lib/CodeGen/GlobalISel/LegalizerHelper.cpp | 116 ++++ lib/CodeGen/GlobalISel/LegalizerInfo.cpp | 40 +- lib/CodeGen/GlobalISel/Utils.cpp | 17 + lib/CodeGen/MachineVerifier.cpp | 16 + lib/Target/AArch64/AArch64LegalizerInfo.cpp | 2 + lib/Target/AMDGPU/AMDGPULegalizerInfo.cpp | 2 + lib/Target/ARM/ARMLegalizerInfo.cpp | 2 + lib/Target/Mips/MipsLegalizerInfo.cpp | 2 + lib/Target/X86/X86ISelLowering.cpp | 3 +- lib/Target/X86/X86LegalizerInfo.cpp | 1 + .../AArch64/GlobalISel/irtranslator-extends.ll | 30 + test/CodeGen/AArch64/GlobalISel/legalize-div.mir | 2 +- test/CodeGen/AArch64/GlobalISel/legalize-ext.mir | 8 +- test/CodeGen/AArch64/GlobalISel/legalize-gep.mir | 6 +- test/CodeGen/AArch64/GlobalISel/legalize-itofp.mir | 6 +- test/CodeGen/AArch64/GlobalISel/legalize-rem.mir | 2 +- test/CodeGen/AArch64/GlobalISel/legalize-sext.mir | 18 + test/CodeGen/AArch64/GlobalISel/legalize-shift.mir | 2 +- test/CodeGen/AArch64/GlobalISel/legalize-undef.mir | 2 +- .../GlobalISel/legalizer-info-validation.mir | 747 +++++++++++---------- .../AMDGPU/GlobalISel/artifact-combiner-sext.mir | 15 +- .../artifact-combiner-unmerge-values.mir | 6 +- .../AMDGPU/GlobalISel/combine-ext-legalizer.mir | 2 +- test/CodeGen/AMDGPU/GlobalISel/legalize-ashr.mir | 24 +- .../GlobalISel/legalize-extract-vector-elt.mir | 20 +- test/CodeGen/AMDGPU/GlobalISel/legalize-icmp.mir | 12 +- test/CodeGen/AMDGPU/GlobalISel/legalize-sext.mir | 6 +- .../AMDGPU/GlobalISel/legalize-sextload-flat.mir | 10 +- test/CodeGen/AMDGPU/GlobalISel/legalize-smax.mir | 18 +- test/CodeGen/AMDGPU/GlobalISel/legalize-smin.mir | 18 +- .../CodeGen/ARM/GlobalISel/arm-legalize-divmod.mir | 56 +- test/CodeGen/ARM/GlobalISel/arm-legalize-exts.mir | 29 +- test/CodeGen/Mips/GlobalISel/legalizer/add.mir | 4 +- .../Mips/GlobalISel/legalizer/constants.mir | 12 +- .../GlobalISel/legalizer/fptosi_and_fptoui.mir | 16 +- test/CodeGen/Mips/GlobalISel/legalizer/icmp.mir | 2 +- test/CodeGen/Mips/GlobalISel/legalizer/mul.mir | 4 +- .../Mips/GlobalISel/legalizer/rem_and_div.mir | 16 +- .../GlobalISel/legalizer/sitofp_and_uitofp.mir | 16 +- test/CodeGen/Mips/GlobalISel/legalizer/sub.mir | 4 +- .../CodeGen/X86/GlobalISel/legalize-ext-x86-64.mir | 2 +- .../X86/GlobalISel/x86_64-legalize-sitofp.mir | 8 +- test/MachineVerifier/test_g_sext_inreg.mir | 53 ++ .../CodeGen/GlobalISel/LegalizerHelperTest.cpp | 127 ++++ unittests/CodeGen/GlobalISel/PatternMatchTest.cpp | 16 + 54 files changed, 1143 insertions(+), 515 deletions(-) create mode 100644 test/CodeGen/AArch64/GlobalISel/irtranslator-extends.ll create mode 100644 test/CodeGen/AArch64/GlobalISel/legalize-sext.mir create mode 100644 test/MachineVerifier/test_g_sext_inreg.mir