This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 1e8341d5444 [DAGCombiner] Support (shl (ext (shl x, c1)), c2) -> (shl ( [...] new 61f7a16bfa5 [NFC] Added tests for cttz(abs(x)) -> cttz(x) fold new a8650efa916 [NFC] Added tests for D63534 new 1ad9529ddc5 Revert rL363678 : AMDGPU: Add ds_gws_init / ds_gws_barrier [...]
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/IR/IntrinsicsAMDGPU.td | 22 --- lib/Target/AMDGPU/AMDGPUISelDAGToDAG.cpp | 85 ---------- lib/Target/AMDGPU/DSInstructions.td | 6 +- lib/Target/AMDGPU/SIISelLowering.cpp | 18 --- lib/Target/AMDGPU/SIInsertWaitcnts.cpp | 28 ++-- lib/Target/AMDGPU/SIInstrInfo.cpp | 3 +- lib/Target/AMDGPU/SIMachineFunctionInfo.h | 37 +---- test/CodeGen/AMDGPU/gws-hazards.mir | 103 ------------ test/CodeGen/AMDGPU/insert-skips-gws.mir | 59 ------- test/CodeGen/AMDGPU/llvm.amdgcn.ds.gws.barrier.ll | 179 --------------------- test/CodeGen/AMDGPU/llvm.amdgcn.ds.gws.init.ll | 119 -------------- test/CodeGen/AMDGPU/tail-duplication-convergent.ll | 48 ------ test/Transforms/InstCombine/cttz-abs.ll | 169 +++++++++++++++++++ test/Transforms/InstCombine/cttz-negative.ll | 74 +++++++++ 14 files changed, 264 insertions(+), 686 deletions(-) delete mode 100644 test/CodeGen/AMDGPU/gws-hazards.mir delete mode 100644 test/CodeGen/AMDGPU/insert-skips-gws.mir delete mode 100644 test/CodeGen/AMDGPU/llvm.amdgcn.ds.gws.barrier.ll delete mode 100644 test/CodeGen/AMDGPU/llvm.amdgcn.ds.gws.init.ll create mode 100644 test/Transforms/InstCombine/cttz-abs.ll create mode 100644 test/Transforms/InstCombine/cttz-negative.ll