This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from a490b3ede88 [VFS] Allow multiple RealFileSystem instances with independ [...] new 1da08e25141 [AMDGPU] Add support for TFE/LWE in image intrinsics. 2nd try
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/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 | 342 +++++++++++++--- lib/Target/AMDGPU/SIInstrInfo.cpp | 36 ++ lib/Target/AMDGPU/Utils/AMDGPUBaseInfo.h | 1 + lib/Transforms/InstCombine/InstCombineInternal.h | 3 +- .../InstCombine/InstCombineSimplifyDemanded.cpp | 18 +- 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 +++++++++ .../AMDGPU/amdgcn-demanded-vector-elts.ll | 23 ++ 20 files changed, 1274 insertions(+), 76 deletions(-) create mode 100644 lib/Target/AMDGPU/SIAddIMGInit.cpp