This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 42d86b3f77b AMDGPU: Remove old intrinsic uses new 7e11c73f634 Fix PR33028 new 011a826e4f7 CodeGen: Power: Add lowering for shifts of v1i128. new a0540d34689 AMDGPU: Start defining a calling convention
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: lib/Target/AMDGPU/AMDGPUCallLowering.h | 3 +- lib/Target/AMDGPU/AMDGPUCallingConv.td | 50 +- lib/Target/AMDGPU/AMDGPUISelLowering.cpp | 119 +++- lib/Target/AMDGPU/AMDGPUISelLowering.h | 5 +- lib/Target/AMDGPU/AMDGPUInstrInfo.td | 2 +- lib/Target/AMDGPU/AMDGPUMCInstLower.cpp | 8 +- lib/Target/AMDGPU/AMDGPUMachineFunction.cpp | 17 +- lib/Target/AMDGPU/AMDGPURegisterInfo.cpp | 45 +- lib/Target/AMDGPU/AMDGPURegisterInfo.h | 3 - lib/Target/AMDGPU/R600RegisterInfo.cpp | 12 + lib/Target/AMDGPU/R600RegisterInfo.h | 2 + lib/Target/AMDGPU/SIFrameLowering.cpp | 20 +- lib/Target/AMDGPU/SIFrameLowering.h | 2 + lib/Target/AMDGPU/SIISelLowering.cpp | 165 ++++- lib/Target/AMDGPU/SIISelLowering.h | 11 +- lib/Target/AMDGPU/SIMachineFunctionInfo.cpp | 19 +- lib/Target/AMDGPU/SIMachineFunctionInfo.h | 5 +- lib/Target/AMDGPU/SIRegisterInfo.cpp | 43 +- lib/Target/AMDGPU/SIRegisterInfo.h | 14 + lib/Target/AMDGPU/SOPInstructions.td | 18 +- lib/Target/AMDGPU/Utils/AMDGPUBaseInfo.cpp | 13 +- lib/Target/AMDGPU/Utils/AMDGPUBaseInfo.h | 1 - lib/Target/PowerPC/PPCISelLowering.cpp | 15 + lib/Target/PowerPC/PPCInstrAltivec.td | 8 + lib/Target/X86/X86ISelLowering.cpp | 47 +- lib/Target/X86/X86InstrTSX.td | 5 + .../AMDGPU/GlobalISel/amdgpu-irtranslator.ll | 5 +- test/CodeGen/AMDGPU/frame-index-elimination.ll | 124 ++++ test/CodeGen/AMDGPU/function-args.ll | 734 +++++++++++++++++++++ test/CodeGen/AMDGPU/function-returns.ll | 514 +++++++++++++++ test/CodeGen/AMDGPU/hsa-func.ll | 13 +- test/CodeGen/AMDGPU/inline-asm.ll | 2 +- test/CodeGen/AMDGPU/subreg_interference.mir | 8 + test/CodeGen/PowerPC/shift128.ll | 92 ++- test/CodeGen/X86/rtm.ll | 10 +- 35 files changed, 2007 insertions(+), 147 deletions(-) create mode 100644 test/CodeGen/AMDGPU/frame-index-elimination.ll create mode 100644 test/CodeGen/AMDGPU/function-args.ll create mode 100644 test/CodeGen/AMDGPU/function-returns.ll