This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 41ca6917d80 [Triple] Add AMDPAL operating system type new 2532de2a09e [AMDGPU] AMDPAL scratch buffer support new 8ba98f908f0 [AMDGPU] calling conventions for AMDPAL OS type new 3e5e51d7490 [mips] Add test cases for dext/dins family of instructions
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: include/llvm/IR/CallingConv.h | 23 +++++++--- lib/AsmParser/LLLexer.cpp | 2 + lib/AsmParser/LLParser.cpp | 4 ++ lib/AsmParser/LLToken.h | 2 + lib/IR/AsmWriter.cpp | 2 + lib/Target/AMDGPU/AMDGPUAliasAnalysis.cpp | 5 +- lib/Target/AMDGPU/AMDGPUAsmPrinter.cpp | 27 +++++++---- lib/Target/AMDGPU/AMDGPUISelLowering.cpp | 4 ++ lib/Target/AMDGPU/AMDGPUTargetTransformInfo.cpp | 2 + lib/Target/AMDGPU/SIDefines.h | 2 + lib/Target/AMDGPU/SIFrameLowering.cpp | 61 ++++++++++++++++++++++++- lib/Target/AMDGPU/SIFrameLowering.h | 6 +++ lib/Target/AMDGPU/SIMachineFunctionInfo.cpp | 8 +++- lib/Target/AMDGPU/SIMachineFunctionInfo.h | 9 ++++ lib/Target/AMDGPU/Utils/AMDGPUBaseInfo.cpp | 6 +++ test/Bitcode/compatibility.ll | 8 ++++ test/CodeGen/AMDGPU/amdpal-cs.ll | 13 ++++++ test/CodeGen/AMDGPU/amdpal-es.ll | 13 ++++++ test/CodeGen/AMDGPU/amdpal-gs.ll | 14 ++++++ test/CodeGen/AMDGPU/amdpal-hs.ll | 14 ++++++ test/CodeGen/AMDGPU/amdpal-ls.ll | 13 ++++++ test/CodeGen/AMDGPU/amdpal-ps.ll | 14 ++++++ test/CodeGen/AMDGPU/amdpal-vs.ll | 14 ++++++ test/CodeGen/AMDGPU/amdpal.ll | 47 ++++++++++++++++++- test/CodeGen/AMDGPU/calling-conventions.ll | 47 ++++++++++++++++++- test/MC/Mips/mips64r2/invalid.s | 7 ++- test/MC/Mips/mips64r2/valid.s | 5 ++ test/MC/Mips/mips64r6/invalid.s | 25 ++++++++++ test/MC/Mips/mips64r6/valid.s | 5 ++ 29 files changed, 379 insertions(+), 23 deletions(-) create mode 100644 test/CodeGen/AMDGPU/amdpal-cs.ll create mode 100644 test/CodeGen/AMDGPU/amdpal-es.ll create mode 100644 test/CodeGen/AMDGPU/amdpal-gs.ll create mode 100644 test/CodeGen/AMDGPU/amdpal-hs.ll create mode 100644 test/CodeGen/AMDGPU/amdpal-ls.ll create mode 100644 test/CodeGen/AMDGPU/amdpal-ps.ll create mode 100644 test/CodeGen/AMDGPU/amdpal-vs.ll