This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from dbce81cd0d0 Fix typo new ffe06fbfb18 AMDGPU/GlobalISel: Attempt to RegBankSelect image intrinsics new 718a0d334f0 AMDGPU/GlobalISel: RegBankSelect llvm.amdgcn.raw.buffer.{lo [...] new 75d94a9663d AMDGPU/GlobalISel: RegBankSelect struct buffer load/store new ca2672accec AMDGPU/GlobalISel: Select llvm.amdgcn.raw.buffer.store
The 4 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: lib/Target/AMDGPU/AMDGPUInstructionSelector.cpp | 185 +++++ lib/Target/AMDGPU/AMDGPUInstructionSelector.h | 7 + lib/Target/AMDGPU/AMDGPULegalizerInfo.cpp | 34 + lib/Target/AMDGPU/AMDGPULegalizerInfo.h | 3 + lib/Target/AMDGPU/AMDGPURegisterBankInfo.cpp | 373 +++++++++- lib/Target/AMDGPU/AMDGPURegisterBankInfo.h | 40 +- lib/Target/AMDGPU/AMDGPUSubtarget.cpp | 2 +- .../GlobalISel/llvm.amdgcn.raw.buffer.store.ll | 791 +++++++++++++++++++++ .../regbankselect-amdgcn.image.load.1d.ll | 181 +++++ .../regbankselect-amdgcn.image.sample.1d.ll | 268 +++++++ .../regbankselect-amdgcn.raw.buffer.load.ll | 173 +++++ .../regbankselect-amdgcn.struct.buffer.load.ll | 179 +++++ .../regbankselect-amdgcn.struct.buffer.store.ll | 174 +++++ 13 files changed, 2396 insertions(+), 14 deletions(-) create mode 100644 test/CodeGen/AMDGPU/GlobalISel/llvm.amdgcn.raw.buffer.store.ll create mode 100644 test/CodeGen/AMDGPU/GlobalISel/regbankselect-amdgcn.image.load.1d.ll create mode 100644 test/CodeGen/AMDGPU/GlobalISel/regbankselect-amdgcn.image.sample.1d.ll create mode 100644 test/CodeGen/AMDGPU/GlobalISel/regbankselect-amdgcn.raw.buffer.load.ll create mode 100644 test/CodeGen/AMDGPU/GlobalISel/regbankselect-amdgcn.struct.buff [...] create mode 100644 test/CodeGen/AMDGPU/GlobalISel/regbankselect-amdgcn.struct.buff [...]