diff options
author | David Majnemer <david.majnemer@gmail.com> | 2016-03-24 21:40:22 +0000 |
---|---|---|
committer | David Majnemer <david.majnemer@gmail.com> | 2016-03-24 21:40:22 +0000 |
commit | e09d035dad21efbcd98b3f8c58af75709cc034e5 (patch) | |
tree | 55b2c4a3b8a7c5e30f6d24e7450e00051f50b5ca /llvm/lib | |
parent | 3cf9ff12c51e1a446f019c001472f30024583fda (diff) | |
download | bcm5719-llvm-e09d035dad21efbcd98b3f8c58af75709cc034e5.tar.gz bcm5719-llvm-e09d035dad21efbcd98b3f8c58af75709cc034e5.zip |
[LoopStrengthReduce] Don't hoist into a catchswitch
We try to hoist the insertion point as high as possible to encourage
sharing. However, we must be careful not to hoist into a catchswitch as
it is both an EHPad and a terminator.
llvm-svn: 264344
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp b/llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp index acfdec43d21..746adeaf417 100644 --- a/llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp +++ b/llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp @@ -4353,6 +4353,11 @@ LSRInstance::HoistInsertPosition(BasicBlock::iterator IP, bool AllDominate = true; Instruction *BetterPos = nullptr; Instruction *Tentative = IDom->getTerminator(); + // Don't bother attempting to insert before a catchswitch, their basic block + // cannot have other non-PHI instructions. + if (isa<CatchSwitchInst>(Tentative)) + return IP; + for (Instruction *Inst : Inputs) { if (Inst == Tentative || !DT.dominates(Inst, Tentative)) { AllDominate = false; @@ -4426,7 +4431,7 @@ LSRInstance::AdjustInsertPositionForExpand(BasicBlock::iterator LowestIP, while (isa<PHINode>(IP)) ++IP; // Ignore landingpad instructions. - while (!isa<TerminatorInst>(IP) && IP->isEHPad()) ++IP; + while (IP->isEHPad()) ++IP; // Ignore debug intrinsics. while (isa<DbgInfoIntrinsic>(IP)) ++IP; |