This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from b2d28d4c345 GlobalISel: Use helper function for MMO splitting new d08f66450d9 GlobalISel: Allow bitcount ops to have different result type
The 1 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/LegalizerHelper.h | 6 ++ include/llvm/Target/GenericOpcodes.td | 10 +-- lib/CodeGen/GlobalISel/LegalizerHelper.cpp | 34 ++++++++- lib/Target/AMDGPU/AMDGPULegalizerInfo.cpp | 15 ++-- lib/Target/ARM/ARMLegalizerInfo.cpp | 12 ++- .../GlobalISel/legalizer-info-validation.mir | 10 +-- .../AMDGPU/GlobalISel/legalize-ctlz-zero-undef.mir | 88 ++++++++++++++++++++++ test/CodeGen/AMDGPU/GlobalISel/legalize-ctlz.mir | 88 ++++++++++++++++++++++ test/CodeGen/AMDGPU/GlobalISel/legalize-ctpop.mir | 88 ++++++++++++++++++++++ .../AMDGPU/GlobalISel/legalize-cttz-zero-undef.mir | 88 ++++++++++++++++++++++ test/CodeGen/AMDGPU/GlobalISel/legalize-cttz.mir | 88 ++++++++++++++++++++++ .../CodeGen/GlobalISel/LegalizerHelperTest.cpp | 80 ++++++++++++-------- 12 files changed, 551 insertions(+), 56 deletions(-) create mode 100644 test/CodeGen/AMDGPU/GlobalISel/legalize-ctlz-zero-undef.mir create mode 100644 test/CodeGen/AMDGPU/GlobalISel/legalize-ctlz.mir create mode 100644 test/CodeGen/AMDGPU/GlobalISel/legalize-ctpop.mir create mode 100644 test/CodeGen/AMDGPU/GlobalISel/legalize-cttz-zero-undef.mir create mode 100644 test/CodeGen/AMDGPU/GlobalISel/legalize-cttz.mir