This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 682163bb18d [CVP] tidy processCmp(); NFC new 7fd87699a5a Add support for TFE/LWE in image intrinsics new dd1b6604dba [CallSiteSplitting] Report edge deletion to DomTreeUpdater
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: include/llvm/IR/IntrinsicsAMDGPU.td | 6 +- lib/Target/AMDGPU/AMDGPU.h | 4 + lib/Target/AMDGPU/AMDGPU.td | 10 + lib/Target/AMDGPU/AMDGPUSubtarget.cpp | 6 + lib/Target/AMDGPU/AMDGPUSubtarget.h | 7 + lib/Target/AMDGPU/AMDGPUTargetMachine.cpp | 1 + lib/Target/AMDGPU/CMakeLists.txt | 1 + lib/Target/AMDGPU/MIMGInstructions.td | 10 +- lib/Target/AMDGPU/SIAddIMGInit.cpp | 181 +++++++++ lib/Target/AMDGPU/SIISelLowering.cpp | 343 +++++++++++++--- lib/Target/AMDGPU/SIInstrInfo.cpp | 36 ++ lib/Target/AMDGPU/Utils/AMDGPUBaseInfo.h | 1 + lib/Transforms/InstCombine/InstCombineInternal.h | 3 +- .../InstCombine/InstCombineSimplifyDemanded.cpp | 18 +- lib/Transforms/Scalar/CallSiteSplitting.cpp | 4 +- test/CodeGen/AMDGPU/llvm.amdgcn.image.dim.ll | 438 ++++++++++++++++++++- .../AMDGPU/llvm.amdgcn.image.load.a16.d16.ll | 12 +- test/CodeGen/AMDGPU/llvm.amdgcn.image.load.a16.ll | 12 +- .../AMDGPU/llvm.amdgcn.image.sample.d16.dim.ll | 53 +++ .../CodeGen/AMDGPU/llvm.amdgcn.image.sample.dim.ll | 186 +++++++++ test/Transforms/CallSiteSplitting/musttail.ll | 29 ++ .../AMDGPU/amdgcn-demanded-vector-elts.ll | 23 ++ 22 files changed, 1307 insertions(+), 77 deletions(-) create mode 100644 lib/Target/AMDGPU/SIAddIMGInit.cpp