summaryrefslogtreecommitdiff
path: root/lib/Analysis/LoopInfo.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-02-22 21:33:11 +0000
committerChris Lattner <sabre@nondot.org>2003-02-22 21:33:11 +0000
commit420df9bc781eb4d37e95f6394ccebf5952b15878 (patch)
treef0728086fef8209d282d6002b179261e90d1891d /lib/Analysis/LoopInfo.cpp
parent3a9a56e7b2f574b946edc0abb5dfa19e40f82ec1 (diff)
downloadllvm-420df9bc781eb4d37e95f6394ccebf5952b15878.tar.gz
llvm-420df9bc781eb4d37e95f6394ccebf5952b15878.tar.bz2
llvm-420df9bc781eb4d37e95f6394ccebf5952b15878.tar.xz
Dramatically simplify building of natural loops and fix a bug where the BBMap
was not correctly computed. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5606 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/LoopInfo.cpp')
-rw-r--r--lib/Analysis/LoopInfo.cpp60
1 files changed, 23 insertions, 37 deletions
diff --git a/lib/Analysis/LoopInfo.cpp b/lib/Analysis/LoopInfo.cpp
index 70bf97cacc..497732b958 100644
--- a/lib/Analysis/LoopInfo.cpp
+++ b/lib/Analysis/LoopInfo.cpp
@@ -60,6 +60,7 @@ void Loop::print(std::ostream &OS) const {
getSubLoops()[i]->print(OS);
}
+
//===----------------------------------------------------------------------===//
// LoopInfo implementation
//
@@ -101,6 +102,12 @@ void LoopInfo::getAnalysisUsage(AnalysisUsage &AU) const {
void LoopInfo::print(std::ostream &OS) const {
for (unsigned i = 0; i < TopLevelLoops.size(); ++i)
TopLevelLoops[i]->print(OS);
+#if 0
+ for (std::map<BasicBlock*, Loop*>::const_iterator I = BBMap.begin(),
+ E = BBMap.end(); I != E; ++I)
+ OS << "BB '" << I->first->getName() << "' level = "
+ << I->second->LoopDepth << "\n";
+#endif
}
Loop *LoopInfo::ConsiderForLoop(BasicBlock *BB, const DominatorSet &DS) {
@@ -132,45 +139,24 @@ Loop *LoopInfo::ConsiderForLoop(BasicBlock *BB, const DominatorSet &DS) {
}
}
+ // If there are any loops nested within this loop, create them now!
+ for (std::vector<BasicBlock*>::iterator I = L->Blocks.begin(),
+ E = L->Blocks.end(); I != E; ++I)
+ if (Loop *NewLoop = ConsiderForLoop(*I, DS)) {
+ L->SubLoops.push_back(NewLoop);
+ NewLoop->ParentLoop = L;
+ }
+
+
// Add the basic blocks that comprise this loop to the BBMap so that this
- // loop can be found for them. Also check subsidary basic blocks to see if
- // they start subloops of their own.
+ // loop can be found for them.
//
- for (std::vector<BasicBlock*>::reverse_iterator I = L->Blocks.rbegin(),
- E = L->Blocks.rend(); I != E; ++I)
-
- // Check to see if this block starts a new loop
- if (*I != BB)
- if (Loop *NewLoop = ConsiderForLoop(*I, DS)) {
- L->SubLoops.push_back(NewLoop);
- NewLoop->ParentLoop = L;
- } else {
- std::map<BasicBlock*, Loop*>::iterator BBMI = BBMap.lower_bound(*I);
- if (BBMI == BBMap.end() || BBMI->first != *I) { // Not in map yet...
- BBMap.insert(BBMI, std::make_pair(*I, L));
- } else {
- // If this is already in the BBMap then this means that we already
- // added a loop for it, but incorrectly added the loop to a higher
- // level loop instead of the current loop we are creating. Fix this
- // now by moving the loop into the correct subloop.
- //
- Loop *SubLoop = BBMI->second;
- if (SubLoop->getHeader() == *I) { // Only do this once for the loop...
- Loop *OldSubLoopParent = SubLoop->getParentLoop();
- if (OldSubLoopParent != L) {
- // Remove SubLoop from OldSubLoopParent's list of subloops...
- std::vector<Loop*>::iterator I =
- std::find(OldSubLoopParent->SubLoops.begin(),
- OldSubLoopParent->SubLoops.end(), SubLoop);
- assert(I != OldSubLoopParent->SubLoops.end()
- && "Loop parent doesn't contain loop?");
- OldSubLoopParent->SubLoops.erase(I);
- SubLoop->ParentLoop = L;
- L->SubLoops.push_back(SubLoop);
- }
- }
- }
- }
+ for (std::vector<BasicBlock*>::iterator I = L->Blocks.begin(),
+ E = L->Blocks.end(); I != E; ++I) {
+ std::map<BasicBlock*, Loop*>::iterator BBMI = BBMap.lower_bound(*I);
+ if (BBMI == BBMap.end() || BBMI->first != *I) // Not in map yet...
+ BBMap.insert(BBMI, std::make_pair(*I, L)); // Must be at this level
+ }
return L;
}