This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 428d4aa Make PDBFile store an msf::Layout. new ea26cb1 GlobalISel: implement legalization pass, with just one transf [...] new c42c8e2 Make DebugInfoMsf a dependency of DebugInfoPDBTests. new 86728a0 add tests for icmp vector folds
The 3 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/GISelAccessor.h | 4 + include/llvm/CodeGen/GlobalISel/MachineIRBuilder.h | 33 +++++++- .../CodeGen/GlobalISel/MachineLegalizeHelper.h | 92 ++++++++++++++++++++ .../llvm/CodeGen/GlobalISel/MachineLegalizePass.h | 50 +++++++++++ include/llvm/CodeGen/GlobalISel/MachineLegalizer.h | 11 --- include/llvm/CodeGen/TargetPassConfig.h | 8 ++ include/llvm/InitializePasses.h | 1 + include/llvm/Target/GenericOpcodes.td | 21 +++++ include/llvm/Target/TargetOpcodes.def | 8 ++ include/llvm/Target/TargetSubtargetInfo.h | 5 ++ lib/CodeGen/GlobalISel/CMakeLists.txt | 2 + lib/CodeGen/GlobalISel/GlobalISel.cpp | 1 + lib/CodeGen/GlobalISel/MachineIRBuilder.cpp | 32 +++++++ lib/CodeGen/GlobalISel/MachineLegalizeHelper.cpp | 98 ++++++++++++++++++++++ lib/CodeGen/GlobalISel/MachineLegalizePass.cpp | 72 ++++++++++++++++ lib/CodeGen/GlobalISel/MachineLegalizer.cpp | 9 +- lib/CodeGen/LLVMTargetMachine.cpp | 5 ++ lib/Target/AArch64/AArch64MachineLegalizer.cpp | 30 +++++++ lib/Target/AArch64/AArch64MachineLegalizer.h | 30 +++++++ lib/Target/AArch64/AArch64Subtarget.cpp | 5 ++ lib/Target/AArch64/AArch64Subtarget.h | 1 + lib/Target/AArch64/AArch64TargetMachine.cpp | 12 +++ lib/Target/AArch64/CMakeLists.txt | 1 + lib/Target/AMDGPU/AMDGPUTargetMachine.cpp | 5 ++ test/CodeGen/AArch64/GlobalISel/legalize-add.mir | 34 ++++++++ test/Transforms/InstCombine/icmp.ll | 13 +++ test/Transforms/InstCombine/rem.ll | 13 +++ unittests/DebugInfo/PDB/CMakeLists.txt | 1 + 28 files changed, 581 insertions(+), 16 deletions(-) create mode 100644 include/llvm/CodeGen/GlobalISel/MachineLegalizeHelper.h create mode 100644 include/llvm/CodeGen/GlobalISel/MachineLegalizePass.h create mode 100644 lib/CodeGen/GlobalISel/MachineLegalizeHelper.cpp create mode 100644 lib/CodeGen/GlobalISel/MachineLegalizePass.cpp create mode 100644 lib/Target/AArch64/AArch64MachineLegalizer.cpp create mode 100644 lib/Target/AArch64/AArch64MachineLegalizer.h create mode 100644 test/CodeGen/AArch64/GlobalISel/legalize-add.mir