This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 63ff74f3d09 AMDGPU: Invert frame index offset interpretation new 6d04641df08 Revert "[AArch64][GlobalISel] Optimize G_FCMP + G_SELECT pa [...] new ef541629986 Allow target to handle STRICT floating-point nodes
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: include/llvm/CodeGen/MachineInstr.h | 15 +- include/llvm/CodeGen/SelectionDAGNodes.h | 17 +- include/llvm/MC/MCInstrDesc.h | 6 + include/llvm/Target/Target.td | 1 + include/llvm/Target/TargetSelectionDAG.td | 115 +++++++ lib/CodeGen/GlobalISel/InstructionSelector.cpp | 4 +- lib/CodeGen/ImplicitNullChecks.cpp | 3 +- lib/CodeGen/MIRParser/MILexer.cpp | 1 + lib/CodeGen/MIRParser/MILexer.h | 1 + lib/CodeGen/MIRParser/MIParser.cpp | 5 +- lib/CodeGen/MIRPrinter.cpp | 2 + lib/CodeGen/MachineCSE.cpp | 2 +- lib/CodeGen/MachineInstr.cpp | 4 +- lib/CodeGen/MachinePipeliner.cpp | 4 +- lib/CodeGen/PeepholeOptimizer.cpp | 2 +- lib/CodeGen/ScheduleDAGInstrs.cpp | 13 + lib/CodeGen/SelectionDAG/InstrEmitter.cpp | 3 + lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp | 7 + lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp | 18 +- lib/CodeGen/TargetInstrInfo.cpp | 3 +- lib/CodeGen/TargetLoweringBase.cpp | 28 ++ lib/Target/AArch64/AArch64InstructionSelector.cpp | 104 +----- lib/Target/SystemZ/SystemZISelLowering.cpp | 51 +++ lib/Target/SystemZ/SystemZInstrFP.td | 187 +++++------ lib/Target/SystemZ/SystemZInstrVector.td | 181 +++++------ lib/Target/SystemZ/SystemZOperators.td | 20 +- test/CodeGen/AArch64/GlobalISel/fold-fp-select.mir | 351 --------------------- test/CodeGen/SystemZ/fp-strict-add-01.ll | 173 ++++++++++ test/CodeGen/SystemZ/fp-strict-add-02.ll | 172 ++++++++++ test/CodeGen/SystemZ/fp-strict-add-03.ll | 25 ++ test/CodeGen/SystemZ/fp-strict-add-04.ll | 22 ++ test/CodeGen/SystemZ/fp-strict-alias.ll | 140 ++++++++ test/CodeGen/SystemZ/fp-strict-conv-01.ll | 95 ++++++ test/CodeGen/SystemZ/fp-strict-conv-02.ll | 33 ++ test/CodeGen/SystemZ/fp-strict-conv-03.ll | 35 ++ test/CodeGen/SystemZ/fp-strict-conv-04.ll | 35 ++ test/CodeGen/SystemZ/fp-strict-conv-15.ll | 64 ++++ test/CodeGen/SystemZ/fp-strict-div-01.ll | 173 ++++++++++ test/CodeGen/SystemZ/fp-strict-div-02.ll | 173 ++++++++++ test/CodeGen/SystemZ/fp-strict-div-03.ll | 25 ++ test/CodeGen/SystemZ/fp-strict-div-04.ll | 22 ++ test/CodeGen/SystemZ/fp-strict-mul-01.ll | 173 ++++++++++ test/CodeGen/SystemZ/fp-strict-mul-02.ll | 283 +++++++++++++++++ test/CodeGen/SystemZ/fp-strict-mul-03.ll | 173 ++++++++++ test/CodeGen/SystemZ/fp-strict-mul-04.ll | 314 ++++++++++++++++++ test/CodeGen/SystemZ/fp-strict-mul-05.ll | 25 ++ test/CodeGen/SystemZ/fp-strict-mul-06.ll | 137 ++++++++ test/CodeGen/SystemZ/fp-strict-mul-07.ll | 130 ++++++++ test/CodeGen/SystemZ/fp-strict-mul-08.ll | 145 +++++++++ test/CodeGen/SystemZ/fp-strict-mul-09.ll | 138 ++++++++ test/CodeGen/SystemZ/fp-strict-mul-10.ll | 55 ++++ test/CodeGen/SystemZ/fp-strict-mul-11.ll | 40 +++ test/CodeGen/SystemZ/fp-strict-round-01.ll | 250 +++++++++++++++ test/CodeGen/SystemZ/fp-strict-round-02.ll | 254 +++++++++++++++ test/CodeGen/SystemZ/fp-strict-round-03.ll | 262 +++++++++++++++ test/CodeGen/SystemZ/fp-strict-sqrt-01.ll | 94 ++++++ test/CodeGen/SystemZ/fp-strict-sqrt-02.ll | 94 ++++++ test/CodeGen/SystemZ/fp-strict-sqrt-03.ll | 23 ++ test/CodeGen/SystemZ/fp-strict-sqrt-04.ll | 20 ++ test/CodeGen/SystemZ/fp-strict-sub-01.ll | 173 ++++++++++ test/CodeGen/SystemZ/fp-strict-sub-02.ll | 173 ++++++++++ test/CodeGen/SystemZ/fp-strict-sub-03.ll | 25 ++ test/CodeGen/SystemZ/fp-strict-sub-04.ll | 22 ++ test/CodeGen/SystemZ/vec-strict-add-01.ll | 33 ++ test/CodeGen/SystemZ/vec-strict-add-02.ll | 33 ++ test/CodeGen/SystemZ/vec-strict-div-01.ll | 33 ++ test/CodeGen/SystemZ/vec-strict-div-02.ll | 33 ++ test/CodeGen/SystemZ/vec-strict-max-01.ll | 80 +++++ test/CodeGen/SystemZ/vec-strict-min-01.ll | 80 +++++ test/CodeGen/SystemZ/vec-strict-mul-01.ll | 33 ++ test/CodeGen/SystemZ/vec-strict-mul-02.ll | 36 +++ test/CodeGen/SystemZ/vec-strict-mul-03.ll | 33 ++ test/CodeGen/SystemZ/vec-strict-mul-04.ll | 37 +++ test/CodeGen/SystemZ/vec-strict-mul-05.ll | 75 +++++ test/CodeGen/SystemZ/vec-strict-round-01.ll | 155 +++++++++ test/CodeGen/SystemZ/vec-strict-round-02.ll | 154 +++++++++ test/CodeGen/SystemZ/vec-strict-sqrt-01.ll | 29 ++ test/CodeGen/SystemZ/vec-strict-sqrt-02.ll | 29 ++ test/CodeGen/SystemZ/vec-strict-sub-01.ll | 34 ++ test/CodeGen/SystemZ/vec-strict-sub-02.ll | 33 ++ .../SystemZ/vector-constrained-fp-intrinsics.ll | 334 ++++++++++---------- utils/TableGen/CodeGenInstruction.cpp | 1 + utils/TableGen/CodeGenInstruction.h | 1 + utils/TableGen/InstrInfoEmitter.cpp | 1 + 84 files changed, 5796 insertions(+), 819 deletions(-) delete mode 100644 test/CodeGen/AArch64/GlobalISel/fold-fp-select.mir create mode 100644 test/CodeGen/SystemZ/fp-strict-add-01.ll create mode 100644 test/CodeGen/SystemZ/fp-strict-add-02.ll create mode 100644 test/CodeGen/SystemZ/fp-strict-add-03.ll create mode 100644 test/CodeGen/SystemZ/fp-strict-add-04.ll create mode 100644 test/CodeGen/SystemZ/fp-strict-alias.ll create mode 100644 test/CodeGen/SystemZ/fp-strict-conv-01.ll create mode 100644 test/CodeGen/SystemZ/fp-strict-conv-02.ll create mode 100644 test/CodeGen/SystemZ/fp-strict-conv-03.ll create mode 100644 test/CodeGen/SystemZ/fp-strict-conv-04.ll create mode 100644 test/CodeGen/SystemZ/fp-strict-conv-15.ll create mode 100644 test/CodeGen/SystemZ/fp-strict-div-01.ll create mode 100644 test/CodeGen/SystemZ/fp-strict-div-02.ll create mode 100644 test/CodeGen/SystemZ/fp-strict-div-03.ll create mode 100644 test/CodeGen/SystemZ/fp-strict-div-04.ll create mode 100644 test/CodeGen/SystemZ/fp-strict-mul-01.ll create mode 100644 test/CodeGen/SystemZ/fp-strict-mul-02.ll create mode 100644 test/CodeGen/SystemZ/fp-strict-mul-03.ll create mode 100644 test/CodeGen/SystemZ/fp-strict-mul-04.ll create mode 100644 test/CodeGen/SystemZ/fp-strict-mul-05.ll create mode 100644 test/CodeGen/SystemZ/fp-strict-mul-06.ll create mode 100644 test/CodeGen/SystemZ/fp-strict-mul-07.ll create mode 100644 test/CodeGen/SystemZ/fp-strict-mul-08.ll create mode 100644 test/CodeGen/SystemZ/fp-strict-mul-09.ll create mode 100644 test/CodeGen/SystemZ/fp-strict-mul-10.ll create mode 100644 test/CodeGen/SystemZ/fp-strict-mul-11.ll create mode 100644 test/CodeGen/SystemZ/fp-strict-round-01.ll create mode 100644 test/CodeGen/SystemZ/fp-strict-round-02.ll create mode 100644 test/CodeGen/SystemZ/fp-strict-round-03.ll create mode 100644 test/CodeGen/SystemZ/fp-strict-sqrt-01.ll create mode 100644 test/CodeGen/SystemZ/fp-strict-sqrt-02.ll create mode 100644 test/CodeGen/SystemZ/fp-strict-sqrt-03.ll create mode 100644 test/CodeGen/SystemZ/fp-strict-sqrt-04.ll create mode 100644 test/CodeGen/SystemZ/fp-strict-sub-01.ll create mode 100644 test/CodeGen/SystemZ/fp-strict-sub-02.ll create mode 100644 test/CodeGen/SystemZ/fp-strict-sub-03.ll create mode 100644 test/CodeGen/SystemZ/fp-strict-sub-04.ll create mode 100644 test/CodeGen/SystemZ/vec-strict-add-01.ll create mode 100644 test/CodeGen/SystemZ/vec-strict-add-02.ll create mode 100644 test/CodeGen/SystemZ/vec-strict-div-01.ll create mode 100644 test/CodeGen/SystemZ/vec-strict-div-02.ll create mode 100644 test/CodeGen/SystemZ/vec-strict-max-01.ll create mode 100644 test/CodeGen/SystemZ/vec-strict-min-01.ll create mode 100644 test/CodeGen/SystemZ/vec-strict-mul-01.ll create mode 100644 test/CodeGen/SystemZ/vec-strict-mul-02.ll create mode 100644 test/CodeGen/SystemZ/vec-strict-mul-03.ll create mode 100644 test/CodeGen/SystemZ/vec-strict-mul-04.ll create mode 100644 test/CodeGen/SystemZ/vec-strict-mul-05.ll create mode 100644 test/CodeGen/SystemZ/vec-strict-round-01.ll create mode 100644 test/CodeGen/SystemZ/vec-strict-round-02.ll create mode 100644 test/CodeGen/SystemZ/vec-strict-sqrt-01.ll create mode 100644 test/CodeGen/SystemZ/vec-strict-sqrt-02.ll create mode 100644 test/CodeGen/SystemZ/vec-strict-sub-01.ll create mode 100644 test/CodeGen/SystemZ/vec-strict-sub-02.ll