This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 3de3a216a50 Remove unused methods in Sancov. new 29e5bc5c359 [SystemZ] Add support for new cpu architecture - arch13
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: include/llvm/IR/IntrinsicsSystemZ.td | 21 + lib/Support/Host.cpp | 2 + lib/Target/SystemZ/SystemZFeatures.td | 51 +- lib/Target/SystemZ/SystemZISelDAGToDAG.cpp | 17 + lib/Target/SystemZ/SystemZISelLowering.cpp | 243 ++- lib/Target/SystemZ/SystemZISelLowering.h | 10 + lib/Target/SystemZ/SystemZInstrFormats.td | 115 +- lib/Target/SystemZ/SystemZInstrInfo.cpp | 90 +- lib/Target/SystemZ/SystemZInstrInfo.h | 2 + lib/Target/SystemZ/SystemZInstrInfo.td | 86 +- lib/Target/SystemZ/SystemZInstrVector.td | 151 +- lib/Target/SystemZ/SystemZOperators.td | 50 + lib/Target/SystemZ/SystemZProcessors.td | 2 + lib/Target/SystemZ/SystemZRegisterInfo.cpp | 12 +- lib/Target/SystemZ/SystemZSchedule.td | 1 + lib/Target/SystemZ/SystemZScheduleArch13.td | 1695 ++++++++++++++++++++ lib/Target/SystemZ/SystemZShortenInst.cpp | 30 + lib/Target/SystemZ/SystemZSubtarget.cpp | 3 + lib/Target/SystemZ/SystemZSubtarget.h | 30 + lib/Target/SystemZ/SystemZTargetTransformInfo.cpp | 32 +- test/Analysis/CostModel/SystemZ/fp-cast.ll | 53 +- test/Analysis/CostModel/SystemZ/intrinsics.ll | 80 +- test/Analysis/CostModel/SystemZ/logic-miscext3.ll | 97 ++ test/CodeGen/SystemZ/cond-move-01.ll | 3 + test/CodeGen/SystemZ/cond-move-02.ll | 5 + test/CodeGen/SystemZ/cond-move-03.ll | 47 +- .../SystemZ/{cond-move-01.ll => cond-move-06.ll} | 72 +- test/CodeGen/SystemZ/cond-move-07.ll | 76 + test/CodeGen/SystemZ/cond-move-08.mir | 179 +++ test/CodeGen/SystemZ/ctpop-02.ll | 74 + test/CodeGen/SystemZ/not-01.ll | 126 ++ test/CodeGen/SystemZ/vec-bswap-01.ll | 97 ++ test/CodeGen/SystemZ/vec-bswap-02.ll | 97 ++ test/CodeGen/SystemZ/vec-bswap-03.ll | 220 +++ test/CodeGen/SystemZ/vec-bswap-04.ll | 254 +++ test/CodeGen/SystemZ/vec-bswap-05.ll | 136 ++ test/CodeGen/SystemZ/vec-bswap-06.ll | 77 + test/CodeGen/SystemZ/vec-bswap-07.ll | 192 +++ test/CodeGen/SystemZ/vec-conv-03.ll | 40 + test/CodeGen/SystemZ/vec-eswap-01.ll | 138 ++ test/CodeGen/SystemZ/vec-eswap-02.ll | 138 ++ test/CodeGen/SystemZ/vec-intrinsics-03.ll | 154 ++ test/MC/Disassembler/SystemZ/insns-arch13.txt | 1479 +++++++++++++++++ test/MC/SystemZ/insn-bad-arch13.s | 881 ++++++++++ test/MC/SystemZ/insn-bad-z14.s | 313 ++++ test/MC/SystemZ/insn-good-arch13.s | 1344 ++++++++++++++++ test/Verifier/SystemZ/intrinsic-immarg.ll | 18 + 47 files changed, 8922 insertions(+), 111 deletions(-) create mode 100644 lib/Target/SystemZ/SystemZScheduleArch13.td create mode 100644 test/Analysis/CostModel/SystemZ/logic-miscext3.ll copy test/CodeGen/SystemZ/{cond-move-01.ll => cond-move-06.ll} (52%) create mode 100644 test/CodeGen/SystemZ/cond-move-07.ll create mode 100644 test/CodeGen/SystemZ/cond-move-08.mir create mode 100644 test/CodeGen/SystemZ/ctpop-02.ll create mode 100644 test/CodeGen/SystemZ/not-01.ll create mode 100644 test/CodeGen/SystemZ/vec-bswap-01.ll create mode 100644 test/CodeGen/SystemZ/vec-bswap-02.ll create mode 100644 test/CodeGen/SystemZ/vec-bswap-03.ll create mode 100644 test/CodeGen/SystemZ/vec-bswap-04.ll create mode 100644 test/CodeGen/SystemZ/vec-bswap-05.ll create mode 100644 test/CodeGen/SystemZ/vec-bswap-06.ll create mode 100644 test/CodeGen/SystemZ/vec-bswap-07.ll create mode 100644 test/CodeGen/SystemZ/vec-conv-03.ll create mode 100644 test/CodeGen/SystemZ/vec-eswap-01.ll create mode 100644 test/CodeGen/SystemZ/vec-eswap-02.ll create mode 100644 test/CodeGen/SystemZ/vec-intrinsics-03.ll create mode 100644 test/MC/Disassembler/SystemZ/insns-arch13.txt create mode 100644 test/MC/SystemZ/insn-bad-arch13.s create mode 100644 test/MC/SystemZ/insn-good-arch13.s