This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 2a793f6500a Fix infinite loop after r331115 new 488cbd2beb1 [SystemZ] Do not use glue to represent condition code dependencies new 815278b2cd8 [SystemZ] Handle SADDO et.al. and ADD/SUBCARRY
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/SystemZ/SystemZ.h | 16 + lib/Target/SystemZ/SystemZISelDAGToDAG.cpp | 223 ++++++++++- lib/Target/SystemZ/SystemZISelLowering.cpp | 449 +++++++++++++++++----- lib/Target/SystemZ/SystemZISelLowering.h | 26 +- lib/Target/SystemZ/SystemZInstrFormats.td | 78 ++-- lib/Target/SystemZ/SystemZInstrInfo.cpp | 47 +++ lib/Target/SystemZ/SystemZInstrInfo.td | 239 ++++++++---- lib/Target/SystemZ/SystemZOperands.td | 42 ++- lib/Target/SystemZ/SystemZOperators.td | 254 ++++++++----- lib/Target/SystemZ/SystemZRegisterInfo.cpp | 8 + lib/Target/SystemZ/SystemZRegisterInfo.h | 6 + lib/Target/SystemZ/SystemZRegisterInfo.td | 4 +- lib/Target/SystemZ/SystemZSelectionDAGInfo.cpp | 35 +- test/CodeGen/SystemZ/asm-18.ll | 75 ++++ test/CodeGen/SystemZ/cond-move-02.ll | 8 +- test/CodeGen/SystemZ/int-add-08.ll | 5 +- test/CodeGen/SystemZ/int-cmp-48.ll | 5 +- test/CodeGen/SystemZ/int-cmp-55.ll | 19 + test/CodeGen/SystemZ/int-sadd-01.ll | 325 ++++++++++++++++ test/CodeGen/SystemZ/int-sadd-02.ll | 253 +++++++++++++ test/CodeGen/SystemZ/int-sadd-03.ll | 269 ++++++++++++++ test/CodeGen/SystemZ/int-sadd-04.ll | 312 ++++++++++++++++ test/CodeGen/SystemZ/int-sadd-05.ll | 186 ++++++++++ test/CodeGen/SystemZ/int-sadd-06.ll | 212 +++++++++++ test/CodeGen/SystemZ/int-sadd-07.ll | 214 +++++++++++ test/CodeGen/SystemZ/int-sadd-08.ll | 490 +++++++++++++++++++++++++ test/CodeGen/SystemZ/int-sadd-09.ll | 490 +++++++++++++++++++++++++ test/CodeGen/SystemZ/int-ssub-01.ll | 325 ++++++++++++++++ test/CodeGen/SystemZ/int-ssub-02.ll | 253 +++++++++++++ test/CodeGen/SystemZ/int-ssub-03.ll | 269 ++++++++++++++ test/CodeGen/SystemZ/int-ssub-04.ll | 312 ++++++++++++++++ test/CodeGen/SystemZ/int-ssub-05.ll | 186 ++++++++++ test/CodeGen/SystemZ/int-ssub-06.ll | 248 +++++++++++++ test/CodeGen/SystemZ/int-ssub-07.ll | 214 +++++++++++ test/CodeGen/SystemZ/int-ssub-08.ll | 490 +++++++++++++++++++++++++ test/CodeGen/SystemZ/int-ssub-09.ll | 490 +++++++++++++++++++++++++ test/CodeGen/SystemZ/int-sub-05.ll | 5 +- test/CodeGen/SystemZ/int-uadd-01.ll | 314 ++++++++++++++++ test/CodeGen/SystemZ/int-uadd-02.ll | 261 +++++++++++++ test/CodeGen/SystemZ/int-uadd-03.ll | 304 +++++++++++++++ test/CodeGen/SystemZ/int-uadd-04.ll | 95 +++++ test/CodeGen/SystemZ/int-uadd-05.ll | 112 ++++++ test/CodeGen/SystemZ/int-uadd-06.ll | 80 ++++ test/CodeGen/SystemZ/int-uadd-07.ll | 80 ++++ test/CodeGen/SystemZ/int-uadd-08.ll | 142 +++++++ test/CodeGen/SystemZ/int-uadd-09.ll | 140 +++++++ test/CodeGen/SystemZ/int-uadd-10.ll | 480 ++++++++++++++++++++++++ test/CodeGen/SystemZ/int-uadd-11.ll | 349 ++++++++++++++++++ test/CodeGen/SystemZ/int-usub-01.ll | 325 ++++++++++++++++ test/CodeGen/SystemZ/int-usub-02.ll | 269 ++++++++++++++ test/CodeGen/SystemZ/int-usub-03.ll | 312 ++++++++++++++++ test/CodeGen/SystemZ/int-usub-04.ll | 98 +++++ test/CodeGen/SystemZ/int-usub-05.ll | 116 ++++++ test/CodeGen/SystemZ/int-usub-06.ll | 82 +++++ test/CodeGen/SystemZ/int-usub-07.ll | 82 +++++ test/CodeGen/SystemZ/int-usub-08.ll | 148 ++++++++ test/CodeGen/SystemZ/int-usub-09.ll | 145 ++++++++ test/CodeGen/SystemZ/int-usub-10.ll | 490 +++++++++++++++++++++++++ test/CodeGen/SystemZ/int-usub-11.ll | 359 ++++++++++++++++++ test/CodeGen/SystemZ/multiselect.ll | 21 ++ 60 files changed, 11558 insertions(+), 328 deletions(-) create mode 100644 test/CodeGen/SystemZ/int-cmp-55.ll create mode 100644 test/CodeGen/SystemZ/int-sadd-01.ll create mode 100644 test/CodeGen/SystemZ/int-sadd-02.ll create mode 100644 test/CodeGen/SystemZ/int-sadd-03.ll create mode 100644 test/CodeGen/SystemZ/int-sadd-04.ll create mode 100644 test/CodeGen/SystemZ/int-sadd-05.ll create mode 100644 test/CodeGen/SystemZ/int-sadd-06.ll create mode 100644 test/CodeGen/SystemZ/int-sadd-07.ll create mode 100644 test/CodeGen/SystemZ/int-sadd-08.ll create mode 100644 test/CodeGen/SystemZ/int-sadd-09.ll create mode 100644 test/CodeGen/SystemZ/int-ssub-01.ll create mode 100644 test/CodeGen/SystemZ/int-ssub-02.ll create mode 100644 test/CodeGen/SystemZ/int-ssub-03.ll create mode 100644 test/CodeGen/SystemZ/int-ssub-04.ll create mode 100644 test/CodeGen/SystemZ/int-ssub-05.ll create mode 100644 test/CodeGen/SystemZ/int-ssub-06.ll create mode 100644 test/CodeGen/SystemZ/int-ssub-07.ll create mode 100644 test/CodeGen/SystemZ/int-ssub-08.ll create mode 100644 test/CodeGen/SystemZ/int-ssub-09.ll create mode 100644 test/CodeGen/SystemZ/int-uadd-01.ll create mode 100644 test/CodeGen/SystemZ/int-uadd-02.ll create mode 100644 test/CodeGen/SystemZ/int-uadd-03.ll create mode 100644 test/CodeGen/SystemZ/int-uadd-04.ll create mode 100644 test/CodeGen/SystemZ/int-uadd-05.ll create mode 100644 test/CodeGen/SystemZ/int-uadd-06.ll create mode 100644 test/CodeGen/SystemZ/int-uadd-07.ll create mode 100644 test/CodeGen/SystemZ/int-uadd-08.ll create mode 100644 test/CodeGen/SystemZ/int-uadd-09.ll create mode 100644 test/CodeGen/SystemZ/int-uadd-10.ll create mode 100644 test/CodeGen/SystemZ/int-uadd-11.ll create mode 100644 test/CodeGen/SystemZ/int-usub-01.ll create mode 100644 test/CodeGen/SystemZ/int-usub-02.ll create mode 100644 test/CodeGen/SystemZ/int-usub-03.ll create mode 100644 test/CodeGen/SystemZ/int-usub-04.ll create mode 100644 test/CodeGen/SystemZ/int-usub-05.ll create mode 100644 test/CodeGen/SystemZ/int-usub-06.ll create mode 100644 test/CodeGen/SystemZ/int-usub-07.ll create mode 100644 test/CodeGen/SystemZ/int-usub-08.ll create mode 100644 test/CodeGen/SystemZ/int-usub-09.ll create mode 100644 test/CodeGen/SystemZ/int-usub-10.ll create mode 100644 test/CodeGen/SystemZ/int-usub-11.ll create mode 100644 test/CodeGen/SystemZ/multiselect.ll