[llvm] 44c9adb - [LoopFlatten][LoopInfo] Use Loop to identify latch compare instruction
Rosie Sumpter via llvm-commits
llvm-commits at lists.llvm.org
Wed Jul 21 02:16:05 PDT 2021
Author: Rosie Sumpter
Date: 2021-07-21T10:14:18+01:00
New Revision: 44c9adb414ad54d4ad3b95d7c774de6293fb4680
URL: https://github.com/llvm/llvm-project/commit/44c9adb414ad54d4ad3b95d7c774de6293fb4680
DIFF: https://github.com/llvm/llvm-project/commit/44c9adb414ad54d4ad3b95d7c774de6293fb4680.diff
LOG: [LoopFlatten][LoopInfo] Use Loop to identify latch compare instruction
Make getLatchCmpInst non-static and use it in LoopFlatten as a more
robust way of identifying the compare.
Differential Revision: https://reviews.llvm.org/D106256
Added:
Modified:
llvm/include/llvm/Analysis/LoopInfo.h
llvm/lib/Analysis/LoopInfo.cpp
llvm/lib/Transforms/Scalar/LoopFlatten.cpp
Removed:
################################################################################
diff --git a/llvm/include/llvm/Analysis/LoopInfo.h b/llvm/include/llvm/Analysis/LoopInfo.h
index 6e149b5d14fa9..164ec50e47bc5 100644
--- a/llvm/include/llvm/Analysis/LoopInfo.h
+++ b/llvm/include/llvm/Analysis/LoopInfo.h
@@ -589,6 +589,9 @@ class Loop : public LoopBase<BasicBlock, Loop> {
///
PHINode *getCanonicalInductionVariable() const;
+ /// Get the latch condition instruction.
+ ICmpInst *getLatchCmpInst() const;
+
/// Obtain the unique incoming and back edge. Return false if they are
/// non-unique or the loop is dead; otherwise, return true.
bool getIncomingAndBackEdge(BasicBlock *&Incoming,
diff --git a/llvm/lib/Analysis/LoopInfo.cpp b/llvm/lib/Analysis/LoopInfo.cpp
index f45cc12d46302..66aab4c195c8c 100644
--- a/llvm/lib/Analysis/LoopInfo.cpp
+++ b/llvm/lib/Analysis/LoopInfo.cpp
@@ -171,8 +171,8 @@ PHINode *Loop::getCanonicalInductionVariable() const {
}
/// Get the latch condition instruction.
-static ICmpInst *getLatchCmpInst(const Loop &L) {
- if (BasicBlock *Latch = L.getLoopLatch())
+ICmpInst *Loop::getLatchCmpInst() const {
+ if (BasicBlock *Latch = getLoopLatch())
if (BranchInst *BI = dyn_cast_or_null<BranchInst>(Latch->getTerminator()))
if (BI->isConditional())
return dyn_cast<ICmpInst>(BI->getCondition());
@@ -183,7 +183,7 @@ static ICmpInst *getLatchCmpInst(const Loop &L) {
/// Return the final value of the loop induction variable if found.
static Value *findFinalIVValue(const Loop &L, const PHINode &IndVar,
const Instruction &StepInst) {
- ICmpInst *LatchCmpInst = getLatchCmpInst(L);
+ ICmpInst *LatchCmpInst = L.getLatchCmpInst();
if (!LatchCmpInst)
return nullptr;
@@ -297,7 +297,7 @@ PHINode *Loop::getInductionVariable(ScalarEvolution &SE) const {
BasicBlock *Header = getHeader();
assert(Header && "Expected a valid loop header");
- ICmpInst *CmpInst = getLatchCmpInst(*this);
+ ICmpInst *CmpInst = getLatchCmpInst();
if (!CmpInst)
return nullptr;
diff --git a/llvm/lib/Transforms/Scalar/LoopFlatten.cpp b/llvm/lib/Transforms/Scalar/LoopFlatten.cpp
index 1cad134876a40..38bf0bca6cdd1 100644
--- a/llvm/lib/Transforms/Scalar/LoopFlatten.cpp
+++ b/llvm/lib/Transforms/Scalar/LoopFlatten.cpp
@@ -111,15 +111,6 @@ static bool findLoopComponents(
LLVM_DEBUG(dbgs() << "Exiting and latch block are
diff erent\n");
return false;
}
- // Latch block must end in a conditional branch.
- BackBranch = dyn_cast<BranchInst>(Latch->getTerminator());
- if (!BackBranch || !BackBranch->isConditional()) {
- LLVM_DEBUG(dbgs() << "Could not find back-branch\n");
- return false;
- }
- IterationInstructions.insert(BackBranch);
- LLVM_DEBUG(dbgs() << "Found back branch: "; BackBranch->dump());
- bool ContinueOnTrue = L->contains(BackBranch->getSuccessor(0));
// Find the induction PHI. If there is no induction PHI, we can't do the
// transformation. TODO: could other variables trigger this? Do we have to
@@ -131,6 +122,7 @@ static bool findLoopComponents(
}
LLVM_DEBUG(dbgs() << "Found induction PHI: "; InductionPHI->dump());
+ bool ContinueOnTrue = L->contains(Latch->getTerminator()->getSuccessor(0));
auto IsValidPredicate = [&](ICmpInst::Predicate Pred) {
if (ContinueOnTrue)
return Pred == CmpInst::ICMP_NE || Pred == CmpInst::ICMP_ULT;
@@ -138,13 +130,17 @@ static bool findLoopComponents(
return Pred == CmpInst::ICMP_EQ;
};
- // Find Compare and make sure it is valid
- ICmpInst *Compare = dyn_cast<ICmpInst>(BackBranch->getCondition());
+ // Find Compare and make sure it is valid. getLatchCmpInst checks that the
+ // back branch of the latch is conditional.
+ ICmpInst *Compare = L->getLatchCmpInst();
if (!Compare || !IsValidPredicate(Compare->getUnsignedPredicate()) ||
Compare->hasNUsesOrMore(2)) {
LLVM_DEBUG(dbgs() << "Could not find valid comparison\n");
return false;
}
+ BackBranch = cast<BranchInst>(Latch->getTerminator());
+ IterationInstructions.insert(BackBranch);
+ LLVM_DEBUG(dbgs() << "Found back branch: "; BackBranch->dump());
IterationInstructions.insert(Compare);
LLVM_DEBUG(dbgs() << "Found comparison: "; Compare->dump());
More information about the llvm-commits
mailing list