This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch release_60 in repository llvm.
from 417182e1825 Backport of rL326666 and rL326668 for PR36607 and PR36608. new 84bc444011d Merging r325653 with test fixups:
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: lib/Target/Mips/AsmParser/MipsAsmParser.cpp | 1 + lib/Target/Mips/MicroMips32r6InstrInfo.td | 6 + lib/Target/Mips/MicroMipsInstrInfo.td | 6 + lib/Target/Mips/Mips.td | 4 + lib/Target/Mips/Mips32r6InstrInfo.td | 39 ++ lib/Target/Mips/Mips64InstrInfo.td | 34 +- lib/Target/Mips/Mips64r6InstrInfo.td | 30 + lib/Target/Mips/MipsDSPInstrFormats.td | 2 +- lib/Target/Mips/MipsInstrFormats.td | 4 +- lib/Target/Mips/MipsInstrInfo.cpp | 21 +- lib/Target/Mips/MipsInstrInfo.td | 55 +- lib/Target/Mips/MipsLongBranch.cpp | 19 +- lib/Target/Mips/MipsSubtarget.cpp | 16 +- lib/Target/Mips/MipsSubtarget.h | 7 + test/CodeGen/Mips/indirect-jump-hazard/calls.ll | 188 ++++++ .../indirect-jump-hazard/guards-verify-call.mir | 58 ++ .../guards-verify-tailcall.mir | 59 ++ .../Mips/indirect-jump-hazard/jumptables.ll | 649 +++++++++++++++++++++ .../Mips/indirect-jump-hazard/long-branch.ll | 138 +++++ .../Mips/indirect-jump-hazard/long-calls.ll | 113 ++++ .../indirect-jump-hazard/unsupported-micromips.ll | 5 + .../indirect-jump-hazard/unsupported-mips32.ll | 5 + 22 files changed, 1421 insertions(+), 38 deletions(-) create mode 100644 test/CodeGen/Mips/indirect-jump-hazard/calls.ll create mode 100644 test/CodeGen/Mips/indirect-jump-hazard/guards-verify-call.mir create mode 100644 test/CodeGen/Mips/indirect-jump-hazard/guards-verify-tailcall.mir create mode 100644 test/CodeGen/Mips/indirect-jump-hazard/jumptables.ll create mode 100644 test/CodeGen/Mips/indirect-jump-hazard/long-branch.ll create mode 100644 test/CodeGen/Mips/indirect-jump-hazard/long-calls.ll create mode 100644 test/CodeGen/Mips/indirect-jump-hazard/unsupported-micromips.ll create mode 100644 test/CodeGen/Mips/indirect-jump-hazard/unsupported-mips32.ll