This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 43f4824b432 [SystemZ] Support vector registers in inline asm new 47485670fc5 [SystemZ] Fix common-code users of stack size new 12d84e5a682 [SystemZ] Support stackmaps and patchpoints new a8eca2749c3 [SystemZ] Add support for anyregcc 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/SystemZ/SystemZAsmPrinter.cpp | 129 +++++ lib/Target/SystemZ/SystemZAsmPrinter.h | 17 +- lib/Target/SystemZ/SystemZCallingConv.td | 9 + lib/Target/SystemZ/SystemZFrameLowering.cpp | 92 ++-- lib/Target/SystemZ/SystemZFrameLowering.h | 5 - lib/Target/SystemZ/SystemZISelLowering.cpp | 11 + lib/Target/SystemZ/SystemZISelLowering.h | 1 + lib/Target/SystemZ/SystemZRegisterInfo.cpp | 8 + test/CodeGen/SystemZ/anyregcc-novec.ll | 65 +++ test/CodeGen/SystemZ/anyregcc-vec.ll | 99 ++++ test/CodeGen/SystemZ/anyregcc.ll | 449 +++++++++++++++++ test/CodeGen/SystemZ/patchpoint-invoke.ll | 65 +++ test/CodeGen/SystemZ/patchpoint.ll | 102 ++++ test/CodeGen/SystemZ/stack-size-section.ll | 38 ++ test/CodeGen/SystemZ/stackmap-nops.ll | 140 ++++++ .../SystemZ/stackmap-shadow-optimization.ll | 27 ++ test/CodeGen/SystemZ/stackmap.ll | 537 +++++++++++++++++++++ 17 files changed, 1734 insertions(+), 60 deletions(-) create mode 100644 test/CodeGen/SystemZ/anyregcc-novec.ll create mode 100644 test/CodeGen/SystemZ/anyregcc-vec.ll create mode 100644 test/CodeGen/SystemZ/anyregcc.ll create mode 100644 test/CodeGen/SystemZ/patchpoint-invoke.ll create mode 100644 test/CodeGen/SystemZ/patchpoint.ll create mode 100644 test/CodeGen/SystemZ/stack-size-section.ll create mode 100644 test/CodeGen/SystemZ/stackmap-nops.ll create mode 100644 test/CodeGen/SystemZ/stackmap-shadow-optimization.ll create mode 100644 test/CodeGen/SystemZ/stackmap.ll