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" |
Reid Spencer | 551ccae | 2004-09-01 22:55:40 +0000 | [diff] [blame] | 23 | #include "llvm/ADT/DepthFirstIterator.h" |
Chris Lattner | 0bbe58f | 2001-11-26 18:41:20 +0000 | [diff] [blame] | 24 | #include <algorithm> |
Reid Spencer | 954da37 | 2004-07-04 12:19:56 +0000 | [diff] [blame] | 25 | #include <iostream> |
Chris Lattner | 46758a8 | 2004-04-12 20:26:17 +0000 | [diff] [blame] | 26 | using namespace llvm; |
Brian Gaeke | d0fde30 | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 27 | |
Chris Lattner | 1e43516 | 2002-07-26 21:12:44 +0000 | [diff] [blame] | 28 | static RegisterAnalysis<LoopInfo> |
Chris Lattner | 17689df | 2002-07-30 16:27:52 +0000 | [diff] [blame] | 29 | X("loops", "Natural Loop Construction", true); |
Chris Lattner | 93193f8 | 2002-01-31 00:42:27 +0000 | [diff] [blame] | 30 | |
| 31 | //===----------------------------------------------------------------------===// |
Chris Lattner | 1b7f7dc | 2002-04-28 16:21:30 +0000 | [diff] [blame] | 32 | // Loop implementation |
Chris Lattner | 93193f8 | 2002-01-31 00:42:27 +0000 | [diff] [blame] | 33 | // |
Chris Lattner | 0f99555 | 2002-06-03 22:10:52 +0000 | [diff] [blame] | 34 | bool Loop::contains(const BasicBlock *BB) const { |
Alkis Evlogimenos | 20aa474 | 2004-09-03 18:19:51 +0000 | [diff] [blame] | 35 | return std::find(Blocks.begin(), Blocks.end(), BB) != Blocks.end(); |
Chris Lattner | 0bbe58f | 2001-11-26 18:41:20 +0000 | [diff] [blame] | 36 | } |
| 37 | |
Misha Brukman | 6b290a5 | 2002-10-11 05:31:10 +0000 | [diff] [blame] | 38 | bool Loop::isLoopExit(const BasicBlock *BB) const { |
Chris Lattner | 03f252f | 2003-09-24 22:18:35 +0000 | [diff] [blame] | 39 | for (succ_const_iterator SI = succ_begin(BB), SE = succ_end(BB); |
Misha Brukman | 6b290a5 | 2002-10-11 05:31:10 +0000 | [diff] [blame] | 40 | SI != SE; ++SI) { |
Chris Lattner | 5f82b8a | 2003-02-27 00:38:34 +0000 | [diff] [blame] | 41 | if (!contains(*SI)) |
Misha Brukman | 6b290a5 | 2002-10-11 05:31:10 +0000 | [diff] [blame] | 42 | return true; |
| 43 | } |
| 44 | return false; |
| 45 | } |
| 46 | |
Chris Lattner | 2ef1236 | 2003-10-12 22:14:27 +0000 | [diff] [blame] | 47 | /// getNumBackEdges - Calculate the number of back edges to the loop header. |
| 48 | /// |
Misha Brukman | 6b290a5 | 2002-10-11 05:31:10 +0000 | [diff] [blame] | 49 | unsigned Loop::getNumBackEdges() const { |
Chris Lattner | 5f82b8a | 2003-02-27 00:38:34 +0000 | [diff] [blame] | 50 | unsigned NumBackEdges = 0; |
| 51 | BasicBlock *H = getHeader(); |
Misha Brukman | 6b290a5 | 2002-10-11 05:31:10 +0000 | [diff] [blame] | 52 | |
Chris Lattner | 2ef1236 | 2003-10-12 22:14:27 +0000 | [diff] [blame] | 53 | for (pred_iterator I = pred_begin(H), E = pred_end(H); I != E; ++I) |
| 54 | if (contains(*I)) |
| 55 | ++NumBackEdges; |
| 56 | |
Chris Lattner | 5f82b8a | 2003-02-27 00:38:34 +0000 | [diff] [blame] | 57 | return NumBackEdges; |
Misha Brukman | 6b290a5 | 2002-10-11 05:31:10 +0000 | [diff] [blame] | 58 | } |
| 59 | |
Chris Lattner | 85661d0 | 2004-04-18 22:45:27 +0000 | [diff] [blame] | 60 | /// isLoopInvariant - Return true if the specified value is loop invariant |
| 61 | /// |
| 62 | bool Loop::isLoopInvariant(Value *V) const { |
| 63 | if (Instruction *I = dyn_cast<Instruction>(V)) |
| 64 | return !contains(I->getParent()); |
| 65 | return true; // All non-instructions are loop invariant |
| 66 | } |
| 67 | |
Chris Lattner | 7dd46b0 | 2003-08-16 20:57:16 +0000 | [diff] [blame] | 68 | void Loop::print(std::ostream &OS, unsigned Depth) const { |
| 69 | OS << std::string(Depth*2, ' ') << "Loop Containing: "; |
Chris Lattner | a59cbb2 | 2002-07-27 01:12:17 +0000 | [diff] [blame] | 70 | |
| 71 | for (unsigned i = 0; i < getBlocks().size(); ++i) { |
| 72 | if (i) OS << ","; |
Chris Lattner | 5f82b8a | 2003-02-27 00:38:34 +0000 | [diff] [blame] | 73 | WriteAsOperand(OS, getBlocks()[i], false); |
Chris Lattner | a59cbb2 | 2002-07-27 01:12:17 +0000 | [diff] [blame] | 74 | } |
| 75 | OS << "\n"; |
| 76 | |
Chris Lattner | 329c1c6 | 2004-01-08 00:09:44 +0000 | [diff] [blame] | 77 | for (iterator I = begin(), E = end(); I != E; ++I) |
| 78 | (*I)->print(OS, Depth+2); |
Chris Lattner | a59cbb2 | 2002-07-27 01:12:17 +0000 | [diff] [blame] | 79 | } |
| 80 | |
Chris Lattner | bb05f1e | 2003-02-28 16:54:45 +0000 | [diff] [blame] | 81 | void Loop::dump() const { |
| 82 | print(std::cerr); |
| 83 | } |
| 84 | |
Chris Lattner | 420df9b | 2003-02-22 21:33:11 +0000 | [diff] [blame] | 85 | |
Chris Lattner | a59cbb2 | 2002-07-27 01:12:17 +0000 | [diff] [blame] | 86 | //===----------------------------------------------------------------------===// |
| 87 | // LoopInfo implementation |
| 88 | // |
Anand Shukla | e0b6b78 | 2002-08-26 16:45:19 +0000 | [diff] [blame] | 89 | void LoopInfo::stub() {} |
Chris Lattner | a59cbb2 | 2002-07-27 01:12:17 +0000 | [diff] [blame] | 90 | |
| 91 | bool LoopInfo::runOnFunction(Function &) { |
| 92 | releaseMemory(); |
| 93 | Calculate(getAnalysis<DominatorSet>()); // Update |
| 94 | return false; |
| 95 | } |
| 96 | |
Chris Lattner | 1b7f7dc | 2002-04-28 16:21:30 +0000 | [diff] [blame] | 97 | void LoopInfo::releaseMemory() { |
Chris Lattner | 918c4ec | 2002-04-09 05:43:19 +0000 | [diff] [blame] | 98 | for (std::vector<Loop*>::iterator I = TopLevelLoops.begin(), |
| 99 | E = TopLevelLoops.end(); I != E; ++I) |
| 100 | delete *I; // Delete all of the loops... |
| 101 | |
| 102 | BBMap.clear(); // Reset internal state of analysis |
| 103 | TopLevelLoops.clear(); |
| 104 | } |
| 105 | |
Chris Lattner | 93193f8 | 2002-01-31 00:42:27 +0000 | [diff] [blame] | 106 | |
Chris Lattner | 1b7f7dc | 2002-04-28 16:21:30 +0000 | [diff] [blame] | 107 | void LoopInfo::Calculate(const DominatorSet &DS) { |
Chris Lattner | a298d27 | 2002-04-28 00:15:57 +0000 | [diff] [blame] | 108 | BasicBlock *RootNode = DS.getRoot(); |
Chris Lattner | 0bbe58f | 2001-11-26 18:41:20 +0000 | [diff] [blame] | 109 | |
Chris Lattner | a298d27 | 2002-04-28 00:15:57 +0000 | [diff] [blame] | 110 | for (df_iterator<BasicBlock*> NI = df_begin(RootNode), |
Misha Brukman | dedf2bd | 2005-04-22 04:01:18 +0000 | [diff] [blame] | 111 | NE = df_end(RootNode); NI != NE; ++NI) |
Chris Lattner | 0bbe58f | 2001-11-26 18:41:20 +0000 | [diff] [blame] | 112 | if (Loop *L = ConsiderForLoop(*NI, DS)) |
| 113 | TopLevelLoops.push_back(L); |
Chris Lattner | 0bbe58f | 2001-11-26 18:41:20 +0000 | [diff] [blame] | 114 | } |
| 115 | |
Chris Lattner | 1b7f7dc | 2002-04-28 16:21:30 +0000 | [diff] [blame] | 116 | void LoopInfo::getAnalysisUsage(AnalysisUsage &AU) const { |
Chris Lattner | f57b845 | 2002-04-27 06:56:12 +0000 | [diff] [blame] | 117 | AU.setPreservesAll(); |
Chris Lattner | dd5b495 | 2002-08-08 19:01:28 +0000 | [diff] [blame] | 118 | AU.addRequired<DominatorSet>(); |
Chris Lattner | 93193f8 | 2002-01-31 00:42:27 +0000 | [diff] [blame] | 119 | } |
| 120 | |
Reid Spencer | ce9653c | 2004-12-07 04:03:45 +0000 | [diff] [blame] | 121 | void LoopInfo::print(std::ostream &OS, const Module* ) const { |
Chris Lattner | fce46ef | 2002-09-26 16:15:54 +0000 | [diff] [blame] | 122 | for (unsigned i = 0; i < TopLevelLoops.size(); ++i) |
| 123 | TopLevelLoops[i]->print(OS); |
Chris Lattner | 420df9b | 2003-02-22 21:33:11 +0000 | [diff] [blame] | 124 | #if 0 |
| 125 | for (std::map<BasicBlock*, Loop*>::const_iterator I = BBMap.begin(), |
| 126 | E = BBMap.end(); I != E; ++I) |
| 127 | OS << "BB '" << I->first->getName() << "' level = " |
Chris Lattner | 446b86d | 2004-04-19 03:02:09 +0000 | [diff] [blame] | 128 | << I->second->getLoopDepth() << "\n"; |
Chris Lattner | 420df9b | 2003-02-22 21:33:11 +0000 | [diff] [blame] | 129 | #endif |
Chris Lattner | a59cbb2 | 2002-07-27 01:12:17 +0000 | [diff] [blame] | 130 | } |
Chris Lattner | 93193f8 | 2002-01-31 00:42:27 +0000 | [diff] [blame] | 131 | |
Chris Lattner | 39c987a | 2003-05-15 18:03:51 +0000 | [diff] [blame] | 132 | static bool isNotAlreadyContainedIn(Loop *SubLoop, Loop *ParentLoop) { |
| 133 | if (SubLoop == 0) return true; |
| 134 | if (SubLoop == ParentLoop) return false; |
| 135 | return isNotAlreadyContainedIn(SubLoop->getParentLoop(), ParentLoop); |
| 136 | } |
| 137 | |
Chris Lattner | 1b7f7dc | 2002-04-28 16:21:30 +0000 | [diff] [blame] | 138 | Loop *LoopInfo::ConsiderForLoop(BasicBlock *BB, const DominatorSet &DS) { |
Chris Lattner | 699b305 | 2002-09-26 05:32:50 +0000 | [diff] [blame] | 139 | 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] | 140 | |
Chris Lattner | a298d27 | 2002-04-28 00:15:57 +0000 | [diff] [blame] | 141 | std::vector<BasicBlock *> TodoStack; |
Chris Lattner | 0bbe58f | 2001-11-26 18:41:20 +0000 | [diff] [blame] | 142 | |
| 143 | // 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] | 144 | // them. This identifies backedges which target this node... |
Chris Lattner | a298d27 | 2002-04-28 00:15:57 +0000 | [diff] [blame] | 145 | for (pred_iterator I = pred_begin(BB), E = pred_end(BB); I != E; ++I) |
Chris Lattner | 0bbe58f | 2001-11-26 18:41:20 +0000 | [diff] [blame] | 146 | if (DS.dominates(BB, *I)) // If BB dominates it's predecessor... |
| 147 | TodoStack.push_back(*I); |
| 148 | |
Chris Lattner | 99224ae | 2003-04-26 19:34:18 +0000 | [diff] [blame] | 149 | if (TodoStack.empty()) return 0; // No backedges to this block... |
Chris Lattner | 0bbe58f | 2001-11-26 18:41:20 +0000 | [diff] [blame] | 150 | |
| 151 | // Create a new loop to represent this basic block... |
| 152 | Loop *L = new Loop(BB); |
| 153 | BBMap[BB] = L; |
| 154 | |
Chris Lattner | 59dc178 | 2003-10-22 16:41:21 +0000 | [diff] [blame] | 155 | BasicBlock *EntryBlock = &BB->getParent()->getEntryBlock(); |
| 156 | |
Chris Lattner | 0bbe58f | 2001-11-26 18:41:20 +0000 | [diff] [blame] | 157 | while (!TodoStack.empty()) { // Process all the nodes in the loop |
Chris Lattner | a298d27 | 2002-04-28 00:15:57 +0000 | [diff] [blame] | 158 | BasicBlock *X = TodoStack.back(); |
Chris Lattner | 0bbe58f | 2001-11-26 18:41:20 +0000 | [diff] [blame] | 159 | TodoStack.pop_back(); |
| 160 | |
Chris Lattner | 59dc178 | 2003-10-22 16:41:21 +0000 | [diff] [blame] | 161 | if (!L->contains(X) && // As of yet unprocessed?? |
| 162 | DS.dominates(EntryBlock, X)) { // X is reachable from entry block? |
Chris Lattner | 99224ae | 2003-04-26 19:34:18 +0000 | [diff] [blame] | 163 | // Check to see if this block already belongs to a loop. If this occurs |
| 164 | // then we have a case where a loop that is supposed to be a child of the |
| 165 | // current loop was processed before the current loop. When this occurs, |
| 166 | // this child loop gets added to a part of the current loop, making it a |
| 167 | // sibling to the current loop. We have to reparent this loop. |
| 168 | if (Loop *SubLoop = const_cast<Loop*>(getLoopFor(X))) |
Chris Lattner | 39c987a | 2003-05-15 18:03:51 +0000 | [diff] [blame] | 169 | if (SubLoop->getHeader() == X && isNotAlreadyContainedIn(SubLoop, L)) { |
Chris Lattner | 99224ae | 2003-04-26 19:34:18 +0000 | [diff] [blame] | 170 | // Remove the subloop from it's current parent... |
| 171 | assert(SubLoop->ParentLoop && SubLoop->ParentLoop != L); |
| 172 | Loop *SLP = SubLoop->ParentLoop; // SubLoopParent |
| 173 | std::vector<Loop*>::iterator I = |
| 174 | std::find(SLP->SubLoops.begin(), SLP->SubLoops.end(), SubLoop); |
| 175 | assert(I != SLP->SubLoops.end() && "SubLoop not a child of parent?"); |
| 176 | SLP->SubLoops.erase(I); // Remove from parent... |
Misha Brukman | 2b37d7c | 2005-04-21 21:13:18 +0000 | [diff] [blame] | 177 | |
Chris Lattner | 99224ae | 2003-04-26 19:34:18 +0000 | [diff] [blame] | 178 | // Add the subloop to THIS loop... |
| 179 | SubLoop->ParentLoop = L; |
| 180 | L->SubLoops.push_back(SubLoop); |
| 181 | } |
| 182 | |
| 183 | // Normal case, add the block to our loop... |
Chris Lattner | 0bbe58f | 2001-11-26 18:41:20 +0000 | [diff] [blame] | 184 | L->Blocks.push_back(X); |
Misha Brukman | 2b37d7c | 2005-04-21 21:13:18 +0000 | [diff] [blame] | 185 | |
Chris Lattner | 0bbe58f | 2001-11-26 18:41:20 +0000 | [diff] [blame] | 186 | // 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] | 187 | TodoStack.insert(TodoStack.end(), pred_begin(X), pred_end(X)); |
Chris Lattner | 0bbe58f | 2001-11-26 18:41:20 +0000 | [diff] [blame] | 188 | } |
| 189 | } |
| 190 | |
Chris Lattner | 420df9b | 2003-02-22 21:33:11 +0000 | [diff] [blame] | 191 | // If there are any loops nested within this loop, create them now! |
| 192 | for (std::vector<BasicBlock*>::iterator I = L->Blocks.begin(), |
Misha Brukman | dedf2bd | 2005-04-22 04:01:18 +0000 | [diff] [blame] | 193 | E = L->Blocks.end(); I != E; ++I) |
Chris Lattner | 420df9b | 2003-02-22 21:33:11 +0000 | [diff] [blame] | 194 | if (Loop *NewLoop = ConsiderForLoop(*I, DS)) { |
| 195 | L->SubLoops.push_back(NewLoop); |
| 196 | NewLoop->ParentLoop = L; |
| 197 | } |
Chris Lattner | 0bbe58f | 2001-11-26 18:41:20 +0000 | [diff] [blame] | 198 | |
Chris Lattner | 420df9b | 2003-02-22 21:33:11 +0000 | [diff] [blame] | 199 | // Add the basic blocks that comprise this loop to the BBMap so that this |
| 200 | // loop can be found for them. |
| 201 | // |
| 202 | for (std::vector<BasicBlock*>::iterator I = L->Blocks.begin(), |
Misha Brukman | dedf2bd | 2005-04-22 04:01:18 +0000 | [diff] [blame] | 203 | E = L->Blocks.end(); I != E; ++I) { |
Chris Lattner | 420df9b | 2003-02-22 21:33:11 +0000 | [diff] [blame] | 204 | std::map<BasicBlock*, Loop*>::iterator BBMI = BBMap.lower_bound(*I); |
| 205 | if (BBMI == BBMap.end() || BBMI->first != *I) // Not in map yet... |
| 206 | BBMap.insert(BBMI, std::make_pair(*I, L)); // Must be at this level |
| 207 | } |
Chris Lattner | 0bbe58f | 2001-11-26 18:41:20 +0000 | [diff] [blame] | 208 | |
Chris Lattner | 7dd46b0 | 2003-08-16 20:57:16 +0000 | [diff] [blame] | 209 | // Now that we have a list of all of the child loops of this loop, check to |
| 210 | // see if any of them should actually be nested inside of each other. We can |
| 211 | // accidentally pull loops our of their parents, so we must make sure to |
| 212 | // organize the loop nests correctly now. |
| 213 | { |
| 214 | std::map<BasicBlock*, Loop*> ContainingLoops; |
| 215 | for (unsigned i = 0; i != L->SubLoops.size(); ++i) { |
| 216 | Loop *Child = L->SubLoops[i]; |
| 217 | assert(Child->getParentLoop() == L && "Not proper child loop?"); |
| 218 | |
| 219 | if (Loop *ContainingLoop = ContainingLoops[Child->getHeader()]) { |
| 220 | // If there is already a loop which contains this loop, move this loop |
| 221 | // into the containing loop. |
| 222 | MoveSiblingLoopInto(Child, ContainingLoop); |
| 223 | --i; // The loop got removed from the SubLoops list. |
| 224 | } else { |
| 225 | // This is currently considered to be a top-level loop. Check to see if |
| 226 | // any of the contained blocks are loop headers for subloops we have |
| 227 | // already processed. |
| 228 | for (unsigned b = 0, e = Child->Blocks.size(); b != e; ++b) { |
| 229 | Loop *&BlockLoop = ContainingLoops[Child->Blocks[b]]; |
| 230 | if (BlockLoop == 0) { // Child block not processed yet... |
| 231 | BlockLoop = Child; |
| 232 | } else if (BlockLoop != Child) { |
Chris Lattner | 169db9d | 2003-08-17 21:47:33 +0000 | [diff] [blame] | 233 | Loop *SubLoop = BlockLoop; |
| 234 | // Reparent all of the blocks which used to belong to BlockLoops |
| 235 | for (unsigned j = 0, e = SubLoop->Blocks.size(); j != e; ++j) |
| 236 | ContainingLoops[SubLoop->Blocks[j]] = Child; |
| 237 | |
Chris Lattner | 7dd46b0 | 2003-08-16 20:57:16 +0000 | [diff] [blame] | 238 | // There is already a loop which contains this block, that means |
| 239 | // that we should reparent the loop which the block is currently |
| 240 | // considered to belong to to be a child of this loop. |
Chris Lattner | 169db9d | 2003-08-17 21:47:33 +0000 | [diff] [blame] | 241 | MoveSiblingLoopInto(SubLoop, Child); |
Chris Lattner | 7dd46b0 | 2003-08-16 20:57:16 +0000 | [diff] [blame] | 242 | --i; // We just shrunk the SubLoops list. |
| 243 | } |
| 244 | } |
Misha Brukman | 2b37d7c | 2005-04-21 21:13:18 +0000 | [diff] [blame] | 245 | } |
Chris Lattner | 7dd46b0 | 2003-08-16 20:57:16 +0000 | [diff] [blame] | 246 | } |
| 247 | } |
| 248 | |
Chris Lattner | 0bbe58f | 2001-11-26 18:41:20 +0000 | [diff] [blame] | 249 | return L; |
| 250 | } |
Chris Lattner | 699b305 | 2002-09-26 05:32:50 +0000 | [diff] [blame] | 251 | |
Chris Lattner | 7dd46b0 | 2003-08-16 20:57:16 +0000 | [diff] [blame] | 252 | /// MoveSiblingLoopInto - This method moves the NewChild loop to live inside of |
| 253 | /// the NewParent Loop, instead of being a sibling of it. |
| 254 | void LoopInfo::MoveSiblingLoopInto(Loop *NewChild, Loop *NewParent) { |
| 255 | Loop *OldParent = NewChild->getParentLoop(); |
| 256 | assert(OldParent && OldParent == NewParent->getParentLoop() && |
| 257 | NewChild != NewParent && "Not sibling loops!"); |
| 258 | |
| 259 | // Remove NewChild from being a child of OldParent |
| 260 | std::vector<Loop*>::iterator I = |
| 261 | std::find(OldParent->SubLoops.begin(), OldParent->SubLoops.end(), NewChild); |
| 262 | assert(I != OldParent->SubLoops.end() && "Parent fields incorrect??"); |
| 263 | OldParent->SubLoops.erase(I); // Remove from parent's subloops list |
| 264 | NewChild->ParentLoop = 0; |
Misha Brukman | 2b37d7c | 2005-04-21 21:13:18 +0000 | [diff] [blame] | 265 | |
| 266 | InsertLoopInto(NewChild, NewParent); |
Chris Lattner | 7dd46b0 | 2003-08-16 20:57:16 +0000 | [diff] [blame] | 267 | } |
| 268 | |
| 269 | /// InsertLoopInto - This inserts loop L into the specified parent loop. If the |
| 270 | /// parent loop contains a loop which should contain L, the loop gets inserted |
| 271 | /// into L instead. |
| 272 | void LoopInfo::InsertLoopInto(Loop *L, Loop *Parent) { |
| 273 | BasicBlock *LHeader = L->getHeader(); |
| 274 | assert(Parent->contains(LHeader) && "This loop should not be inserted here!"); |
Misha Brukman | 2b37d7c | 2005-04-21 21:13:18 +0000 | [diff] [blame] | 275 | |
Chris Lattner | 7dd46b0 | 2003-08-16 20:57:16 +0000 | [diff] [blame] | 276 | // Check to see if it belongs in a child loop... |
| 277 | for (unsigned i = 0, e = Parent->SubLoops.size(); i != e; ++i) |
| 278 | if (Parent->SubLoops[i]->contains(LHeader)) { |
| 279 | InsertLoopInto(L, Parent->SubLoops[i]); |
| 280 | return; |
Misha Brukman | 2b37d7c | 2005-04-21 21:13:18 +0000 | [diff] [blame] | 281 | } |
Chris Lattner | 7dd46b0 | 2003-08-16 20:57:16 +0000 | [diff] [blame] | 282 | |
| 283 | // If not, insert it here! |
| 284 | Parent->SubLoops.push_back(L); |
| 285 | L->ParentLoop = Parent; |
| 286 | } |
| 287 | |
Chris Lattner | 46758a8 | 2004-04-12 20:26:17 +0000 | [diff] [blame] | 288 | /// changeLoopFor - Change the top-level loop that contains BB to the |
| 289 | /// specified loop. This should be used by transformations that restructure |
| 290 | /// the loop hierarchy tree. |
| 291 | void LoopInfo::changeLoopFor(BasicBlock *BB, Loop *L) { |
| 292 | Loop *&OldLoop = BBMap[BB]; |
| 293 | assert(OldLoop && "Block not in a loop yet!"); |
| 294 | OldLoop = L; |
| 295 | } |
Chris Lattner | 7dd46b0 | 2003-08-16 20:57:16 +0000 | [diff] [blame] | 296 | |
Chris Lattner | 46758a8 | 2004-04-12 20:26:17 +0000 | [diff] [blame] | 297 | /// changeTopLevelLoop - Replace the specified loop in the top-level loops |
| 298 | /// list with the indicated loop. |
| 299 | void LoopInfo::changeTopLevelLoop(Loop *OldLoop, Loop *NewLoop) { |
| 300 | std::vector<Loop*>::iterator I = std::find(TopLevelLoops.begin(), |
| 301 | TopLevelLoops.end(), OldLoop); |
| 302 | assert(I != TopLevelLoops.end() && "Old loop not at top level!"); |
| 303 | *I = NewLoop; |
| 304 | assert(NewLoop->ParentLoop == 0 && OldLoop->ParentLoop == 0 && |
| 305 | "Loops already embedded into a subloop!"); |
| 306 | } |
Chris Lattner | 7dd46b0 | 2003-08-16 20:57:16 +0000 | [diff] [blame] | 307 | |
Chris Lattner | 24199db | 2004-04-18 05:38:05 +0000 | [diff] [blame] | 308 | /// removeLoop - This removes the specified top-level loop from this loop info |
| 309 | /// object. The loop is not deleted, as it will presumably be inserted into |
| 310 | /// another loop. |
| 311 | Loop *LoopInfo::removeLoop(iterator I) { |
| 312 | assert(I != end() && "Cannot remove end iterator!"); |
| 313 | Loop *L = *I; |
| 314 | assert(L->getParentLoop() == 0 && "Not a top-level loop!"); |
| 315 | TopLevelLoops.erase(TopLevelLoops.begin() + (I-begin())); |
| 316 | return L; |
| 317 | } |
| 318 | |
Chris Lattner | 3048bd1 | 2004-04-18 06:54:48 +0000 | [diff] [blame] | 319 | /// removeBlock - This method completely removes BB from all data structures, |
| 320 | /// including all of the Loop objects it is nested in and our mapping from |
| 321 | /// BasicBlocks to loops. |
| 322 | void LoopInfo::removeBlock(BasicBlock *BB) { |
| 323 | std::map<BasicBlock *, Loop*>::iterator I = BBMap.find(BB); |
| 324 | if (I != BBMap.end()) { |
| 325 | for (Loop *L = I->second; L; L = L->getParentLoop()) |
| 326 | L->removeBlockFromLoop(BB); |
Misha Brukman | 2b37d7c | 2005-04-21 21:13:18 +0000 | [diff] [blame] | 327 | |
Chris Lattner | 3048bd1 | 2004-04-18 06:54:48 +0000 | [diff] [blame] | 328 | BBMap.erase(I); |
| 329 | } |
| 330 | } |
Chris Lattner | 24199db | 2004-04-18 05:38:05 +0000 | [diff] [blame] | 331 | |
| 332 | |
Chris Lattner | 92020fa | 2004-04-15 15:16:02 +0000 | [diff] [blame] | 333 | //===----------------------------------------------------------------------===// |
| 334 | // APIs for simple analysis of the loop. |
| 335 | // |
| 336 | |
Chris Lattner | f1ab4b4 | 2004-04-18 22:14:10 +0000 | [diff] [blame] | 337 | /// getExitBlocks - Return all of the successor blocks of this loop. These |
| 338 | /// are the blocks _outside of the current loop_ which are branched to. |
| 339 | /// |
Chris Lattner | 343c0cf | 2004-04-18 22:21:41 +0000 | [diff] [blame] | 340 | void Loop::getExitBlocks(std::vector<BasicBlock*> &ExitBlocks) const { |
Chris Lattner | f1ab4b4 | 2004-04-18 22:14:10 +0000 | [diff] [blame] | 341 | for (std::vector<BasicBlock*>::const_iterator BI = Blocks.begin(), |
| 342 | BE = Blocks.end(); BI != BE; ++BI) |
| 343 | for (succ_iterator I = succ_begin(*BI), E = succ_end(*BI); I != E; ++I) |
| 344 | if (!contains(*I)) // Not in current loop? |
Chris Lattner | 343c0cf | 2004-04-18 22:21:41 +0000 | [diff] [blame] | 345 | ExitBlocks.push_back(*I); // It must be an exit block... |
Chris Lattner | f1ab4b4 | 2004-04-18 22:14:10 +0000 | [diff] [blame] | 346 | } |
| 347 | |
| 348 | |
Chris Lattner | 699b305 | 2002-09-26 05:32:50 +0000 | [diff] [blame] | 349 | /// getLoopPreheader - If there is a preheader for this loop, return it. A |
| 350 | /// loop has a preheader if there is only one edge to the header of the loop |
| 351 | /// 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] | 352 | /// header of the loop is the preheader node. |
Chris Lattner | 699b305 | 2002-09-26 05:32:50 +0000 | [diff] [blame] | 353 | /// |
Chris Lattner | 92020fa | 2004-04-15 15:16:02 +0000 | [diff] [blame] | 354 | /// This method returns null if there is no preheader for the loop. |
Chris Lattner | 699b305 | 2002-09-26 05:32:50 +0000 | [diff] [blame] | 355 | /// |
| 356 | BasicBlock *Loop::getLoopPreheader() const { |
| 357 | // Keep track of nodes outside the loop branching to the header... |
| 358 | BasicBlock *Out = 0; |
| 359 | |
| 360 | // Loop over the predecessors of the header node... |
| 361 | BasicBlock *Header = getHeader(); |
| 362 | for (pred_iterator PI = pred_begin(Header), PE = pred_end(Header); |
| 363 | PI != PE; ++PI) |
Chris Lattner | c8f25d9 | 2002-09-29 22:59:29 +0000 | [diff] [blame] | 364 | if (!contains(*PI)) { // If the block is not in the loop... |
| 365 | if (Out && Out != *PI) |
| 366 | return 0; // Multiple predecessors outside the loop |
Chris Lattner | 699b305 | 2002-09-26 05:32:50 +0000 | [diff] [blame] | 367 | Out = *PI; |
| 368 | } |
Misha Brukman | 2b37d7c | 2005-04-21 21:13:18 +0000 | [diff] [blame] | 369 | |
Chris Lattner | 5a8a291 | 2003-02-27 21:51:38 +0000 | [diff] [blame] | 370 | // Make sure there is only one exit out of the preheader... |
| 371 | succ_iterator SI = succ_begin(Out); |
| 372 | ++SI; |
| 373 | if (SI != succ_end(Out)) |
| 374 | return 0; // Multiple exits from the block, must not be a preheader. |
| 375 | |
Chris Lattner | 699b305 | 2002-09-26 05:32:50 +0000 | [diff] [blame] | 376 | // If there is exactly one preheader, return it. If there was zero, then Out |
| 377 | // is still null. |
| 378 | return Out; |
| 379 | } |
| 380 | |
Chris Lattner | b6a69e7 | 2005-09-12 17:03:55 +0000 | [diff] [blame^] | 381 | /// getLoopLatch - If there is a latch block for this loop, return it. A |
| 382 | /// latch block is the canonical backedge for a loop. A loop header in normal |
| 383 | /// form has two edges into it: one from a preheader and one from a latch |
| 384 | /// block. |
| 385 | BasicBlock *Loop::getLoopLatch() const { |
| 386 | BasicBlock *Header = getHeader(); |
| 387 | pred_iterator PI = pred_begin(Header), PE = pred_end(Header); |
| 388 | if (PI == PE) return 0; // no preds? |
| 389 | |
| 390 | BasicBlock *Latch = 0; |
| 391 | if (contains(*PI)) |
| 392 | Latch = *PI; |
| 393 | ++PI; |
| 394 | if (PI == PE) return 0; // only one pred? |
| 395 | |
| 396 | if (contains(*PI)) { |
| 397 | if (Latch) return 0; // multiple backedges |
| 398 | Latch = *PI; |
| 399 | } |
| 400 | ++PI; |
| 401 | if (PI != PE) return 0; // more than two preds |
| 402 | |
| 403 | return Latch; |
| 404 | } |
| 405 | |
Chris Lattner | 92020fa | 2004-04-15 15:16:02 +0000 | [diff] [blame] | 406 | /// getCanonicalInductionVariable - Check to see if the loop has a canonical |
| 407 | /// induction variable: an integer recurrence that starts at 0 and increments by |
| 408 | /// one each time through the loop. If so, return the phi node that corresponds |
| 409 | /// to it. |
| 410 | /// |
| 411 | PHINode *Loop::getCanonicalInductionVariable() const { |
| 412 | BasicBlock *H = getHeader(); |
| 413 | |
| 414 | BasicBlock *Incoming = 0, *Backedge = 0; |
| 415 | pred_iterator PI = pred_begin(H); |
| 416 | assert(PI != pred_end(H) && "Loop must have at least one backedge!"); |
| 417 | Backedge = *PI++; |
| 418 | if (PI == pred_end(H)) return 0; // dead loop |
| 419 | Incoming = *PI++; |
| 420 | if (PI != pred_end(H)) return 0; // multiple backedges? |
| 421 | |
| 422 | if (contains(Incoming)) { |
| 423 | if (contains(Backedge)) |
| 424 | return 0; |
| 425 | std::swap(Incoming, Backedge); |
| 426 | } else if (!contains(Backedge)) |
| 427 | return 0; |
| 428 | |
| 429 | // Loop over all of the PHI nodes, looking for a canonical indvar. |
Reid Spencer | 2da5c3d | 2004-09-15 17:06:42 +0000 | [diff] [blame] | 430 | for (BasicBlock::iterator I = H->begin(); isa<PHINode>(I); ++I) { |
| 431 | PHINode *PN = cast<PHINode>(I); |
Chris Lattner | 92020fa | 2004-04-15 15:16:02 +0000 | [diff] [blame] | 432 | if (Instruction *Inc = |
| 433 | dyn_cast<Instruction>(PN->getIncomingValueForBlock(Backedge))) |
| 434 | if (Inc->getOpcode() == Instruction::Add && Inc->getOperand(0) == PN) |
| 435 | if (ConstantInt *CI = dyn_cast<ConstantInt>(Inc->getOperand(1))) |
| 436 | if (CI->equalsInt(1)) |
| 437 | return PN; |
Reid Spencer | 2da5c3d | 2004-09-15 17:06:42 +0000 | [diff] [blame] | 438 | } |
Chris Lattner | 92020fa | 2004-04-15 15:16:02 +0000 | [diff] [blame] | 439 | return 0; |
| 440 | } |
| 441 | |
| 442 | /// getCanonicalInductionVariableIncrement - Return the LLVM value that holds |
| 443 | /// the canonical induction variable value for the "next" iteration of the loop. |
| 444 | /// This always succeeds if getCanonicalInductionVariable succeeds. |
| 445 | /// |
| 446 | Instruction *Loop::getCanonicalInductionVariableIncrement() const { |
| 447 | if (PHINode *PN = getCanonicalInductionVariable()) { |
| 448 | bool P1InLoop = contains(PN->getIncomingBlock(1)); |
| 449 | return cast<Instruction>(PN->getIncomingValue(P1InLoop)); |
| 450 | } |
| 451 | return 0; |
| 452 | } |
| 453 | |
| 454 | /// getTripCount - Return a loop-invariant LLVM value indicating the number of |
| 455 | /// times the loop will be executed. Note that this means that the backedge of |
| 456 | /// the loop executes N-1 times. If the trip-count cannot be determined, this |
| 457 | /// returns null. |
| 458 | /// |
| 459 | Value *Loop::getTripCount() const { |
| 460 | // Canonical loops will end with a 'setne I, V', where I is the incremented |
| 461 | // canonical induction variable and V is the trip count of the loop. |
| 462 | Instruction *Inc = getCanonicalInductionVariableIncrement(); |
Chris Lattner | 24199db | 2004-04-18 05:38:05 +0000 | [diff] [blame] | 463 | if (Inc == 0) return 0; |
Chris Lattner | 92020fa | 2004-04-15 15:16:02 +0000 | [diff] [blame] | 464 | PHINode *IV = cast<PHINode>(Inc->getOperand(0)); |
Misha Brukman | 2b37d7c | 2005-04-21 21:13:18 +0000 | [diff] [blame] | 465 | |
Chris Lattner | 92020fa | 2004-04-15 15:16:02 +0000 | [diff] [blame] | 466 | BasicBlock *BackedgeBlock = |
| 467 | IV->getIncomingBlock(contains(IV->getIncomingBlock(1))); |
| 468 | |
| 469 | if (BranchInst *BI = dyn_cast<BranchInst>(BackedgeBlock->getTerminator())) |
Chris Lattner | 47c31a8 | 2004-06-08 21:50:30 +0000 | [diff] [blame] | 470 | if (BI->isConditional()) |
| 471 | if (SetCondInst *SCI = dyn_cast<SetCondInst>(BI->getCondition())) |
| 472 | if (SCI->getOperand(0) == Inc) |
| 473 | if (BI->getSuccessor(0) == getHeader()) { |
| 474 | if (SCI->getOpcode() == Instruction::SetNE) |
| 475 | return SCI->getOperand(1); |
| 476 | } else if (SCI->getOpcode() == Instruction::SetEQ) { |
Chris Lattner | 92020fa | 2004-04-15 15:16:02 +0000 | [diff] [blame] | 477 | return SCI->getOperand(1); |
Chris Lattner | 47c31a8 | 2004-06-08 21:50:30 +0000 | [diff] [blame] | 478 | } |
Misha Brukman | 2b37d7c | 2005-04-21 21:13:18 +0000 | [diff] [blame] | 479 | |
Chris Lattner | 92020fa | 2004-04-15 15:16:02 +0000 | [diff] [blame] | 480 | return 0; |
| 481 | } |
| 482 | |
| 483 | |
| 484 | //===-------------------------------------------------------------------===// |
| 485 | // APIs for updating loop information after changing the CFG |
| 486 | // |
| 487 | |
Chris Lattner | 699b305 | 2002-09-26 05:32:50 +0000 | [diff] [blame] | 488 | /// addBasicBlockToLoop - This function is used by other analyses to update loop |
| 489 | /// information. NewBB is set to be a new member of the current loop. Because |
| 490 | /// of this, it is added as a member of all parent loops, and is added to the |
| 491 | /// specified LoopInfo object as being in the current basic block. It is not |
| 492 | /// valid to replace the loop header with this method. |
| 493 | /// |
| 494 | void Loop::addBasicBlockToLoop(BasicBlock *NewBB, LoopInfo &LI) { |
Chris Lattner | 46758a8 | 2004-04-12 20:26:17 +0000 | [diff] [blame] | 495 | assert((Blocks.empty() || LI[getHeader()] == this) && |
| 496 | "Incorrect LI specified for this loop!"); |
Chris Lattner | 699b305 | 2002-09-26 05:32:50 +0000 | [diff] [blame] | 497 | assert(NewBB && "Cannot add a null basic block to the loop!"); |
| 498 | assert(LI[NewBB] == 0 && "BasicBlock already in the loop!"); |
| 499 | |
| 500 | // Add the loop mapping to the LoopInfo object... |
| 501 | LI.BBMap[NewBB] = this; |
| 502 | |
| 503 | // Add the basic block to this loop and all parent loops... |
| 504 | Loop *L = this; |
| 505 | while (L) { |
| 506 | L->Blocks.push_back(NewBB); |
| 507 | L = L->getParentLoop(); |
| 508 | } |
| 509 | } |
Chris Lattner | 5f82b8a | 2003-02-27 00:38:34 +0000 | [diff] [blame] | 510 | |
Chris Lattner | 46758a8 | 2004-04-12 20:26:17 +0000 | [diff] [blame] | 511 | /// replaceChildLoopWith - This is used when splitting loops up. It replaces |
| 512 | /// the OldChild entry in our children list with NewChild, and updates the |
| 513 | /// parent pointers of the two loops as appropriate. |
| 514 | void Loop::replaceChildLoopWith(Loop *OldChild, Loop *NewChild) { |
| 515 | assert(OldChild->ParentLoop == this && "This loop is already broken!"); |
| 516 | assert(NewChild->ParentLoop == 0 && "NewChild already has a parent!"); |
| 517 | std::vector<Loop*>::iterator I = std::find(SubLoops.begin(), SubLoops.end(), |
| 518 | OldChild); |
| 519 | assert(I != SubLoops.end() && "OldChild not in loop!"); |
| 520 | *I = NewChild; |
| 521 | OldChild->ParentLoop = 0; |
| 522 | NewChild->ParentLoop = this; |
Chris Lattner | 46758a8 | 2004-04-12 20:26:17 +0000 | [diff] [blame] | 523 | } |
| 524 | |
| 525 | /// addChildLoop - Add the specified loop to be a child of this loop. |
| 526 | /// |
| 527 | void Loop::addChildLoop(Loop *NewChild) { |
| 528 | assert(NewChild->ParentLoop == 0 && "NewChild already has a parent!"); |
| 529 | NewChild->ParentLoop = this; |
| 530 | SubLoops.push_back(NewChild); |
Chris Lattner | 46758a8 | 2004-04-12 20:26:17 +0000 | [diff] [blame] | 531 | } |
| 532 | |
| 533 | template<typename T> |
| 534 | static void RemoveFromVector(std::vector<T*> &V, T *N) { |
| 535 | typename std::vector<T*>::iterator I = std::find(V.begin(), V.end(), N); |
| 536 | assert(I != V.end() && "N is not in this list!"); |
| 537 | V.erase(I); |
| 538 | } |
| 539 | |
| 540 | /// removeChildLoop - This removes the specified child from being a subloop of |
| 541 | /// this loop. The loop is not deleted, as it will presumably be inserted |
| 542 | /// into another loop. |
| 543 | Loop *Loop::removeChildLoop(iterator I) { |
| 544 | assert(I != SubLoops.end() && "Cannot remove end iterator!"); |
| 545 | Loop *Child = *I; |
| 546 | assert(Child->ParentLoop == this && "Child is not a child of this loop!"); |
| 547 | SubLoops.erase(SubLoops.begin()+(I-begin())); |
| 548 | Child->ParentLoop = 0; |
| 549 | return Child; |
| 550 | } |
| 551 | |
| 552 | |
| 553 | /// removeBlockFromLoop - This removes the specified basic block from the |
| 554 | /// current loop, updating the Blocks and ExitBlocks lists as appropriate. This |
| 555 | /// does not update the mapping in the LoopInfo class. |
| 556 | void Loop::removeBlockFromLoop(BasicBlock *BB) { |
| 557 | RemoveFromVector(Blocks, BB); |
Chris Lattner | 46758a8 | 2004-04-12 20:26:17 +0000 | [diff] [blame] | 558 | } |