This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from a800fa8 GlobalISel: correctly translate invoke when callee is a register. new f7f8a35 Re-commit AMDGPU/GlobalISel: Add support for simple shaders
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: lib/Target/AMDGPU/AMDGPU.td | 1 + lib/Target/AMDGPU/AMDGPUCallLowering.cpp | 133 ++++++- lib/Target/AMDGPU/AMDGPUCallLowering.h | 8 + lib/Target/AMDGPU/AMDGPUGenRegisterBankInfo.def | 62 +++ lib/Target/AMDGPU/AMDGPUISelLowering.cpp | 6 + lib/Target/AMDGPU/AMDGPUInstructionSelector.cpp | 418 +++++++++++++++++++++ lib/Target/AMDGPU/AMDGPUInstructionSelector.h | 65 ++++ lib/Target/AMDGPU/AMDGPULegalizerInfo.cpp | 62 +++ lib/Target/AMDGPU/AMDGPULegalizerInfo.h | 30 ++ lib/Target/AMDGPU/AMDGPURegisterBankInfo.cpp | 228 +++++++++++ lib/Target/AMDGPU/AMDGPURegisterBankInfo.h | 65 ++++ lib/Target/AMDGPU/AMDGPURegisterBanks.td | 16 + lib/Target/AMDGPU/AMDGPUSubtarget.h | 15 + lib/Target/AMDGPU/AMDGPUTargetMachine.cpp | 35 +- lib/Target/AMDGPU/CMakeLists.txt | 6 + lib/Target/AMDGPU/Utils/AMDGPUBaseInfo.cpp | 2 +- .../AMDGPU/GlobalISel/inst-select-load-flat.mir | 27 ++ .../AMDGPU/GlobalISel/inst-select-load-smrd.mir | 143 +++++++ .../AMDGPU/GlobalISel/inst-select-store-flat.mir | 29 ++ test/CodeGen/AMDGPU/GlobalISel/regbankselect.mir | 69 ++++ test/CodeGen/AMDGPU/GlobalISel/shader-epilogs.ll | 11 + test/CodeGen/AMDGPU/GlobalISel/smrd.ll | 89 +++++ 22 files changed, 1510 insertions(+), 10 deletions(-) create mode 100644 lib/Target/AMDGPU/AMDGPUGenRegisterBankInfo.def create mode 100644 lib/Target/AMDGPU/AMDGPUInstructionSelector.cpp create mode 100644 lib/Target/AMDGPU/AMDGPUInstructionSelector.h create mode 100644 lib/Target/AMDGPU/AMDGPULegalizerInfo.cpp create mode 100644 lib/Target/AMDGPU/AMDGPULegalizerInfo.h create mode 100644 lib/Target/AMDGPU/AMDGPURegisterBankInfo.cpp create mode 100644 lib/Target/AMDGPU/AMDGPURegisterBankInfo.h create mode 100644 lib/Target/AMDGPU/AMDGPURegisterBanks.td create mode 100644 test/CodeGen/AMDGPU/GlobalISel/inst-select-load-flat.mir create mode 100644 test/CodeGen/AMDGPU/GlobalISel/inst-select-load-smrd.mir create mode 100644 test/CodeGen/AMDGPU/GlobalISel/inst-select-store-flat.mir create mode 100644 test/CodeGen/AMDGPU/GlobalISel/regbankselect.mir create mode 100644 test/CodeGen/AMDGPU/GlobalISel/shader-epilogs.ll create mode 100644 test/CodeGen/AMDGPU/GlobalISel/smrd.ll