This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from a68b470abaa [DebugInfo] Don't turn dbg.declare into DBG_VALUE for stati [...] new 43950949ad8 AMDGPU: Initial implementation of calls new ff9e21161dc AMDGPU: Add test for r308774
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: lib/Target/AMDGPU/AMDGPUCallingConv.td | 4 + lib/Target/AMDGPU/AMDGPUFrameLowering.h | 4 - lib/Target/AMDGPU/AMDGPUISelLowering.cpp | 1 + lib/Target/AMDGPU/AMDGPUInstrInfo.cpp | 4 +- lib/Target/AMDGPU/AMDGPUInstrInfo.td | 16 + lib/Target/AMDGPU/AMDGPUMCInstLower.cpp | 3 + lib/Target/AMDGPU/AMDGPURegisterInfo.cpp | 14 + lib/Target/AMDGPU/AMDGPUTargetMachine.cpp | 11 + lib/Target/AMDGPU/AMDGPUTargetMachine.h | 3 + lib/Target/AMDGPU/R600FrameLowering.h | 4 + lib/Target/AMDGPU/SIFrameLowering.cpp | 35 ++ lib/Target/AMDGPU/SIFrameLowering.h | 5 + lib/Target/AMDGPU/SIISelLowering.cpp | 406 +++++++++++++++++- lib/Target/AMDGPU/SIISelLowering.h | 15 + lib/Target/AMDGPU/SIInstructions.td | 39 ++ lib/Target/AMDGPU/SIRegisterInfo.cpp | 11 +- lib/Target/AMDGPU/SIRegisterInfo.h | 1 + lib/Target/AMDGPU/SIRegisterInfo.td | 12 + test/CodeGen/AMDGPU/basic-call-return.ll | 27 ++ test/CodeGen/AMDGPU/byval-frame-setup.ll | 235 +++++++++++ test/CodeGen/AMDGPU/call-argument-types.ll | 527 ++++++++++++++++++++++++ test/CodeGen/AMDGPU/call-preserved-registers.ll | 251 +++++++++++ test/CodeGen/AMDGPU/call-return-types.ll | 241 +++++++++++ test/CodeGen/AMDGPU/callee-frame-setup.ll | 58 ++- test/CodeGen/AMDGPU/frame-index-elimination.ll | 31 +- test/CodeGen/AMDGPU/nested-calls.ll | 41 ++ 26 files changed, 1983 insertions(+), 16 deletions(-) create mode 100644 test/CodeGen/AMDGPU/basic-call-return.ll create mode 100644 test/CodeGen/AMDGPU/byval-frame-setup.ll create mode 100644 test/CodeGen/AMDGPU/call-argument-types.ll create mode 100644 test/CodeGen/AMDGPU/call-preserved-registers.ll create mode 100644 test/CodeGen/AMDGPU/call-return-types.ll create mode 100644 test/CodeGen/AMDGPU/nested-calls.ll