This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from f3b2d689fe3 AMDGPU/GlobalISel: RegBankSelect for DS ordered add/swap new 8af834bc792 AMDGPU: Support GDS atomics new 0a05eaccbd5 AMDGPU/GFX10: implement ds_ordered_count changes new b82c63f999a GlobalISel: Implement lower for min/max
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/LegalizerHelper.h | 1 + include/llvm/IR/IntrinsicsAMDGPU.td | 1 + lib/CodeGen/GlobalISel/LegalizerHelper.cpp | 36 ++++++ lib/Target/AMDGPU/AMDGPUISelDAGToDAG.cpp | 17 ++- lib/Target/AMDGPU/AMDGPUInstructions.td | 21 ++++ lib/Target/AMDGPU/AMDGPUTargetTransformInfo.cpp | 5 +- lib/Target/AMDGPU/DSInstructions.td | 88 +++++++------- lib/Target/AMDGPU/SIISelLowering.cpp | 29 ++++- lib/Target/AMDGPU/SIInstrInfo.td | 2 + lib/Target/AMDGPU/SIMachineFunctionInfo.cpp | 7 +- lib/Target/AMDGPU/SIMachineFunctionInfo.h | 5 + test/CodeGen/AMDGPU/gds-atomic.ll | 128 +++++++++++++++++++++ .../AMDGPU/llvm.amdgcn.ds.ordered.add.gfx10.ll | 23 ++++ .../CodeGen/GlobalISel/LegalizerHelperTest.cpp | 78 +++++++++++++ 14 files changed, 386 insertions(+), 55 deletions(-) create mode 100644 test/CodeGen/AMDGPU/gds-atomic.ll create mode 100644 test/CodeGen/AMDGPU/llvm.amdgcn.ds.ordered.add.gfx10.ll