Chris Lattner | cf3056d | 2003-10-13 03:32:08 +0000 | [diff] [blame] | 1 | //===- LoopInfo.cpp - Natural Loop Calculator -----------------------------===// |
Misha Brukman | 2b37d7c | 2005-04-21 21:13:18 +0000 | [diff] [blame] | 2 | // |
John Criswell | b576c94 | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file was developed by the LLVM research group and is distributed under |
| 6 | // the University of Illinois Open Source License. See LICENSE.TXT for details. |
Misha Brukman | 2b37d7c | 2005-04-21 21:13:18 +0000 | [diff] [blame] | 7 | // |
John Criswell | b576c94 | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
Chris Lattner | 0bbe58f | 2001-11-26 18:41:20 +0000 | [diff] [blame] | 9 | // |
| 10 | // This file defines the LoopInfo class that is used to identify natural loops |
| 11 | // and determine the loop depth of various nodes of the CFG. Note that the |
| 12 | // loops identified may actually be several natural loops that share the same |
| 13 | // header node... not just a single natural loop. |
| 14 | // |
| 15 | //===----------------------------------------------------------------------===// |
| 16 | |
Misha Brukman | 10d208d | 2004-01-30 17:26:24 +0000 | [diff] [blame] | 17 | #include "llvm/Analysis/LoopInfo.h" |
Chris Lattner | 92020fa | 2004-04-15 15:16:02 +0000 | [diff] [blame] | 18 | #include "llvm/Constants.h" |
| 19 | #include "llvm/Instructions.h" |
| 20 | #include "llvm/Analysis/Dominators.h" |
Chris Lattner | a59cbb2 | 2002-07-27 01:12:17 +0000 | [diff] [blame] | 21 | #include "llvm/Assembly/Writer.h" |
Misha Brukman | 10d208d | 2004-01-30 17:26:24 +0000 | [diff] [blame] | 22 | #include "llvm/Support/CFG.h" |
Bill Wendling | 6f81b51 | 2006-11-28 22:46:12 +0000 | [diff] [blame] | 23 | #include "llvm/Support/Streams.h" |
Reid Spencer | 551ccae | 2004-09-01 22:55:40 +0000 | [diff] [blame] | 24 | #include "llvm/ADT/DepthFirstIterator.h" |
Chris Lattner | b1f5d8b | 2007-03-04 04:06:39 +0000 | [diff] [blame] | 25 | #include "llvm/ADT/SmallPtrSet.h" |
Chris Lattner | 0bbe58f | 2001-11-26 18:41:20 +0000 | [diff] [blame] | 26 | #include <algorithm> |
Bill Wendling | 6f81b51 | 2006-11-28 22:46:12 +0000 | [diff] [blame] | 27 | #include <ostream> |
Chris Lattner | 46758a8 | 2004-04-12 20:26:17 +0000 | [diff] [blame] | 28 | using namespace llvm; |
Brian Gaeke | d0fde30 | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 29 | |
Devang Patel | 1997473 | 2007-05-03 01:11:54 +0000 | [diff] [blame] | 30 | char LoopInfo::ID = 0; |
Chris Lattner | 5d8925c | 2006-08-27 22:30:17 +0000 | [diff] [blame] | 31 | static RegisterPass<LoopInfo> |
Chris Lattner | 17689df | 2002-07-30 16:27:52 +0000 | [diff] [blame] | 32 | X("loops", "Natural Loop Construction", true); |
Chris Lattner | 93193f8 | 2002-01-31 00:42:27 +0000 | [diff] [blame] | 33 | |
| 34 | //===----------------------------------------------------------------------===// |
Chris Lattner | 1b7f7dc | 2002-04-28 16:21:30 +0000 | [diff] [blame] | 35 | // Loop implementation |
Chris Lattner | 93193f8 | 2002-01-31 00:42:27 +0000 | [diff] [blame] | 36 | // |
Chris Lattner | 0f99555 | 2002-06-03 22:10:52 +0000 | [diff] [blame] | 37 | bool Loop::contains(const BasicBlock *BB) const { |
Alkis Evlogimenos | 20aa474 | 2004-09-03 18:19:51 +0000 | [diff] [blame] | 38 | return std::find(Blocks.begin(), Blocks.end(), BB) != Blocks.end(); |
Chris Lattner | 0bbe58f | 2001-11-26 18:41:20 +0000 | [diff] [blame] | 39 | } |
| 40 | |
Misha Brukman | 6b290a5 | 2002-10-11 05:31:10 +0000 | [diff] [blame] | 41 | bool Loop::isLoopExit(const BasicBlock *BB) const { |
Chris Lattner | 03f252f | 2003-09-24 22:18:35 +0000 | [diff] [blame] | 42 | for (succ_const_iterator SI = succ_begin(BB), SE = succ_end(BB); |
Misha Brukman | 6b290a5 | 2002-10-11 05:31:10 +0000 | [diff] [blame] | 43 | SI != SE; ++SI) { |
Chris Lattner | 5f82b8a | 2003-02-27 00:38:34 +0000 | [diff] [blame] | 44 | if (!contains(*SI)) |
Misha Brukman | 6b290a5 | 2002-10-11 05:31:10 +0000 | [diff] [blame] | 45 | return true; |
| 46 | } |
| 47 | return false; |
| 48 | } |
| 49 | |
Chris Lattner | 2ef1236 | 2003-10-12 22:14:27 +0000 | [diff] [blame] | 50 | /// getNumBackEdges - Calculate the number of back edges to the loop header. |
| 51 | /// |
Misha Brukman | 6b290a5 | 2002-10-11 05:31:10 +0000 | [diff] [blame] | 52 | unsigned Loop::getNumBackEdges() const { |
Chris Lattner | 5f82b8a | 2003-02-27 00:38:34 +0000 | [diff] [blame] | 53 | unsigned NumBackEdges = 0; |
| 54 | BasicBlock *H = getHeader(); |
Misha Brukman | 6b290a5 | 2002-10-11 05:31:10 +0000 | [diff] [blame] | 55 | |
Chris Lattner | 2ef1236 | 2003-10-12 22:14:27 +0000 | [diff] [blame] | 56 | for (pred_iterator I = pred_begin(H), E = pred_end(H); I != E; ++I) |
| 57 | if (contains(*I)) |
| 58 | ++NumBackEdges; |
| 59 | |
Chris Lattner | 5f82b8a | 2003-02-27 00:38:34 +0000 | [diff] [blame] | 60 | return NumBackEdges; |
Misha Brukman | 6b290a5 | 2002-10-11 05:31:10 +0000 | [diff] [blame] | 61 | } |
| 62 | |
Chris Lattner | 85661d0 | 2004-04-18 22:45:27 +0000 | [diff] [blame] | 63 | /// isLoopInvariant - Return true if the specified value is loop invariant |
| 64 | /// |
| 65 | bool Loop::isLoopInvariant(Value *V) const { |
| 66 | if (Instruction *I = dyn_cast<Instruction>(V)) |
| 67 | return !contains(I->getParent()); |
| 68 | return true; // All non-instructions are loop invariant |
| 69 | } |
| 70 | |
Chris Lattner | 7dd46b0 | 2003-08-16 20:57:16 +0000 | [diff] [blame] | 71 | void Loop::print(std::ostream &OS, unsigned Depth) const { |
| 72 | OS << std::string(Depth*2, ' ') << "Loop Containing: "; |
Chris Lattner | a59cbb2 | 2002-07-27 01:12:17 +0000 | [diff] [blame] | 73 | |
| 74 | for (unsigned i = 0; i < getBlocks().size(); ++i) { |
| 75 | if (i) OS << ","; |
Chris Lattner | 5f82b8a | 2003-02-27 00:38:34 +0000 | [diff] [blame] | 76 | WriteAsOperand(OS, getBlocks()[i], false); |
Chris Lattner | a59cbb2 | 2002-07-27 01:12:17 +0000 | [diff] [blame] | 77 | } |
| 78 | OS << "\n"; |
| 79 | |
Chris Lattner | 329c1c6 | 2004-01-08 00:09:44 +0000 | [diff] [blame] | 80 | for (iterator I = begin(), E = end(); I != E; ++I) |
| 81 | (*I)->print(OS, Depth+2); |
Chris Lattner | a59cbb2 | 2002-07-27 01:12:17 +0000 | [diff] [blame] | 82 | } |
| 83 | |
Devang Patel | 58e0ef1 | 2007-07-19 18:02:32 +0000 | [diff] [blame] | 84 | /// verifyLoop - Verify loop structure |
| 85 | void Loop::verifyLoop() const { |
| 86 | #ifndef NDEBUG |
| 87 | assert (getHeader() && "Loop header is missing"); |
| 88 | assert (getLoopPreheader() && "Loop preheader is missing"); |
| 89 | assert (getLoopLatch() && "Loop latch is missing"); |
| 90 | for (std::vector<Loop*>::const_iterator I = SubLoops.begin(), E = SubLoops.end(); |
| 91 | I != E; ++I) |
| 92 | (*I)->verifyLoop(); |
| 93 | #endif |
| 94 | } |
| 95 | |
Chris Lattner | bb05f1e | 2003-02-28 16:54:45 +0000 | [diff] [blame] | 96 | void Loop::dump() const { |
Bill Wendling | e815619 | 2006-12-07 01:30:32 +0000 | [diff] [blame] | 97 | print(cerr); |
Chris Lattner | bb05f1e | 2003-02-28 16:54:45 +0000 | [diff] [blame] | 98 | } |
| 99 | |
Chris Lattner | 420df9b | 2003-02-22 21:33:11 +0000 | [diff] [blame] | 100 | |
Chris Lattner | a59cbb2 | 2002-07-27 01:12:17 +0000 | [diff] [blame] | 101 | //===----------------------------------------------------------------------===// |
| 102 | // LoopInfo implementation |
| 103 | // |
Chris Lattner | a59cbb2 | 2002-07-27 01:12:17 +0000 | [diff] [blame] | 104 | bool LoopInfo::runOnFunction(Function &) { |
| 105 | releaseMemory(); |
Devang Patel | 53c279b | 2007-06-08 00:17:13 +0000 | [diff] [blame] | 106 | Calculate(getAnalysis<DominatorTree>()); // Update |
Chris Lattner | a59cbb2 | 2002-07-27 01:12:17 +0000 | [diff] [blame] | 107 | return false; |
| 108 | } |
| 109 | |
Chris Lattner | 1b7f7dc | 2002-04-28 16:21:30 +0000 | [diff] [blame] | 110 | void LoopInfo::releaseMemory() { |
Chris Lattner | 918c4ec | 2002-04-09 05:43:19 +0000 | [diff] [blame] | 111 | for (std::vector<Loop*>::iterator I = TopLevelLoops.begin(), |
| 112 | E = TopLevelLoops.end(); I != E; ++I) |
| 113 | delete *I; // Delete all of the loops... |
| 114 | |
| 115 | BBMap.clear(); // Reset internal state of analysis |
| 116 | TopLevelLoops.clear(); |
| 117 | } |
| 118 | |
Devang Patel | 53c279b | 2007-06-08 00:17:13 +0000 | [diff] [blame] | 119 | void LoopInfo::Calculate(DominatorTree &DT) { |
| 120 | BasicBlock *RootNode = DT.getRootNode()->getBlock(); |
Chris Lattner | 0bbe58f | 2001-11-26 18:41:20 +0000 | [diff] [blame] | 121 | |
Chris Lattner | a298d27 | 2002-04-28 00:15:57 +0000 | [diff] [blame] | 122 | for (df_iterator<BasicBlock*> NI = df_begin(RootNode), |
Misha Brukman | dedf2bd | 2005-04-22 04:01:18 +0000 | [diff] [blame] | 123 | NE = df_end(RootNode); NI != NE; ++NI) |
Devang Patel | 53c279b | 2007-06-08 00:17:13 +0000 | [diff] [blame] | 124 | if (Loop *L = ConsiderForLoop(*NI, DT)) |
Chris Lattner | 0bbe58f | 2001-11-26 18:41:20 +0000 | [diff] [blame] | 125 | TopLevelLoops.push_back(L); |
Chris Lattner | 0bbe58f | 2001-11-26 18:41:20 +0000 | [diff] [blame] | 126 | } |
| 127 | |
Chris Lattner | 1b7f7dc | 2002-04-28 16:21:30 +0000 | [diff] [blame] | 128 | void LoopInfo::getAnalysisUsage(AnalysisUsage &AU) const { |
Chris Lattner | f57b845 | 2002-04-27 06:56:12 +0000 | [diff] [blame] | 129 | AU.setPreservesAll(); |
Devang Patel | 53c279b | 2007-06-08 00:17:13 +0000 | [diff] [blame] | 130 | AU.addRequired<DominatorTree>(); |
Chris Lattner | 93193f8 | 2002-01-31 00:42:27 +0000 | [diff] [blame] | 131 | } |
| 132 | |
Reid Spencer | ce9653c | 2004-12-07 04:03:45 +0000 | [diff] [blame] | 133 | void LoopInfo::print(std::ostream &OS, const Module* ) const { |
Chris Lattner | fce46ef | 2002-09-26 16:15:54 +0000 | [diff] [blame] | 134 | for (unsigned i = 0; i < TopLevelLoops.size(); ++i) |
| 135 | TopLevelLoops[i]->print(OS); |
Chris Lattner | 420df9b | 2003-02-22 21:33:11 +0000 | [diff] [blame] | 136 | #if 0 |
| 137 | for (std::map<BasicBlock*, Loop*>::const_iterator I = BBMap.begin(), |
| 138 | E = BBMap.end(); I != E; ++I) |
| 139 | OS << "BB '" << I->first->getName() << "' level = " |
Chris Lattner | 446b86d | 2004-04-19 03:02:09 +0000 | [diff] [blame] | 140 | << I->second->getLoopDepth() << "\n"; |
Chris Lattner | 420df9b | 2003-02-22 21:33:11 +0000 | [diff] [blame] | 141 | #endif |
Chris Lattner | a59cbb2 | 2002-07-27 01:12:17 +0000 | [diff] [blame] | 142 | } |
Chris Lattner | 93193f8 | 2002-01-31 00:42:27 +0000 | [diff] [blame] | 143 | |
Chris Lattner | 39c987a | 2003-05-15 18:03:51 +0000 | [diff] [blame] | 144 | static bool isNotAlreadyContainedIn(Loop *SubLoop, Loop *ParentLoop) { |
| 145 | if (SubLoop == 0) return true; |
| 146 | if (SubLoop == ParentLoop) return false; |
| 147 | return isNotAlreadyContainedIn(SubLoop->getParentLoop(), ParentLoop); |
| 148 | } |
| 149 | |
Devang Patel | 53c279b | 2007-06-08 00:17:13 +0000 | [diff] [blame] | 150 | Loop *LoopInfo::ConsiderForLoop(BasicBlock *BB, DominatorTree &DT) { |
Chris Lattner | 699b305 | 2002-09-26 05:32:50 +0000 | [diff] [blame] | 151 | if (BBMap.find(BB) != BBMap.end()) return 0; // Haven't processed this node? |
Chris Lattner | 0bbe58f | 2001-11-26 18:41:20 +0000 | [diff] [blame] | 152 | |
Chris Lattner | a298d27 | 2002-04-28 00:15:57 +0000 | [diff] [blame] | 153 | std::vector<BasicBlock *> TodoStack; |
Chris Lattner | 0bbe58f | 2001-11-26 18:41:20 +0000 | [diff] [blame] | 154 | |
| 155 | // Scan the predecessors of BB, checking to see if BB dominates any of |
Chris Lattner | 99224ae | 2003-04-26 19:34:18 +0000 | [diff] [blame] | 156 | // them. This identifies backedges which target this node... |
Chris Lattner | a298d27 | 2002-04-28 00:15:57 +0000 | [diff] [blame] | 157 | for (pred_iterator I = pred_begin(BB), E = pred_end(BB); I != E; ++I) |
Devang Patel | 53c279b | 2007-06-08 00:17:13 +0000 | [diff] [blame] | 158 | if (DT.dominates(BB, *I)) // If BB dominates it's predecessor... |
Chris Lattner | 0bbe58f | 2001-11-26 18:41:20 +0000 | [diff] [blame] | 159 | TodoStack.push_back(*I); |
| 160 | |
Chris Lattner | 99224ae | 2003-04-26 19:34:18 +0000 | [diff] [blame] | 161 | if (TodoStack.empty()) return 0; // No backedges to this block... |
Chris Lattner | 0bbe58f | 2001-11-26 18:41:20 +0000 | [diff] [blame] | 162 | |
| 163 | // Create a new loop to represent this basic block... |
| 164 | Loop *L = new Loop(BB); |
| 165 | BBMap[BB] = L; |
| 166 | |
Chris Lattner | 59dc178 | 2003-10-22 16:41:21 +0000 | [diff] [blame] | 167 | BasicBlock *EntryBlock = &BB->getParent()->getEntryBlock(); |
| 168 | |
Chris Lattner | 0bbe58f | 2001-11-26 18:41:20 +0000 | [diff] [blame] | 169 | while (!TodoStack.empty()) { // Process all the nodes in the loop |
Chris Lattner | a298d27 | 2002-04-28 00:15:57 +0000 | [diff] [blame] | 170 | BasicBlock *X = TodoStack.back(); |
Chris Lattner | 0bbe58f | 2001-11-26 18:41:20 +0000 | [diff] [blame] | 171 | TodoStack.pop_back(); |
| 172 | |
Chris Lattner | 59dc178 | 2003-10-22 16:41:21 +0000 | [diff] [blame] | 173 | if (!L->contains(X) && // As of yet unprocessed?? |
Devang Patel | 53c279b | 2007-06-08 00:17:13 +0000 | [diff] [blame] | 174 | DT.dominates(EntryBlock, X)) { // X is reachable from entry block? |
Chris Lattner | 99224ae | 2003-04-26 19:34:18 +0000 | [diff] [blame] | 175 | // Check to see if this block already belongs to a loop. If this occurs |
| 176 | // then we have a case where a loop that is supposed to be a child of the |
| 177 | // current loop was processed before the current loop. When this occurs, |
| 178 | // this child loop gets added to a part of the current loop, making it a |
| 179 | // sibling to the current loop. We have to reparent this loop. |
| 180 | if (Loop *SubLoop = const_cast<Loop*>(getLoopFor(X))) |
Chris Lattner | 39c987a | 2003-05-15 18:03:51 +0000 | [diff] [blame] | 181 | if (SubLoop->getHeader() == X && isNotAlreadyContainedIn(SubLoop, L)) { |
Chris Lattner | 99224ae | 2003-04-26 19:34:18 +0000 | [diff] [blame] | 182 | // Remove the subloop from it's current parent... |
| 183 | assert(SubLoop->ParentLoop && SubLoop->ParentLoop != L); |
| 184 | Loop *SLP = SubLoop->ParentLoop; // SubLoopParent |
| 185 | std::vector<Loop*>::iterator I = |
| 186 | std::find(SLP->SubLoops.begin(), SLP->SubLoops.end(), SubLoop); |
| 187 | assert(I != SLP->SubLoops.end() && "SubLoop not a child of parent?"); |
| 188 | SLP->SubLoops.erase(I); // Remove from parent... |
Misha Brukman | 2b37d7c | 2005-04-21 21:13:18 +0000 | [diff] [blame] | 189 | |
Chris Lattner | 99224ae | 2003-04-26 19:34:18 +0000 | [diff] [blame] | 190 | // Add the subloop to THIS loop... |
| 191 | SubLoop->ParentLoop = L; |
| 192 | L->SubLoops.push_back(SubLoop); |
| 193 | } |
| 194 | |
| 195 | // Normal case, add the block to our loop... |
Chris Lattner | 0bbe58f | 2001-11-26 18:41:20 +0000 | [diff] [blame] | 196 | L->Blocks.push_back(X); |
Misha Brukman | 2b37d7c | 2005-04-21 21:13:18 +0000 | [diff] [blame] | 197 | |
Chris Lattner | 0bbe58f | 2001-11-26 18:41:20 +0000 | [diff] [blame] | 198 | // Add all of the predecessors of X to the end of the work stack... |
Chris Lattner | 455889a | 2002-02-12 22:39:50 +0000 | [diff] [blame] | 199 | TodoStack.insert(TodoStack.end(), pred_begin(X), pred_end(X)); |
Chris Lattner | 0bbe58f | 2001-11-26 18:41:20 +0000 | [diff] [blame] | 200 | } |
| 201 | } |
| 202 | |
Chris Lattner | 420df9b | 2003-02-22 21:33:11 +0000 | [diff] [blame] | 203 | // If there are any loops nested within this loop, create them now! |
| 204 | for (std::vector<BasicBlock*>::iterator I = L->Blocks.begin(), |
Misha Brukman | dedf2bd | 2005-04-22 04:01:18 +0000 | [diff] [blame] | 205 | E = L->Blocks.end(); I != E; ++I) |
Devang Patel | 53c279b | 2007-06-08 00:17:13 +0000 | [diff] [blame] | 206 | if (Loop *NewLoop = ConsiderForLoop(*I, DT)) { |
Chris Lattner | 420df9b | 2003-02-22 21:33:11 +0000 | [diff] [blame] | 207 | L->SubLoops.push_back(NewLoop); |
| 208 | NewLoop->ParentLoop = L; |
| 209 | } |
Chris Lattner | 0bbe58f | 2001-11-26 18:41:20 +0000 | [diff] [blame] | 210 | |
Chris Lattner | 420df9b | 2003-02-22 21:33:11 +0000 | [diff] [blame] | 211 | // Add the basic blocks that comprise this loop to the BBMap so that this |
| 212 | // loop can be found for them. |
| 213 | // |
| 214 | for (std::vector<BasicBlock*>::iterator I = L->Blocks.begin(), |
Misha Brukman | dedf2bd | 2005-04-22 04:01:18 +0000 | [diff] [blame] | 215 | E = L->Blocks.end(); I != E; ++I) { |
Chris Lattner | 420df9b | 2003-02-22 21:33:11 +0000 | [diff] [blame] | 216 | std::map<BasicBlock*, Loop*>::iterator BBMI = BBMap.lower_bound(*I); |
| 217 | if (BBMI == BBMap.end() || BBMI->first != *I) // Not in map yet... |
| 218 | BBMap.insert(BBMI, std::make_pair(*I, L)); // Must be at this level |
| 219 | } |
Chris Lattner | 0bbe58f | 2001-11-26 18:41:20 +0000 | [diff] [blame] | 220 | |
Chris Lattner | 7dd46b0 | 2003-08-16 20:57:16 +0000 | [diff] [blame] | 221 | // Now that we have a list of all of the child loops of this loop, check to |
| 222 | // see if any of them should actually be nested inside of each other. We can |
| 223 | // accidentally pull loops our of their parents, so we must make sure to |
| 224 | // organize the loop nests correctly now. |
| 225 | { |
| 226 | std::map<BasicBlock*, Loop*> ContainingLoops; |
| 227 | for (unsigned i = 0; i != L->SubLoops.size(); ++i) { |
| 228 | Loop *Child = L->SubLoops[i]; |
| 229 | assert(Child->getParentLoop() == L && "Not proper child loop?"); |
| 230 | |
| 231 | if (Loop *ContainingLoop = ContainingLoops[Child->getHeader()]) { |
| 232 | // If there is already a loop which contains this loop, move this loop |
| 233 | // into the containing loop. |
| 234 | MoveSiblingLoopInto(Child, ContainingLoop); |
| 235 | --i; // The loop got removed from the SubLoops list. |
| 236 | } else { |
| 237 | // This is currently considered to be a top-level loop. Check to see if |
| 238 | // any of the contained blocks are loop headers for subloops we have |
| 239 | // already processed. |
| 240 | for (unsigned b = 0, e = Child->Blocks.size(); b != e; ++b) { |
| 241 | Loop *&BlockLoop = ContainingLoops[Child->Blocks[b]]; |
| 242 | if (BlockLoop == 0) { // Child block not processed yet... |
| 243 | BlockLoop = Child; |
| 244 | } else if (BlockLoop != Child) { |
Chris Lattner | 169db9d | 2003-08-17 21:47:33 +0000 | [diff] [blame] | 245 | Loop *SubLoop = BlockLoop; |
| 246 | // Reparent all of the blocks which used to belong to BlockLoops |
| 247 | for (unsigned j = 0, e = SubLoop->Blocks.size(); j != e; ++j) |
| 248 | ContainingLoops[SubLoop->Blocks[j]] = Child; |
| 249 | |
Chris Lattner | 7dd46b0 | 2003-08-16 20:57:16 +0000 | [diff] [blame] | 250 | // There is already a loop which contains this block, that means |
| 251 | // that we should reparent the loop which the block is currently |
| 252 | // considered to belong to to be a child of this loop. |
Chris Lattner | 169db9d | 2003-08-17 21:47:33 +0000 | [diff] [blame] | 253 | MoveSiblingLoopInto(SubLoop, Child); |
Chris Lattner | 7dd46b0 | 2003-08-16 20:57:16 +0000 | [diff] [blame] | 254 | --i; // We just shrunk the SubLoops list. |
| 255 | } |
| 256 | } |
Misha Brukman | 2b37d7c | 2005-04-21 21:13:18 +0000 | [diff] [blame] | 257 | } |
Chris Lattner | 7dd46b0 | 2003-08-16 20:57:16 +0000 | [diff] [blame] | 258 | } |
| 259 | } |
| 260 | |
Chris Lattner | 0bbe58f | 2001-11-26 18:41:20 +0000 | [diff] [blame] | 261 | return L; |
| 262 | } |
Chris Lattner | 699b305 | 2002-09-26 05:32:50 +0000 | [diff] [blame] | 263 | |
Chris Lattner | 7dd46b0 | 2003-08-16 20:57:16 +0000 | [diff] [blame] | 264 | /// MoveSiblingLoopInto - This method moves the NewChild loop to live inside of |
| 265 | /// the NewParent Loop, instead of being a sibling of it. |
| 266 | void LoopInfo::MoveSiblingLoopInto(Loop *NewChild, Loop *NewParent) { |
| 267 | Loop *OldParent = NewChild->getParentLoop(); |
| 268 | assert(OldParent && OldParent == NewParent->getParentLoop() && |
| 269 | NewChild != NewParent && "Not sibling loops!"); |
| 270 | |
| 271 | // Remove NewChild from being a child of OldParent |
| 272 | std::vector<Loop*>::iterator I = |
| 273 | std::find(OldParent->SubLoops.begin(), OldParent->SubLoops.end(), NewChild); |
| 274 | assert(I != OldParent->SubLoops.end() && "Parent fields incorrect??"); |
| 275 | OldParent->SubLoops.erase(I); // Remove from parent's subloops list |
| 276 | NewChild->ParentLoop = 0; |
Misha Brukman | 2b37d7c | 2005-04-21 21:13:18 +0000 | [diff] [blame] | 277 | |
| 278 | InsertLoopInto(NewChild, NewParent); |
Chris Lattner | 7dd46b0 | 2003-08-16 20:57:16 +0000 | [diff] [blame] | 279 | } |
| 280 | |
| 281 | /// InsertLoopInto - This inserts loop L into the specified parent loop. If the |
| 282 | /// parent loop contains a loop which should contain L, the loop gets inserted |
| 283 | /// into L instead. |
| 284 | void LoopInfo::InsertLoopInto(Loop *L, Loop *Parent) { |
| 285 | BasicBlock *LHeader = L->getHeader(); |
| 286 | assert(Parent->contains(LHeader) && "This loop should not be inserted here!"); |
Misha Brukman | 2b37d7c | 2005-04-21 21:13:18 +0000 | [diff] [blame] | 287 | |
Chris Lattner | 7dd46b0 | 2003-08-16 20:57:16 +0000 | [diff] [blame] | 288 | // Check to see if it belongs in a child loop... |
| 289 | for (unsigned i = 0, e = Parent->SubLoops.size(); i != e; ++i) |
| 290 | if (Parent->SubLoops[i]->contains(LHeader)) { |
| 291 | InsertLoopInto(L, Parent->SubLoops[i]); |
| 292 | return; |
Misha Brukman | 2b37d7c | 2005-04-21 21:13:18 +0000 | [diff] [blame] | 293 | } |
Chris Lattner | 7dd46b0 | 2003-08-16 20:57:16 +0000 | [diff] [blame] | 294 | |
| 295 | // If not, insert it here! |
| 296 | Parent->SubLoops.push_back(L); |
| 297 | L->ParentLoop = Parent; |
| 298 | } |
| 299 | |
Chris Lattner | 46758a8 | 2004-04-12 20:26:17 +0000 | [diff] [blame] | 300 | /// changeLoopFor - Change the top-level loop that contains BB to the |
| 301 | /// specified loop. This should be used by transformations that restructure |
| 302 | /// the loop hierarchy tree. |
| 303 | void LoopInfo::changeLoopFor(BasicBlock *BB, Loop *L) { |
| 304 | Loop *&OldLoop = BBMap[BB]; |
| 305 | assert(OldLoop && "Block not in a loop yet!"); |
| 306 | OldLoop = L; |
| 307 | } |
Chris Lattner | 7dd46b0 | 2003-08-16 20:57:16 +0000 | [diff] [blame] | 308 | |
Chris Lattner | 46758a8 | 2004-04-12 20:26:17 +0000 | [diff] [blame] | 309 | /// changeTopLevelLoop - Replace the specified loop in the top-level loops |
| 310 | /// list with the indicated loop. |
| 311 | void LoopInfo::changeTopLevelLoop(Loop *OldLoop, Loop *NewLoop) { |
| 312 | std::vector<Loop*>::iterator I = std::find(TopLevelLoops.begin(), |
| 313 | TopLevelLoops.end(), OldLoop); |
| 314 | assert(I != TopLevelLoops.end() && "Old loop not at top level!"); |
| 315 | *I = NewLoop; |
| 316 | assert(NewLoop->ParentLoop == 0 && OldLoop->ParentLoop == 0 && |
| 317 | "Loops already embedded into a subloop!"); |
| 318 | } |
Chris Lattner | 7dd46b0 | 2003-08-16 20:57:16 +0000 | [diff] [blame] | 319 | |
Chris Lattner | 24199db | 2004-04-18 05:38:05 +0000 | [diff] [blame] | 320 | /// removeLoop - This removes the specified top-level loop from this loop info |
| 321 | /// object. The loop is not deleted, as it will presumably be inserted into |
| 322 | /// another loop. |
| 323 | Loop *LoopInfo::removeLoop(iterator I) { |
| 324 | assert(I != end() && "Cannot remove end iterator!"); |
| 325 | Loop *L = *I; |
| 326 | assert(L->getParentLoop() == 0 && "Not a top-level loop!"); |
| 327 | TopLevelLoops.erase(TopLevelLoops.begin() + (I-begin())); |
| 328 | return L; |
| 329 | } |
| 330 | |
Chris Lattner | 3048bd1 | 2004-04-18 06:54:48 +0000 | [diff] [blame] | 331 | /// removeBlock - This method completely removes BB from all data structures, |
| 332 | /// including all of the Loop objects it is nested in and our mapping from |
| 333 | /// BasicBlocks to loops. |
| 334 | void LoopInfo::removeBlock(BasicBlock *BB) { |
| 335 | std::map<BasicBlock *, Loop*>::iterator I = BBMap.find(BB); |
| 336 | if (I != BBMap.end()) { |
| 337 | for (Loop *L = I->second; L; L = L->getParentLoop()) |
| 338 | L->removeBlockFromLoop(BB); |
Misha Brukman | 2b37d7c | 2005-04-21 21:13:18 +0000 | [diff] [blame] | 339 | |
Chris Lattner | 3048bd1 | 2004-04-18 06:54:48 +0000 | [diff] [blame] | 340 | BBMap.erase(I); |
| 341 | } |
| 342 | } |
Chris Lattner | 24199db | 2004-04-18 05:38:05 +0000 | [diff] [blame] | 343 | |
| 344 | |
Chris Lattner | 92020fa | 2004-04-15 15:16:02 +0000 | [diff] [blame] | 345 | //===----------------------------------------------------------------------===// |
| 346 | // APIs for simple analysis of the loop. |
| 347 | // |
| 348 | |
Chris Lattner | 7466ebf | 2006-10-28 01:24:05 +0000 | [diff] [blame] | 349 | /// getExitingBlocks - Return all blocks inside the loop that have successors |
| 350 | /// outside of the loop. These are the blocks _inside of the current loop_ |
| 351 | /// which branch out. The returned list is always unique. |
| 352 | /// |
Devang Patel | 7c6c55d | 2007-08-21 16:39:43 +0000 | [diff] [blame] | 353 | void Loop::getExitingBlocks(SmallVectorImpl<BasicBlock*> &ExitingBlocks) const { |
Chris Lattner | 7466ebf | 2006-10-28 01:24:05 +0000 | [diff] [blame] | 354 | // Sort the blocks vector so that we can use binary search to do quick |
| 355 | // lookups. |
Devang Patel | e79bad6 | 2007-08-21 16:54:51 +0000 | [diff] [blame] | 356 | SmallVector<BasicBlock*, 128> LoopBBs(block_begin(), block_end()); |
Chris Lattner | 7466ebf | 2006-10-28 01:24:05 +0000 | [diff] [blame] | 357 | std::sort(LoopBBs.begin(), LoopBBs.end()); |
| 358 | |
| 359 | for (std::vector<BasicBlock*>::const_iterator BI = Blocks.begin(), |
| 360 | BE = Blocks.end(); BI != BE; ++BI) |
| 361 | for (succ_iterator I = succ_begin(*BI), E = succ_end(*BI); I != E; ++I) |
| 362 | if (!std::binary_search(LoopBBs.begin(), LoopBBs.end(), *I)) { |
| 363 | // Not in current loop? It must be an exit block. |
| 364 | ExitingBlocks.push_back(*BI); |
| 365 | break; |
| 366 | } |
| 367 | } |
| 368 | |
Chris Lattner | f1ab4b4 | 2004-04-18 22:14:10 +0000 | [diff] [blame] | 369 | /// getExitBlocks - Return all of the successor blocks of this loop. These |
| 370 | /// are the blocks _outside of the current loop_ which are branched to. |
| 371 | /// |
Devang Patel | 7c6c55d | 2007-08-21 16:39:43 +0000 | [diff] [blame] | 372 | void Loop::getExitBlocks(SmallVectorImpl<BasicBlock*> &ExitBlocks) const { |
Chris Lattner | 69b3992 | 2006-08-12 05:02:03 +0000 | [diff] [blame] | 373 | // Sort the blocks vector so that we can use binary search to do quick |
| 374 | // lookups. |
Devang Patel | e79bad6 | 2007-08-21 16:54:51 +0000 | [diff] [blame] | 375 | SmallVector<BasicBlock*, 128> LoopBBs(block_begin(), block_end()); |
Chris Lattner | 69b3992 | 2006-08-12 05:02:03 +0000 | [diff] [blame] | 376 | std::sort(LoopBBs.begin(), LoopBBs.end()); |
| 377 | |
Chris Lattner | f1ab4b4 | 2004-04-18 22:14:10 +0000 | [diff] [blame] | 378 | for (std::vector<BasicBlock*>::const_iterator BI = Blocks.begin(), |
Chris Lattner | 69b3992 | 2006-08-12 05:02:03 +0000 | [diff] [blame] | 379 | BE = Blocks.end(); BI != BE; ++BI) |
Chris Lattner | f1ab4b4 | 2004-04-18 22:14:10 +0000 | [diff] [blame] | 380 | for (succ_iterator I = succ_begin(*BI), E = succ_end(*BI); I != E; ++I) |
Chris Lattner | 69b3992 | 2006-08-12 05:02:03 +0000 | [diff] [blame] | 381 | if (!std::binary_search(LoopBBs.begin(), LoopBBs.end(), *I)) |
| 382 | // Not in current loop? It must be an exit block. |
| 383 | ExitBlocks.push_back(*I); |
Chris Lattner | f1ab4b4 | 2004-04-18 22:14:10 +0000 | [diff] [blame] | 384 | } |
| 385 | |
Devang Patel | 4b8f36f | 2006-08-29 22:29:16 +0000 | [diff] [blame] | 386 | /// getUniqueExitBlocks - Return all unique successor blocks of this loop. These |
| 387 | /// are the blocks _outside of the current loop_ which are branched to. This |
| 388 | /// assumes that loop is in canonical form. |
| 389 | // |
Devang Patel | 7c6c55d | 2007-08-21 16:39:43 +0000 | [diff] [blame] | 390 | void Loop::getUniqueExitBlocks(SmallVectorImpl<BasicBlock*> &ExitBlocks) const { |
Devang Patel | 4b8f36f | 2006-08-29 22:29:16 +0000 | [diff] [blame] | 391 | // Sort the blocks vector so that we can use binary search to do quick |
| 392 | // lookups. |
Devang Patel | e79bad6 | 2007-08-21 16:54:51 +0000 | [diff] [blame] | 393 | SmallVector<BasicBlock*, 128> LoopBBs(block_begin(), block_end()); |
Devang Patel | 4b8f36f | 2006-08-29 22:29:16 +0000 | [diff] [blame] | 394 | std::sort(LoopBBs.begin(), LoopBBs.end()); |
| 395 | |
| 396 | std::vector<BasicBlock*> switchExitBlocks; |
| 397 | |
| 398 | for (std::vector<BasicBlock*>::const_iterator BI = Blocks.begin(), |
| 399 | BE = Blocks.end(); BI != BE; ++BI) { |
| 400 | |
| 401 | BasicBlock *current = *BI; |
| 402 | switchExitBlocks.clear(); |
| 403 | |
| 404 | for (succ_iterator I = succ_begin(*BI), E = succ_end(*BI); I != E; ++I) { |
| 405 | if (std::binary_search(LoopBBs.begin(), LoopBBs.end(), *I)) |
| 406 | // If block is inside the loop then it is not a exit block. |
| 407 | continue; |
| 408 | |
| 409 | pred_iterator PI = pred_begin(*I); |
| 410 | BasicBlock *firstPred = *PI; |
| 411 | |
| 412 | // If current basic block is this exit block's first predecessor |
| 413 | // then only insert exit block in to the output ExitBlocks vector. |
| 414 | // This ensures that same exit block is not inserted twice into |
| 415 | // ExitBlocks vector. |
| 416 | if (current != firstPred) |
| 417 | continue; |
| 418 | |
| 419 | // If a terminator has more then two successors, for example SwitchInst, |
| 420 | // then it is possible that there are multiple edges from current block |
| 421 | // to one exit block. |
| 422 | if (current->getTerminator()->getNumSuccessors() <= 2) { |
| 423 | ExitBlocks.push_back(*I); |
| 424 | continue; |
| 425 | } |
| 426 | |
| 427 | // In case of multiple edges from current block to exit block, collect |
| 428 | // only one edge in ExitBlocks. Use switchExitBlocks to keep track of |
| 429 | // duplicate edges. |
| 430 | if (std::find(switchExitBlocks.begin(), switchExitBlocks.end(), *I) |
| 431 | == switchExitBlocks.end()) { |
| 432 | switchExitBlocks.push_back(*I); |
| 433 | ExitBlocks.push_back(*I); |
| 434 | } |
| 435 | } |
| 436 | } |
| 437 | } |
| 438 | |
Chris Lattner | f1ab4b4 | 2004-04-18 22:14:10 +0000 | [diff] [blame] | 439 | |
Chris Lattner | 699b305 | 2002-09-26 05:32:50 +0000 | [diff] [blame] | 440 | /// getLoopPreheader - If there is a preheader for this loop, return it. A |
| 441 | /// loop has a preheader if there is only one edge to the header of the loop |
| 442 | /// from outside of the loop. If this is the case, the block branching to the |
Chris Lattner | 92020fa | 2004-04-15 15:16:02 +0000 | [diff] [blame] | 443 | /// header of the loop is the preheader node. |
Chris Lattner | 699b305 | 2002-09-26 05:32:50 +0000 | [diff] [blame] | 444 | /// |
Chris Lattner | 92020fa | 2004-04-15 15:16:02 +0000 | [diff] [blame] | 445 | /// This method returns null if there is no preheader for the loop. |
Chris Lattner | 699b305 | 2002-09-26 05:32:50 +0000 | [diff] [blame] | 446 | /// |
| 447 | BasicBlock *Loop::getLoopPreheader() const { |
| 448 | // Keep track of nodes outside the loop branching to the header... |
| 449 | BasicBlock *Out = 0; |
| 450 | |
| 451 | // Loop over the predecessors of the header node... |
| 452 | BasicBlock *Header = getHeader(); |
| 453 | for (pred_iterator PI = pred_begin(Header), PE = pred_end(Header); |
| 454 | PI != PE; ++PI) |
Chris Lattner | c8f25d9 | 2002-09-29 22:59:29 +0000 | [diff] [blame] | 455 | if (!contains(*PI)) { // If the block is not in the loop... |
| 456 | if (Out && Out != *PI) |
| 457 | return 0; // Multiple predecessors outside the loop |
Chris Lattner | 699b305 | 2002-09-26 05:32:50 +0000 | [diff] [blame] | 458 | Out = *PI; |
| 459 | } |
Misha Brukman | 2b37d7c | 2005-04-21 21:13:18 +0000 | [diff] [blame] | 460 | |
Chris Lattner | 60330ff | 2006-02-14 20:14:17 +0000 | [diff] [blame] | 461 | // Make sure there is only one exit out of the preheader. |
| 462 | assert(Out && "Header of loop has no predecessors from outside loop?"); |
Chris Lattner | 5a8a291 | 2003-02-27 21:51:38 +0000 | [diff] [blame] | 463 | succ_iterator SI = succ_begin(Out); |
| 464 | ++SI; |
| 465 | if (SI != succ_end(Out)) |
| 466 | return 0; // Multiple exits from the block, must not be a preheader. |
| 467 | |
Chris Lattner | 699b305 | 2002-09-26 05:32:50 +0000 | [diff] [blame] | 468 | // If there is exactly one preheader, return it. If there was zero, then Out |
| 469 | // is still null. |
| 470 | return Out; |
| 471 | } |
| 472 | |
Chris Lattner | b6a69e7 | 2005-09-12 17:03:55 +0000 | [diff] [blame] | 473 | /// getLoopLatch - If there is a latch block for this loop, return it. A |
| 474 | /// latch block is the canonical backedge for a loop. A loop header in normal |
| 475 | /// form has two edges into it: one from a preheader and one from a latch |
| 476 | /// block. |
| 477 | BasicBlock *Loop::getLoopLatch() const { |
| 478 | BasicBlock *Header = getHeader(); |
| 479 | pred_iterator PI = pred_begin(Header), PE = pred_end(Header); |
| 480 | if (PI == PE) return 0; // no preds? |
| 481 | |
| 482 | BasicBlock *Latch = 0; |
| 483 | if (contains(*PI)) |
| 484 | Latch = *PI; |
| 485 | ++PI; |
| 486 | if (PI == PE) return 0; // only one pred? |
| 487 | |
| 488 | if (contains(*PI)) { |
| 489 | if (Latch) return 0; // multiple backedges |
| 490 | Latch = *PI; |
| 491 | } |
| 492 | ++PI; |
| 493 | if (PI != PE) return 0; // more than two preds |
| 494 | |
| 495 | return Latch; |
| 496 | } |
| 497 | |
Chris Lattner | 92020fa | 2004-04-15 15:16:02 +0000 | [diff] [blame] | 498 | /// getCanonicalInductionVariable - Check to see if the loop has a canonical |
| 499 | /// induction variable: an integer recurrence that starts at 0 and increments by |
| 500 | /// one each time through the loop. If so, return the phi node that corresponds |
| 501 | /// to it. |
| 502 | /// |
| 503 | PHINode *Loop::getCanonicalInductionVariable() const { |
| 504 | BasicBlock *H = getHeader(); |
| 505 | |
| 506 | BasicBlock *Incoming = 0, *Backedge = 0; |
| 507 | pred_iterator PI = pred_begin(H); |
| 508 | assert(PI != pred_end(H) && "Loop must have at least one backedge!"); |
| 509 | Backedge = *PI++; |
| 510 | if (PI == pred_end(H)) return 0; // dead loop |
| 511 | Incoming = *PI++; |
| 512 | if (PI != pred_end(H)) return 0; // multiple backedges? |
| 513 | |
| 514 | if (contains(Incoming)) { |
| 515 | if (contains(Backedge)) |
| 516 | return 0; |
| 517 | std::swap(Incoming, Backedge); |
| 518 | } else if (!contains(Backedge)) |
| 519 | return 0; |
| 520 | |
| 521 | // Loop over all of the PHI nodes, looking for a canonical indvar. |
Reid Spencer | 2da5c3d | 2004-09-15 17:06:42 +0000 | [diff] [blame] | 522 | for (BasicBlock::iterator I = H->begin(); isa<PHINode>(I); ++I) { |
| 523 | PHINode *PN = cast<PHINode>(I); |
Chris Lattner | 92020fa | 2004-04-15 15:16:02 +0000 | [diff] [blame] | 524 | if (Instruction *Inc = |
| 525 | dyn_cast<Instruction>(PN->getIncomingValueForBlock(Backedge))) |
| 526 | if (Inc->getOpcode() == Instruction::Add && Inc->getOperand(0) == PN) |
| 527 | if (ConstantInt *CI = dyn_cast<ConstantInt>(Inc->getOperand(1))) |
| 528 | if (CI->equalsInt(1)) |
| 529 | return PN; |
Reid Spencer | 2da5c3d | 2004-09-15 17:06:42 +0000 | [diff] [blame] | 530 | } |
Chris Lattner | 92020fa | 2004-04-15 15:16:02 +0000 | [diff] [blame] | 531 | return 0; |
| 532 | } |
| 533 | |
| 534 | /// getCanonicalInductionVariableIncrement - Return the LLVM value that holds |
| 535 | /// the canonical induction variable value for the "next" iteration of the loop. |
| 536 | /// This always succeeds if getCanonicalInductionVariable succeeds. |
| 537 | /// |
| 538 | Instruction *Loop::getCanonicalInductionVariableIncrement() const { |
| 539 | if (PHINode *PN = getCanonicalInductionVariable()) { |
| 540 | bool P1InLoop = contains(PN->getIncomingBlock(1)); |
| 541 | return cast<Instruction>(PN->getIncomingValue(P1InLoop)); |
| 542 | } |
| 543 | return 0; |
| 544 | } |
| 545 | |
| 546 | /// getTripCount - Return a loop-invariant LLVM value indicating the number of |
| 547 | /// times the loop will be executed. Note that this means that the backedge of |
| 548 | /// the loop executes N-1 times. If the trip-count cannot be determined, this |
| 549 | /// returns null. |
| 550 | /// |
| 551 | Value *Loop::getTripCount() const { |
Reid Spencer | e4d87aa | 2006-12-23 06:05:41 +0000 | [diff] [blame] | 552 | // Canonical loops will end with a 'cmp ne I, V', where I is the incremented |
Chris Lattner | 92020fa | 2004-04-15 15:16:02 +0000 | [diff] [blame] | 553 | // canonical induction variable and V is the trip count of the loop. |
| 554 | Instruction *Inc = getCanonicalInductionVariableIncrement(); |
Chris Lattner | 24199db | 2004-04-18 05:38:05 +0000 | [diff] [blame] | 555 | if (Inc == 0) return 0; |
Chris Lattner | 92020fa | 2004-04-15 15:16:02 +0000 | [diff] [blame] | 556 | PHINode *IV = cast<PHINode>(Inc->getOperand(0)); |
Misha Brukman | 2b37d7c | 2005-04-21 21:13:18 +0000 | [diff] [blame] | 557 | |
Chris Lattner | 92020fa | 2004-04-15 15:16:02 +0000 | [diff] [blame] | 558 | BasicBlock *BackedgeBlock = |
| 559 | IV->getIncomingBlock(contains(IV->getIncomingBlock(1))); |
| 560 | |
| 561 | if (BranchInst *BI = dyn_cast<BranchInst>(BackedgeBlock->getTerminator())) |
Reid Spencer | e4d87aa | 2006-12-23 06:05:41 +0000 | [diff] [blame] | 562 | if (BI->isConditional()) { |
| 563 | if (ICmpInst *ICI = dyn_cast<ICmpInst>(BI->getCondition())) { |
| 564 | if (ICI->getOperand(0) == Inc) |
Chris Lattner | 47c31a8 | 2004-06-08 21:50:30 +0000 | [diff] [blame] | 565 | if (BI->getSuccessor(0) == getHeader()) { |
Reid Spencer | e4d87aa | 2006-12-23 06:05:41 +0000 | [diff] [blame] | 566 | if (ICI->getPredicate() == ICmpInst::ICMP_NE) |
| 567 | return ICI->getOperand(1); |
| 568 | } else if (ICI->getPredicate() == ICmpInst::ICMP_EQ) { |
| 569 | return ICI->getOperand(1); |
Chris Lattner | 47c31a8 | 2004-06-08 21:50:30 +0000 | [diff] [blame] | 570 | } |
Reid Spencer | e4d87aa | 2006-12-23 06:05:41 +0000 | [diff] [blame] | 571 | } |
| 572 | } |
Misha Brukman | 2b37d7c | 2005-04-21 21:13:18 +0000 | [diff] [blame] | 573 | |
Chris Lattner | 92020fa | 2004-04-15 15:16:02 +0000 | [diff] [blame] | 574 | return 0; |
| 575 | } |
| 576 | |
Owen Anderson | c2cc15c | 2006-06-11 19:22:28 +0000 | [diff] [blame] | 577 | /// isLCSSAForm - Return true if the Loop is in LCSSA form |
Chris Lattner | 880ddb0 | 2006-08-02 00:14:16 +0000 | [diff] [blame] | 578 | bool Loop::isLCSSAForm() const { |
| 579 | // Sort the blocks vector so that we can use binary search to do quick |
| 580 | // lookups. |
Chris Lattner | b1f5d8b | 2007-03-04 04:06:39 +0000 | [diff] [blame] | 581 | SmallPtrSet<BasicBlock*, 16> LoopBBs(block_begin(), block_end()); |
Chris Lattner | 880ddb0 | 2006-08-02 00:14:16 +0000 | [diff] [blame] | 582 | |
Chris Lattner | b1f5d8b | 2007-03-04 04:06:39 +0000 | [diff] [blame] | 583 | for (block_iterator BI = block_begin(), E = block_end(); BI != E; ++BI) { |
| 584 | BasicBlock *BB = *BI; |
Chris Lattner | 880ddb0 | 2006-08-02 00:14:16 +0000 | [diff] [blame] | 585 | for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I) |
Owen Anderson | c2cc15c | 2006-06-11 19:22:28 +0000 | [diff] [blame] | 586 | for (Value::use_iterator UI = I->use_begin(), E = I->use_end(); UI != E; |
| 587 | ++UI) { |
| 588 | BasicBlock *UserBB = cast<Instruction>(*UI)->getParent(); |
Chris Lattner | b1f5d8b | 2007-03-04 04:06:39 +0000 | [diff] [blame] | 589 | if (PHINode *P = dyn_cast<PHINode>(*UI)) { |
Owen Anderson | 3cc86cc | 2006-06-13 20:45:22 +0000 | [diff] [blame] | 590 | unsigned OperandNo = UI.getOperandNo(); |
Chris Lattner | b1f5d8b | 2007-03-04 04:06:39 +0000 | [diff] [blame] | 591 | UserBB = P->getIncomingBlock(OperandNo/2); |
Owen Anderson | 3cc86cc | 2006-06-13 20:45:22 +0000 | [diff] [blame] | 592 | } |
| 593 | |
Chris Lattner | 880ddb0 | 2006-08-02 00:14:16 +0000 | [diff] [blame] | 594 | // Check the current block, as a fast-path. Most values are used in the |
| 595 | // same block they are defined in. |
Chris Lattner | b1f5d8b | 2007-03-04 04:06:39 +0000 | [diff] [blame] | 596 | if (UserBB != BB && !LoopBBs.count(UserBB)) |
Owen Anderson | c2cc15c | 2006-06-11 19:22:28 +0000 | [diff] [blame] | 597 | return false; |
Owen Anderson | c2cc15c | 2006-06-11 19:22:28 +0000 | [diff] [blame] | 598 | } |
| 599 | } |
| 600 | |
| 601 | return true; |
| 602 | } |
Chris Lattner | 92020fa | 2004-04-15 15:16:02 +0000 | [diff] [blame] | 603 | |
| 604 | //===-------------------------------------------------------------------===// |
| 605 | // APIs for updating loop information after changing the CFG |
| 606 | // |
| 607 | |
Chris Lattner | 699b305 | 2002-09-26 05:32:50 +0000 | [diff] [blame] | 608 | /// addBasicBlockToLoop - This function is used by other analyses to update loop |
| 609 | /// information. NewBB is set to be a new member of the current loop. Because |
| 610 | /// of this, it is added as a member of all parent loops, and is added to the |
| 611 | /// specified LoopInfo object as being in the current basic block. It is not |
| 612 | /// valid to replace the loop header with this method. |
| 613 | /// |
| 614 | void Loop::addBasicBlockToLoop(BasicBlock *NewBB, LoopInfo &LI) { |
Chris Lattner | 46758a8 | 2004-04-12 20:26:17 +0000 | [diff] [blame] | 615 | assert((Blocks.empty() || LI[getHeader()] == this) && |
| 616 | "Incorrect LI specified for this loop!"); |
Chris Lattner | 699b305 | 2002-09-26 05:32:50 +0000 | [diff] [blame] | 617 | assert(NewBB && "Cannot add a null basic block to the loop!"); |
| 618 | assert(LI[NewBB] == 0 && "BasicBlock already in the loop!"); |
| 619 | |
| 620 | // Add the loop mapping to the LoopInfo object... |
| 621 | LI.BBMap[NewBB] = this; |
| 622 | |
| 623 | // Add the basic block to this loop and all parent loops... |
| 624 | Loop *L = this; |
| 625 | while (L) { |
| 626 | L->Blocks.push_back(NewBB); |
| 627 | L = L->getParentLoop(); |
| 628 | } |
| 629 | } |
Chris Lattner | 5f82b8a | 2003-02-27 00:38:34 +0000 | [diff] [blame] | 630 | |
Chris Lattner | 46758a8 | 2004-04-12 20:26:17 +0000 | [diff] [blame] | 631 | /// replaceChildLoopWith - This is used when splitting loops up. It replaces |
| 632 | /// the OldChild entry in our children list with NewChild, and updates the |
| 633 | /// parent pointers of the two loops as appropriate. |
| 634 | void Loop::replaceChildLoopWith(Loop *OldChild, Loop *NewChild) { |
| 635 | assert(OldChild->ParentLoop == this && "This loop is already broken!"); |
| 636 | assert(NewChild->ParentLoop == 0 && "NewChild already has a parent!"); |
| 637 | std::vector<Loop*>::iterator I = std::find(SubLoops.begin(), SubLoops.end(), |
| 638 | OldChild); |
| 639 | assert(I != SubLoops.end() && "OldChild not in loop!"); |
| 640 | *I = NewChild; |
| 641 | OldChild->ParentLoop = 0; |
| 642 | NewChild->ParentLoop = this; |
Chris Lattner | 46758a8 | 2004-04-12 20:26:17 +0000 | [diff] [blame] | 643 | } |
| 644 | |
| 645 | /// addChildLoop - Add the specified loop to be a child of this loop. |
| 646 | /// |
| 647 | void Loop::addChildLoop(Loop *NewChild) { |
| 648 | assert(NewChild->ParentLoop == 0 && "NewChild already has a parent!"); |
| 649 | NewChild->ParentLoop = this; |
| 650 | SubLoops.push_back(NewChild); |
Chris Lattner | 46758a8 | 2004-04-12 20:26:17 +0000 | [diff] [blame] | 651 | } |
| 652 | |
| 653 | template<typename T> |
| 654 | static void RemoveFromVector(std::vector<T*> &V, T *N) { |
| 655 | typename std::vector<T*>::iterator I = std::find(V.begin(), V.end(), N); |
| 656 | assert(I != V.end() && "N is not in this list!"); |
| 657 | V.erase(I); |
| 658 | } |
| 659 | |
| 660 | /// removeChildLoop - This removes the specified child from being a subloop of |
| 661 | /// this loop. The loop is not deleted, as it will presumably be inserted |
| 662 | /// into another loop. |
| 663 | Loop *Loop::removeChildLoop(iterator I) { |
| 664 | assert(I != SubLoops.end() && "Cannot remove end iterator!"); |
| 665 | Loop *Child = *I; |
| 666 | assert(Child->ParentLoop == this && "Child is not a child of this loop!"); |
| 667 | SubLoops.erase(SubLoops.begin()+(I-begin())); |
| 668 | Child->ParentLoop = 0; |
| 669 | return Child; |
| 670 | } |
| 671 | |
| 672 | |
| 673 | /// removeBlockFromLoop - This removes the specified basic block from the |
| 674 | /// current loop, updating the Blocks and ExitBlocks lists as appropriate. This |
| 675 | /// does not update the mapping in the LoopInfo class. |
| 676 | void Loop::removeBlockFromLoop(BasicBlock *BB) { |
| 677 | RemoveFromVector(Blocks, BB); |
Chris Lattner | 46758a8 | 2004-04-12 20:26:17 +0000 | [diff] [blame] | 678 | } |
Reid Spencer | 4f1bd9e | 2006-06-07 22:00:26 +0000 | [diff] [blame] | 679 | |
| 680 | // Ensure this file gets linked when LoopInfo.h is used. |
| 681 | DEFINING_FILE_FOR(LoopInfo) |