This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 519b8ede8d3 [CVP] Require DomTree for new Pass Manager new edeb7b8e33a [mips] Revert Merge MipsLongBranch and MipsHazardSchedule passes new 4026a5fa20c revert r332610, it breaks cfi, see D46326
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/IR/Value.h | 6 + lib/IR/Value.cpp | 29 ++ lib/Target/Mips/CMakeLists.txt | 3 +- lib/Target/Mips/Mips.h | 5 +- lib/Target/Mips/MipsHazardSchedule.cpp | 163 +++++++ ...{MipsBranchExpansion.cpp => MipsLongBranch.cpp} | 468 +++++++-------------- lib/Target/Mips/MipsTargetMachine.cpp | 20 +- lib/Transforms/IPO/LowerTypeTests.cpp | 93 +--- test/CodeGen/Mips/branch-relaxation-with-hazard.ll | 64 --- .../Mips/longbranch/branch-limits-fp-micromips.mir | 4 +- .../longbranch/branch-limits-fp-micromipsr6.mir | 4 +- .../Mips/longbranch/branch-limits-fp-mips.mir | 4 +- .../Mips/longbranch/branch-limits-fp-mipsr6.mir | 4 +- .../longbranch/branch-limits-int-microMIPS.mir | 4 +- .../longbranch/branch-limits-int-micromipsr6.mir | 4 +- .../Mips/longbranch/branch-limits-int-mips64.mir | 4 +- .../Mips/longbranch/branch-limits-int-mips64r6.mir | 4 +- .../Mips/longbranch/branch-limits-int-mipsr6.mir | 4 +- test/CodeGen/Mips/longbranch/branch-limits-int.mir | 4 +- test/CodeGen/Mips/longbranch/branch-limits-msa.mir | 4 +- .../LowerTypeTests/Inputs/cfi-direct-call.yaml | 10 - .../LowerTypeTests/Inputs/cfi-direct-call1.yaml | 13 - test/Transforms/LowerTypeTests/blockaddress.ll | 2 +- test/Transforms/LowerTypeTests/cfi-direct-call.ll | 42 -- test/Transforms/LowerTypeTests/cfi-direct-call1.ll | 96 ----- test/Transforms/LowerTypeTests/export-icall.ll | 2 +- .../Transforms/LowerTypeTests/function-disjoint.ll | 4 +- test/Transforms/LowerTypeTests/function-weak.ll | 2 +- test/Transforms/LowerTypeTests/function.ll | 2 +- test/Transforms/LowerTypeTests/import-icall.ll | 6 +- test/Transforms/LowerTypeTests/section.ll | 2 +- 31 files changed, 405 insertions(+), 671 deletions(-) create mode 100644 lib/Target/Mips/MipsHazardSchedule.cpp rename lib/Target/Mips/{MipsBranchExpansion.cpp => MipsLongBranch.cpp} (55%) delete mode 100644 test/CodeGen/Mips/branch-relaxation-with-hazard.ll delete mode 100644 test/Transforms/LowerTypeTests/Inputs/cfi-direct-call.yaml delete mode 100644 test/Transforms/LowerTypeTests/Inputs/cfi-direct-call1.yaml delete mode 100644 test/Transforms/LowerTypeTests/cfi-direct-call.ll delete mode 100644 test/Transforms/LowerTypeTests/cfi-direct-call1.ll