Chandler Carruth | bf71a34 | 2014-02-06 04:37:03 +0000 | [diff] [blame] | 1 | //===- LazyCallGraph.cpp - Analysis of a Module's call graph --------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | |
| 10 | #include "llvm/Analysis/LazyCallGraph.h" |
Chandler Carruth | 18eadd92 | 2014-04-18 10:50:32 +0000 | [diff] [blame] | 11 | #include "llvm/ADT/STLExtras.h" |
Chandler Carruth | 219b89b | 2014-03-04 11:01:28 +0000 | [diff] [blame] | 12 | #include "llvm/IR/CallSite.h" |
Chandler Carruth | 7da14f1 | 2014-03-06 03:23:41 +0000 | [diff] [blame] | 13 | #include "llvm/IR/InstVisitor.h" |
Chandler Carruth | bf71a34 | 2014-02-06 04:37:03 +0000 | [diff] [blame] | 14 | #include "llvm/IR/Instructions.h" |
| 15 | #include "llvm/IR/PassManager.h" |
Chandler Carruth | 99b756d | 2014-04-21 05:04:24 +0000 | [diff] [blame] | 16 | #include "llvm/Support/Debug.h" |
Chandler Carruth | bf71a34 | 2014-02-06 04:37:03 +0000 | [diff] [blame] | 17 | #include "llvm/Support/raw_ostream.h" |
Chandler Carruth | bf71a34 | 2014-02-06 04:37:03 +0000 | [diff] [blame] | 18 | |
| 19 | using namespace llvm; |
| 20 | |
Chandler Carruth | f1221bd | 2014-04-22 02:48:03 +0000 | [diff] [blame] | 21 | #define DEBUG_TYPE "lcg" |
| 22 | |
Chandler Carruth | bf71a34 | 2014-02-06 04:37:03 +0000 | [diff] [blame] | 23 | static void findCallees( |
| 24 | SmallVectorImpl<Constant *> &Worklist, SmallPtrSetImpl<Constant *> &Visited, |
Chandler Carruth | e9b5061 | 2014-03-10 02:14:14 +0000 | [diff] [blame] | 25 | SmallVectorImpl<PointerUnion<Function *, LazyCallGraph::Node *>> &Callees, |
Chandler Carruth | 0b623ba | 2014-04-23 04:00:17 +0000 | [diff] [blame] | 26 | DenseMap<Function *, size_t> &CalleeIndexMap) { |
Chandler Carruth | bf71a34 | 2014-02-06 04:37:03 +0000 | [diff] [blame] | 27 | while (!Worklist.empty()) { |
| 28 | Constant *C = Worklist.pop_back_val(); |
| 29 | |
| 30 | if (Function *F = dyn_cast<Function>(C)) { |
| 31 | // Note that we consider *any* function with a definition to be a viable |
| 32 | // edge. Even if the function's definition is subject to replacement by |
| 33 | // some other module (say, a weak definition) there may still be |
| 34 | // optimizations which essentially speculate based on the definition and |
| 35 | // a way to check that the specific definition is in fact the one being |
| 36 | // used. For example, this could be done by moving the weak definition to |
| 37 | // a strong (internal) definition and making the weak definition be an |
| 38 | // alias. Then a test of the address of the weak function against the new |
| 39 | // strong definition's address would be an effective way to determine the |
| 40 | // safety of optimizing a direct call edge. |
Chandler Carruth | 0b623ba | 2014-04-23 04:00:17 +0000 | [diff] [blame] | 41 | if (!F->isDeclaration() && |
| 42 | CalleeIndexMap.insert(std::make_pair(F, Callees.size())).second) { |
Chandler Carruth | 99b756d | 2014-04-21 05:04:24 +0000 | [diff] [blame] | 43 | DEBUG(dbgs() << " Added callable function: " << F->getName() |
| 44 | << "\n"); |
Chandler Carruth | e9b5061 | 2014-03-10 02:14:14 +0000 | [diff] [blame] | 45 | Callees.push_back(F); |
Chandler Carruth | 99b756d | 2014-04-21 05:04:24 +0000 | [diff] [blame] | 46 | } |
Chandler Carruth | bf71a34 | 2014-02-06 04:37:03 +0000 | [diff] [blame] | 47 | continue; |
| 48 | } |
| 49 | |
Chandler Carruth | 1583e99 | 2014-03-03 10:42:58 +0000 | [diff] [blame] | 50 | for (Value *Op : C->operand_values()) |
| 51 | if (Visited.insert(cast<Constant>(Op))) |
| 52 | Worklist.push_back(cast<Constant>(Op)); |
Chandler Carruth | bf71a34 | 2014-02-06 04:37:03 +0000 | [diff] [blame] | 53 | } |
| 54 | } |
| 55 | |
Chandler Carruth | 18eadd92 | 2014-04-18 10:50:32 +0000 | [diff] [blame] | 56 | LazyCallGraph::Node::Node(LazyCallGraph &G, Function &F) |
| 57 | : G(&G), F(F), DFSNumber(0), LowLink(0) { |
Chandler Carruth | 99b756d | 2014-04-21 05:04:24 +0000 | [diff] [blame] | 58 | DEBUG(dbgs() << " Adding functions called by '" << F.getName() |
| 59 | << "' to the graph.\n"); |
| 60 | |
Chandler Carruth | bf71a34 | 2014-02-06 04:37:03 +0000 | [diff] [blame] | 61 | SmallVector<Constant *, 16> Worklist; |
| 62 | SmallPtrSet<Constant *, 16> Visited; |
| 63 | // Find all the potential callees in this function. First walk the |
| 64 | // instructions and add every operand which is a constant to the worklist. |
Chandler Carruth | b9e2f8c | 2014-03-09 12:20:34 +0000 | [diff] [blame] | 65 | for (BasicBlock &BB : F) |
| 66 | for (Instruction &I : BB) |
| 67 | for (Value *Op : I.operand_values()) |
Chandler Carruth | 1583e99 | 2014-03-03 10:42:58 +0000 | [diff] [blame] | 68 | if (Constant *C = dyn_cast<Constant>(Op)) |
Chandler Carruth | bf71a34 | 2014-02-06 04:37:03 +0000 | [diff] [blame] | 69 | if (Visited.insert(C)) |
| 70 | Worklist.push_back(C); |
| 71 | |
| 72 | // We've collected all the constant (and thus potentially function or |
| 73 | // function containing) operands to all of the instructions in the function. |
| 74 | // Process them (recursively) collecting every function found. |
Chandler Carruth | 0b623ba | 2014-04-23 04:00:17 +0000 | [diff] [blame] | 75 | findCallees(Worklist, Visited, Callees, CalleeIndexMap); |
Chandler Carruth | bf71a34 | 2014-02-06 04:37:03 +0000 | [diff] [blame] | 76 | } |
| 77 | |
Chandler Carruth | c00a7ff | 2014-04-28 11:10:23 +0000 | [diff] [blame^] | 78 | void LazyCallGraph::Node::insertEdgeInternal(Function &Callee) { |
| 79 | CalleeIndexMap.insert(std::make_pair(&Callee, Callees.size())); |
| 80 | if (Node *N = G->lookup(Callee)) |
| 81 | Callees.push_back(N); |
| 82 | else |
| 83 | Callees.push_back(&Callee); |
| 84 | } |
| 85 | |
Chandler Carruth | aa839b2 | 2014-04-27 01:59:50 +0000 | [diff] [blame] | 86 | void LazyCallGraph::Node::removeEdgeInternal(Function &Callee) { |
| 87 | auto IndexMapI = CalleeIndexMap.find(&Callee); |
| 88 | assert(IndexMapI != CalleeIndexMap.end() && |
| 89 | "Callee not in the callee set for this caller?"); |
| 90 | |
| 91 | Callees.erase(Callees.begin() + IndexMapI->second); |
| 92 | CalleeIndexMap.erase(IndexMapI); |
| 93 | } |
| 94 | |
Chandler Carruth | 2174f44 | 2014-04-18 20:44:16 +0000 | [diff] [blame] | 95 | LazyCallGraph::LazyCallGraph(Module &M) : NextDFSNumber(0) { |
Chandler Carruth | 99b756d | 2014-04-21 05:04:24 +0000 | [diff] [blame] | 96 | DEBUG(dbgs() << "Building CG for module: " << M.getModuleIdentifier() |
| 97 | << "\n"); |
Chandler Carruth | b9e2f8c | 2014-03-09 12:20:34 +0000 | [diff] [blame] | 98 | for (Function &F : M) |
| 99 | if (!F.isDeclaration() && !F.hasLocalLinkage()) |
Chandler Carruth | 0b623ba | 2014-04-23 04:00:17 +0000 | [diff] [blame] | 100 | if (EntryIndexMap.insert(std::make_pair(&F, EntryNodes.size())).second) { |
Chandler Carruth | 99b756d | 2014-04-21 05:04:24 +0000 | [diff] [blame] | 101 | DEBUG(dbgs() << " Adding '" << F.getName() |
| 102 | << "' to entry set of the graph.\n"); |
Chandler Carruth | b9e2f8c | 2014-03-09 12:20:34 +0000 | [diff] [blame] | 103 | EntryNodes.push_back(&F); |
Chandler Carruth | 99b756d | 2014-04-21 05:04:24 +0000 | [diff] [blame] | 104 | } |
Chandler Carruth | bf71a34 | 2014-02-06 04:37:03 +0000 | [diff] [blame] | 105 | |
| 106 | // Now add entry nodes for functions reachable via initializers to globals. |
| 107 | SmallVector<Constant *, 16> Worklist; |
| 108 | SmallPtrSet<Constant *, 16> Visited; |
Chandler Carruth | b9e2f8c | 2014-03-09 12:20:34 +0000 | [diff] [blame] | 109 | for (GlobalVariable &GV : M.globals()) |
| 110 | if (GV.hasInitializer()) |
| 111 | if (Visited.insert(GV.getInitializer())) |
| 112 | Worklist.push_back(GV.getInitializer()); |
Chandler Carruth | bf71a34 | 2014-02-06 04:37:03 +0000 | [diff] [blame] | 113 | |
Chandler Carruth | 99b756d | 2014-04-21 05:04:24 +0000 | [diff] [blame] | 114 | DEBUG(dbgs() << " Adding functions referenced by global initializers to the " |
| 115 | "entry set.\n"); |
Chandler Carruth | 0b623ba | 2014-04-23 04:00:17 +0000 | [diff] [blame] | 116 | findCallees(Worklist, Visited, EntryNodes, EntryIndexMap); |
Chandler Carruth | 18eadd92 | 2014-04-18 10:50:32 +0000 | [diff] [blame] | 117 | |
| 118 | for (auto &Entry : EntryNodes) |
| 119 | if (Function *F = Entry.dyn_cast<Function *>()) |
Chandler Carruth | 90821c2 | 2014-04-26 09:45:55 +0000 | [diff] [blame] | 120 | SCCEntryNodes.push_back(F); |
Chandler Carruth | 18eadd92 | 2014-04-18 10:50:32 +0000 | [diff] [blame] | 121 | else |
Chandler Carruth | 90821c2 | 2014-04-26 09:45:55 +0000 | [diff] [blame] | 122 | SCCEntryNodes.push_back(&Entry.get<Node *>()->getFunction()); |
Chandler Carruth | bf71a34 | 2014-02-06 04:37:03 +0000 | [diff] [blame] | 123 | } |
| 124 | |
Chandler Carruth | bf71a34 | 2014-02-06 04:37:03 +0000 | [diff] [blame] | 125 | LazyCallGraph::LazyCallGraph(LazyCallGraph &&G) |
Chandler Carruth | 2174f44 | 2014-04-18 20:44:16 +0000 | [diff] [blame] | 126 | : BPA(std::move(G.BPA)), NodeMap(std::move(G.NodeMap)), |
| 127 | EntryNodes(std::move(G.EntryNodes)), |
Chandler Carruth | 0b623ba | 2014-04-23 04:00:17 +0000 | [diff] [blame] | 128 | EntryIndexMap(std::move(G.EntryIndexMap)), SCCBPA(std::move(G.SCCBPA)), |
Chandler Carruth | 18eadd92 | 2014-04-18 10:50:32 +0000 | [diff] [blame] | 129 | SCCMap(std::move(G.SCCMap)), LeafSCCs(std::move(G.LeafSCCs)), |
| 130 | DFSStack(std::move(G.DFSStack)), |
Chandler Carruth | 2174f44 | 2014-04-18 20:44:16 +0000 | [diff] [blame] | 131 | SCCEntryNodes(std::move(G.SCCEntryNodes)), |
| 132 | NextDFSNumber(G.NextDFSNumber) { |
Chandler Carruth | d8d865e | 2014-04-18 11:02:33 +0000 | [diff] [blame] | 133 | updateGraphPtrs(); |
| 134 | } |
| 135 | |
| 136 | LazyCallGraph &LazyCallGraph::operator=(LazyCallGraph &&G) { |
| 137 | BPA = std::move(G.BPA); |
Chandler Carruth | 2174f44 | 2014-04-18 20:44:16 +0000 | [diff] [blame] | 138 | NodeMap = std::move(G.NodeMap); |
Chandler Carruth | d8d865e | 2014-04-18 11:02:33 +0000 | [diff] [blame] | 139 | EntryNodes = std::move(G.EntryNodes); |
Chandler Carruth | 0b623ba | 2014-04-23 04:00:17 +0000 | [diff] [blame] | 140 | EntryIndexMap = std::move(G.EntryIndexMap); |
Chandler Carruth | d8d865e | 2014-04-18 11:02:33 +0000 | [diff] [blame] | 141 | SCCBPA = std::move(G.SCCBPA); |
| 142 | SCCMap = std::move(G.SCCMap); |
| 143 | LeafSCCs = std::move(G.LeafSCCs); |
| 144 | DFSStack = std::move(G.DFSStack); |
| 145 | SCCEntryNodes = std::move(G.SCCEntryNodes); |
Chandler Carruth | 2174f44 | 2014-04-18 20:44:16 +0000 | [diff] [blame] | 146 | NextDFSNumber = G.NextDFSNumber; |
Chandler Carruth | d8d865e | 2014-04-18 11:02:33 +0000 | [diff] [blame] | 147 | updateGraphPtrs(); |
| 148 | return *this; |
| 149 | } |
| 150 | |
Chandler Carruth | aa839b2 | 2014-04-27 01:59:50 +0000 | [diff] [blame] | 151 | void LazyCallGraph::SCC::insert(Node &N) { |
Chandler Carruth | 8f92d6d | 2014-04-26 01:03:46 +0000 | [diff] [blame] | 152 | N.DFSNumber = N.LowLink = -1; |
| 153 | Nodes.push_back(&N); |
Chandler Carruth | aa839b2 | 2014-04-27 01:59:50 +0000 | [diff] [blame] | 154 | G->SCCMap[&N] = this; |
Chandler Carruth | 8f92d6d | 2014-04-26 01:03:46 +0000 | [diff] [blame] | 155 | } |
| 156 | |
Chandler Carruth | aa839b2 | 2014-04-27 01:59:50 +0000 | [diff] [blame] | 157 | void LazyCallGraph::SCC::removeInterSCCEdge(Node &CallerN, Node &CalleeN) { |
| 158 | // First remove it from the node. |
| 159 | CallerN.removeEdgeInternal(CalleeN.getFunction()); |
| 160 | |
| 161 | assert(G->SCCMap.lookup(&CallerN) == this && |
| 162 | "The caller must be a member of this SCC."); |
| 163 | |
| 164 | SCC &CalleeC = *G->SCCMap.lookup(&CalleeN); |
| 165 | assert(&CalleeC != this && |
| 166 | "This API only supports the rmoval of inter-SCC edges."); |
| 167 | |
| 168 | assert(std::find(G->LeafSCCs.begin(), G->LeafSCCs.end(), this) == |
| 169 | G->LeafSCCs.end() && |
Chandler Carruth | 9302fbf | 2014-04-23 11:03:03 +0000 | [diff] [blame] | 170 | "Cannot have a leaf SCC caller with a different SCC callee."); |
| 171 | |
| 172 | bool HasOtherCallToCalleeC = false; |
| 173 | bool HasOtherCallOutsideSCC = false; |
| 174 | for (Node *N : *this) { |
Chandler Carruth | aa839b2 | 2014-04-27 01:59:50 +0000 | [diff] [blame] | 175 | for (Node &OtherCalleeN : *N) { |
| 176 | SCC &OtherCalleeC = *G->SCCMap.lookup(&OtherCalleeN); |
Chandler Carruth | bd5d308 | 2014-04-23 23:34:48 +0000 | [diff] [blame] | 177 | if (&OtherCalleeC == &CalleeC) { |
Chandler Carruth | 9302fbf | 2014-04-23 11:03:03 +0000 | [diff] [blame] | 178 | HasOtherCallToCalleeC = true; |
| 179 | break; |
| 180 | } |
Chandler Carruth | bd5d308 | 2014-04-23 23:34:48 +0000 | [diff] [blame] | 181 | if (&OtherCalleeC != this) |
Chandler Carruth | 9302fbf | 2014-04-23 11:03:03 +0000 | [diff] [blame] | 182 | HasOtherCallOutsideSCC = true; |
| 183 | } |
| 184 | if (HasOtherCallToCalleeC) |
| 185 | break; |
| 186 | } |
| 187 | // Because the SCCs form a DAG, deleting such an edge cannot change the set |
| 188 | // of SCCs in the graph. However, it may cut an edge of the SCC DAG, making |
| 189 | // the caller no longer a parent of the callee. Walk the other call edges |
| 190 | // in the caller to tell. |
| 191 | if (!HasOtherCallToCalleeC) { |
Chandler Carruth | 493e0a6 | 2014-04-24 09:22:31 +0000 | [diff] [blame] | 192 | bool Removed = CalleeC.ParentSCCs.erase(this); |
Chandler Carruth | 9302fbf | 2014-04-23 11:03:03 +0000 | [diff] [blame] | 193 | (void)Removed; |
| 194 | assert(Removed && |
| 195 | "Did not find the caller SCC in the callee SCC's parent list!"); |
| 196 | |
| 197 | // It may orphan an SCC if it is the last edge reaching it, but that does |
| 198 | // not violate any invariants of the graph. |
| 199 | if (CalleeC.ParentSCCs.empty()) |
Chandler Carruth | aa839b2 | 2014-04-27 01:59:50 +0000 | [diff] [blame] | 200 | DEBUG(dbgs() << "LCG: Update removing " << CallerN.getFunction().getName() |
| 201 | << " -> " << CalleeN.getFunction().getName() |
| 202 | << " edge orphaned the callee's SCC!\n"); |
Chandler Carruth | 9302fbf | 2014-04-23 11:03:03 +0000 | [diff] [blame] | 203 | } |
| 204 | |
| 205 | // It may make the Caller SCC a leaf SCC. |
| 206 | if (!HasOtherCallOutsideSCC) |
Chandler Carruth | aa839b2 | 2014-04-27 01:59:50 +0000 | [diff] [blame] | 207 | G->LeafSCCs.push_back(this); |
Chandler Carruth | 9302fbf | 2014-04-23 11:03:03 +0000 | [diff] [blame] | 208 | } |
| 209 | |
Chandler Carruth | aca48d0 | 2014-04-26 09:06:53 +0000 | [diff] [blame] | 210 | void LazyCallGraph::SCC::internalDFS( |
Chandler Carruth | aca48d0 | 2014-04-26 09:06:53 +0000 | [diff] [blame] | 211 | SmallVectorImpl<std::pair<Node *, Node::iterator>> &DFSStack, |
| 212 | SmallVectorImpl<Node *> &PendingSCCStack, Node *N, |
| 213 | SmallVectorImpl<SCC *> &ResultSCCs) { |
| 214 | Node::iterator I = N->begin(); |
| 215 | N->LowLink = N->DFSNumber = 1; |
| 216 | int NextDFSNumber = 2; |
| 217 | for (;;) { |
| 218 | assert(N->DFSNumber != 0 && "We should always assign a DFS number " |
| 219 | "before processing a node."); |
| 220 | |
| 221 | // We simulate recursion by popping out of the nested loop and continuing. |
| 222 | Node::iterator E = N->end(); |
| 223 | while (I != E) { |
| 224 | Node &ChildN = *I; |
Chandler Carruth | aa839b2 | 2014-04-27 01:59:50 +0000 | [diff] [blame] | 225 | if (SCC *ChildSCC = G->SCCMap.lookup(&ChildN)) { |
Chandler Carruth | aca48d0 | 2014-04-26 09:06:53 +0000 | [diff] [blame] | 226 | // Check if we have reached a node in the new (known connected) set of |
| 227 | // this SCC. If so, the entire stack is necessarily in that set and we |
| 228 | // can re-start. |
| 229 | if (ChildSCC == this) { |
Chandler Carruth | aa839b2 | 2014-04-27 01:59:50 +0000 | [diff] [blame] | 230 | insert(*N); |
Chandler Carruth | aca48d0 | 2014-04-26 09:06:53 +0000 | [diff] [blame] | 231 | while (!PendingSCCStack.empty()) |
Chandler Carruth | aa839b2 | 2014-04-27 01:59:50 +0000 | [diff] [blame] | 232 | insert(*PendingSCCStack.pop_back_val()); |
Chandler Carruth | aca48d0 | 2014-04-26 09:06:53 +0000 | [diff] [blame] | 233 | while (!DFSStack.empty()) |
Chandler Carruth | aa839b2 | 2014-04-27 01:59:50 +0000 | [diff] [blame] | 234 | insert(*DFSStack.pop_back_val().first); |
Chandler Carruth | aca48d0 | 2014-04-26 09:06:53 +0000 | [diff] [blame] | 235 | return; |
| 236 | } |
| 237 | |
| 238 | // If this child isn't currently in this SCC, no need to process it. |
| 239 | // However, we do need to remove this SCC from its SCC's parent set. |
| 240 | ChildSCC->ParentSCCs.erase(this); |
| 241 | ++I; |
| 242 | continue; |
| 243 | } |
| 244 | |
| 245 | if (ChildN.DFSNumber == 0) { |
| 246 | // Mark that we should start at this child when next this node is the |
| 247 | // top of the stack. We don't start at the next child to ensure this |
| 248 | // child's lowlink is reflected. |
| 249 | DFSStack.push_back(std::make_pair(N, I)); |
| 250 | |
| 251 | // Continue, resetting to the child node. |
| 252 | ChildN.LowLink = ChildN.DFSNumber = NextDFSNumber++; |
| 253 | N = &ChildN; |
| 254 | I = ChildN.begin(); |
| 255 | E = ChildN.end(); |
| 256 | continue; |
| 257 | } |
| 258 | |
| 259 | // Track the lowest link of the childen, if any are still in the stack. |
| 260 | // Any child not on the stack will have a LowLink of -1. |
| 261 | assert(ChildN.LowLink != 0 && |
| 262 | "Low-link must not be zero with a non-zero DFS number."); |
| 263 | if (ChildN.LowLink >= 0 && ChildN.LowLink < N->LowLink) |
| 264 | N->LowLink = ChildN.LowLink; |
| 265 | ++I; |
| 266 | } |
| 267 | |
| 268 | if (N->LowLink == N->DFSNumber) { |
Chandler Carruth | aa839b2 | 2014-04-27 01:59:50 +0000 | [diff] [blame] | 269 | ResultSCCs.push_back(G->formSCC(N, PendingSCCStack)); |
Chandler Carruth | aca48d0 | 2014-04-26 09:06:53 +0000 | [diff] [blame] | 270 | if (DFSStack.empty()) |
| 271 | return; |
| 272 | } else { |
| 273 | // At this point we know that N cannot ever be an SCC root. Its low-link |
| 274 | // is not its dfs-number, and we've processed all of its children. It is |
| 275 | // just sitting here waiting until some node further down the stack gets |
| 276 | // low-link == dfs-number and pops it off as well. Move it to the pending |
| 277 | // stack which is pulled into the next SCC to be formed. |
| 278 | PendingSCCStack.push_back(N); |
| 279 | |
| 280 | assert(!DFSStack.empty() && "We shouldn't have an empty stack!"); |
| 281 | } |
| 282 | |
| 283 | N = DFSStack.back().first; |
| 284 | I = DFSStack.back().second; |
| 285 | DFSStack.pop_back(); |
| 286 | } |
| 287 | } |
| 288 | |
Chandler Carruth | 9302fbf | 2014-04-23 11:03:03 +0000 | [diff] [blame] | 289 | SmallVector<LazyCallGraph::SCC *, 1> |
Chandler Carruth | aa839b2 | 2014-04-27 01:59:50 +0000 | [diff] [blame] | 290 | LazyCallGraph::SCC::removeIntraSCCEdge(Node &CallerN, |
| 291 | Node &CalleeN) { |
| 292 | // First remove it from the node. |
| 293 | CallerN.removeEdgeInternal(CalleeN.getFunction()); |
| 294 | |
Chandler Carruth | 3f5f5fe | 2014-04-28 10:49:06 +0000 | [diff] [blame] | 295 | // We return a list of the resulting *new* SCCs in postorder. |
Chandler Carruth | 9302fbf | 2014-04-23 11:03:03 +0000 | [diff] [blame] | 296 | SmallVector<SCC *, 1> ResultSCCs; |
Chandler Carruth | 9302fbf | 2014-04-23 11:03:03 +0000 | [diff] [blame] | 297 | |
Chandler Carruth | a7205b6 | 2014-04-26 03:36:37 +0000 | [diff] [blame] | 298 | // Direct recursion doesn't impact the SCC graph at all. |
Chandler Carruth | aa839b2 | 2014-04-27 01:59:50 +0000 | [diff] [blame] | 299 | if (&CallerN == &CalleeN) |
Chandler Carruth | a7205b6 | 2014-04-26 03:36:37 +0000 | [diff] [blame] | 300 | return ResultSCCs; |
| 301 | |
Chandler Carruth | 770060d | 2014-04-25 09:08:05 +0000 | [diff] [blame] | 302 | // The worklist is every node in the original SCC. |
| 303 | SmallVector<Node *, 1> Worklist; |
| 304 | Worklist.swap(Nodes); |
| 305 | for (Node *N : Worklist) { |
Chandler Carruth | 2e6ef0e | 2014-04-25 09:08:10 +0000 | [diff] [blame] | 306 | // The nodes formerly in this SCC are no longer in any SCC. |
Chandler Carruth | 9302fbf | 2014-04-23 11:03:03 +0000 | [diff] [blame] | 307 | N->DFSNumber = 0; |
| 308 | N->LowLink = 0; |
Chandler Carruth | aa839b2 | 2014-04-27 01:59:50 +0000 | [diff] [blame] | 309 | G->SCCMap.erase(N); |
Chandler Carruth | 9302fbf | 2014-04-23 11:03:03 +0000 | [diff] [blame] | 310 | } |
Chandler Carruth | a7205b6 | 2014-04-26 03:36:37 +0000 | [diff] [blame] | 311 | assert(Worklist.size() > 1 && "We have to have at least two nodes to have an " |
| 312 | "edge between them that is within the SCC."); |
Chandler Carruth | 9302fbf | 2014-04-23 11:03:03 +0000 | [diff] [blame] | 313 | |
| 314 | // The callee can already reach every node in this SCC (by definition). It is |
| 315 | // the only node we know will stay inside this SCC. Everything which |
| 316 | // transitively reaches Callee will also remain in the SCC. To model this we |
| 317 | // incrementally add any chain of nodes which reaches something in the new |
| 318 | // node set to the new node set. This short circuits one side of the Tarjan's |
| 319 | // walk. |
Chandler Carruth | aa839b2 | 2014-04-27 01:59:50 +0000 | [diff] [blame] | 320 | insert(CalleeN); |
Chandler Carruth | 9302fbf | 2014-04-23 11:03:03 +0000 | [diff] [blame] | 321 | |
Chandler Carruth | aca48d0 | 2014-04-26 09:06:53 +0000 | [diff] [blame] | 322 | // We're going to do a full mini-Tarjan's walk using a local stack here. |
| 323 | SmallVector<std::pair<Node *, Node::iterator>, 4> DFSStack; |
| 324 | SmallVector<Node *, 4> PendingSCCStack; |
| 325 | do { |
| 326 | Node *N = Worklist.pop_back_val(); |
| 327 | if (N->DFSNumber == 0) |
Chandler Carruth | aa839b2 | 2014-04-27 01:59:50 +0000 | [diff] [blame] | 328 | internalDFS(DFSStack, PendingSCCStack, N, ResultSCCs); |
Chandler Carruth | 9302fbf | 2014-04-23 11:03:03 +0000 | [diff] [blame] | 329 | |
Chandler Carruth | aca48d0 | 2014-04-26 09:06:53 +0000 | [diff] [blame] | 330 | assert(DFSStack.empty() && "Didn't flush the entire DFS stack!"); |
| 331 | assert(PendingSCCStack.empty() && "Didn't flush all pending SCC nodes!"); |
| 332 | } while (!Worklist.empty()); |
Chandler Carruth | 9302fbf | 2014-04-23 11:03:03 +0000 | [diff] [blame] | 333 | |
Chandler Carruth | 9302fbf | 2014-04-23 11:03:03 +0000 | [diff] [blame] | 334 | // Now we need to reconnect the current SCC to the graph. |
| 335 | bool IsLeafSCC = true; |
Chandler Carruth | 9ba7762 | 2014-04-25 09:52:44 +0000 | [diff] [blame] | 336 | for (Node *N : Nodes) { |
Chandler Carruth | bd5d308 | 2014-04-23 23:34:48 +0000 | [diff] [blame] | 337 | for (Node &ChildN : *N) { |
Chandler Carruth | aa839b2 | 2014-04-27 01:59:50 +0000 | [diff] [blame] | 338 | SCC &ChildSCC = *G->SCCMap.lookup(&ChildN); |
Chandler Carruth | 9ba7762 | 2014-04-25 09:52:44 +0000 | [diff] [blame] | 339 | if (&ChildSCC == this) |
| 340 | continue; |
Chandler Carruth | bd5d308 | 2014-04-23 23:34:48 +0000 | [diff] [blame] | 341 | ChildSCC.ParentSCCs.insert(this); |
Chandler Carruth | 9302fbf | 2014-04-23 11:03:03 +0000 | [diff] [blame] | 342 | IsLeafSCC = false; |
| 343 | } |
| 344 | } |
| 345 | #ifndef NDEBUG |
Chandler Carruth | 3f5f5fe | 2014-04-28 10:49:06 +0000 | [diff] [blame] | 346 | if (!ResultSCCs.empty()) |
Chandler Carruth | 9302fbf | 2014-04-23 11:03:03 +0000 | [diff] [blame] | 347 | assert(!IsLeafSCC && "This SCC cannot be a leaf as we have split out new " |
| 348 | "SCCs by removing this edge."); |
Chandler Carruth | aa839b2 | 2014-04-27 01:59:50 +0000 | [diff] [blame] | 349 | if (!std::any_of(G->LeafSCCs.begin(), G->LeafSCCs.end(), |
Chandler Carruth | 9302fbf | 2014-04-23 11:03:03 +0000 | [diff] [blame] | 350 | [&](SCC *C) { return C == this; })) |
| 351 | assert(!IsLeafSCC && "This SCC cannot be a leaf as it already had child " |
| 352 | "SCCs before we removed this edge."); |
| 353 | #endif |
| 354 | // If this SCC stopped being a leaf through this edge removal, remove it from |
| 355 | // the leaf SCC list. |
Chandler Carruth | 3f5f5fe | 2014-04-28 10:49:06 +0000 | [diff] [blame] | 356 | if (!IsLeafSCC && !ResultSCCs.empty()) |
Chandler Carruth | aa839b2 | 2014-04-27 01:59:50 +0000 | [diff] [blame] | 357 | G->LeafSCCs.erase(std::remove(G->LeafSCCs.begin(), G->LeafSCCs.end(), this), |
| 358 | G->LeafSCCs.end()); |
Chandler Carruth | 9302fbf | 2014-04-23 11:03:03 +0000 | [diff] [blame] | 359 | |
| 360 | // Return the new list of SCCs. |
| 361 | return ResultSCCs; |
| 362 | } |
| 363 | |
Chandler Carruth | c00a7ff | 2014-04-28 11:10:23 +0000 | [diff] [blame^] | 364 | void LazyCallGraph::insertEdge(Node &CallerN, Function &Callee) { |
| 365 | assert(SCCMap.empty() && DFSStack.empty() && |
| 366 | "This method cannot be called after SCCs have been formed!"); |
| 367 | |
| 368 | return CallerN.insertEdgeInternal(Callee); |
| 369 | } |
| 370 | |
Chandler Carruth | 9302fbf | 2014-04-23 11:03:03 +0000 | [diff] [blame] | 371 | void LazyCallGraph::removeEdge(Node &CallerN, Function &Callee) { |
Chandler Carruth | aa839b2 | 2014-04-27 01:59:50 +0000 | [diff] [blame] | 372 | assert(SCCMap.empty() && DFSStack.empty() && |
| 373 | "This method cannot be called after SCCs have been formed!"); |
Chandler Carruth | 9302fbf | 2014-04-23 11:03:03 +0000 | [diff] [blame] | 374 | |
Chandler Carruth | aa839b2 | 2014-04-27 01:59:50 +0000 | [diff] [blame] | 375 | return CallerN.removeEdgeInternal(Callee); |
Chandler Carruth | 9302fbf | 2014-04-23 11:03:03 +0000 | [diff] [blame] | 376 | } |
| 377 | |
Chandler Carruth | 2a898e0 | 2014-04-23 23:20:36 +0000 | [diff] [blame] | 378 | LazyCallGraph::Node &LazyCallGraph::insertInto(Function &F, Node *&MappedN) { |
| 379 | return *new (MappedN = BPA.Allocate()) Node(*this, F); |
Chandler Carruth | d8d865e | 2014-04-18 11:02:33 +0000 | [diff] [blame] | 380 | } |
| 381 | |
| 382 | void LazyCallGraph::updateGraphPtrs() { |
Chandler Carruth | b60cb31 | 2014-04-17 07:25:59 +0000 | [diff] [blame] | 383 | // Process all nodes updating the graph pointers. |
Chandler Carruth | aa839b2 | 2014-04-27 01:59:50 +0000 | [diff] [blame] | 384 | { |
| 385 | SmallVector<Node *, 16> Worklist; |
| 386 | for (auto &Entry : EntryNodes) |
| 387 | if (Node *EntryN = Entry.dyn_cast<Node *>()) |
| 388 | Worklist.push_back(EntryN); |
Chandler Carruth | b60cb31 | 2014-04-17 07:25:59 +0000 | [diff] [blame] | 389 | |
Chandler Carruth | aa839b2 | 2014-04-27 01:59:50 +0000 | [diff] [blame] | 390 | while (!Worklist.empty()) { |
| 391 | Node *N = Worklist.pop_back_val(); |
| 392 | N->G = this; |
| 393 | for (auto &Callee : N->Callees) |
| 394 | if (Node *CalleeN = Callee.dyn_cast<Node *>()) |
| 395 | Worklist.push_back(CalleeN); |
| 396 | } |
| 397 | } |
| 398 | |
| 399 | // Process all SCCs updating the graph pointers. |
| 400 | { |
| 401 | SmallVector<SCC *, 16> Worklist(LeafSCCs.begin(), LeafSCCs.end()); |
| 402 | |
| 403 | while (!Worklist.empty()) { |
| 404 | SCC *C = Worklist.pop_back_val(); |
| 405 | C->G = this; |
| 406 | Worklist.insert(Worklist.end(), C->ParentSCCs.begin(), |
| 407 | C->ParentSCCs.end()); |
| 408 | } |
Chandler Carruth | b60cb31 | 2014-04-17 07:25:59 +0000 | [diff] [blame] | 409 | } |
Chandler Carruth | bf71a34 | 2014-02-06 04:37:03 +0000 | [diff] [blame] | 410 | } |
Chandler Carruth | bf71a34 | 2014-02-06 04:37:03 +0000 | [diff] [blame] | 411 | |
Chandler Carruth | 2455393 | 2014-04-24 11:05:20 +0000 | [diff] [blame] | 412 | LazyCallGraph::SCC *LazyCallGraph::formSCC(Node *RootN, |
| 413 | SmallVectorImpl<Node *> &NodeStack) { |
Chandler Carruth | 3f9869a | 2014-04-23 06:09:03 +0000 | [diff] [blame] | 414 | // The tail of the stack is the new SCC. Allocate the SCC and pop the stack |
| 415 | // into it. |
Chandler Carruth | aa839b2 | 2014-04-27 01:59:50 +0000 | [diff] [blame] | 416 | SCC *NewSCC = new (SCCBPA.Allocate()) SCC(*this); |
Chandler Carruth | 3f9869a | 2014-04-23 06:09:03 +0000 | [diff] [blame] | 417 | |
Chandler Carruth | 2455393 | 2014-04-24 11:05:20 +0000 | [diff] [blame] | 418 | while (!NodeStack.empty() && NodeStack.back()->DFSNumber > RootN->DFSNumber) { |
Chandler Carruth | 8f92d6d | 2014-04-26 01:03:46 +0000 | [diff] [blame] | 419 | assert(NodeStack.back()->LowLink >= RootN->LowLink && |
Chandler Carruth | cace662 | 2014-04-23 10:31:17 +0000 | [diff] [blame] | 420 | "We cannot have a low link in an SCC lower than its root on the " |
| 421 | "stack!"); |
Chandler Carruth | aa839b2 | 2014-04-27 01:59:50 +0000 | [diff] [blame] | 422 | NewSCC->insert(*NodeStack.pop_back_val()); |
Chandler Carruth | cace662 | 2014-04-23 10:31:17 +0000 | [diff] [blame] | 423 | } |
Chandler Carruth | aa839b2 | 2014-04-27 01:59:50 +0000 | [diff] [blame] | 424 | NewSCC->insert(*RootN); |
Chandler Carruth | 3f9869a | 2014-04-23 06:09:03 +0000 | [diff] [blame] | 425 | |
| 426 | // A final pass over all edges in the SCC (this remains linear as we only |
| 427 | // do this once when we build the SCC) to connect it to the parent sets of |
| 428 | // its children. |
| 429 | bool IsLeafSCC = true; |
| 430 | for (Node *SCCN : NewSCC->Nodes) |
Chandler Carruth | bd5d308 | 2014-04-23 23:34:48 +0000 | [diff] [blame] | 431 | for (Node &SCCChildN : *SCCN) { |
Chandler Carruth | d52f8e0 | 2014-04-24 08:55:36 +0000 | [diff] [blame] | 432 | if (SCCMap.lookup(&SCCChildN) == NewSCC) |
Chandler Carruth | 3f9869a | 2014-04-23 06:09:03 +0000 | [diff] [blame] | 433 | continue; |
Chandler Carruth | bd5d308 | 2014-04-23 23:34:48 +0000 | [diff] [blame] | 434 | SCC &ChildSCC = *SCCMap.lookup(&SCCChildN); |
| 435 | ChildSCC.ParentSCCs.insert(NewSCC); |
Chandler Carruth | 3f9869a | 2014-04-23 06:09:03 +0000 | [diff] [blame] | 436 | IsLeafSCC = false; |
| 437 | } |
| 438 | |
| 439 | // For the SCCs where we fine no child SCCs, add them to the leaf list. |
| 440 | if (IsLeafSCC) |
| 441 | LeafSCCs.push_back(NewSCC); |
| 442 | |
| 443 | return NewSCC; |
| 444 | } |
| 445 | |
Chandler Carruth | 18eadd92 | 2014-04-18 10:50:32 +0000 | [diff] [blame] | 446 | LazyCallGraph::SCC *LazyCallGraph::getNextSCCInPostOrder() { |
Chandler Carruth | 5e2d70b | 2014-04-26 09:28:00 +0000 | [diff] [blame] | 447 | Node *N; |
| 448 | Node::iterator I; |
| 449 | if (!DFSStack.empty()) { |
| 450 | N = DFSStack.back().first; |
| 451 | I = DFSStack.back().second; |
| 452 | DFSStack.pop_back(); |
| 453 | } else { |
Chandler Carruth | 18eadd92 | 2014-04-18 10:50:32 +0000 | [diff] [blame] | 454 | // If we've handled all candidate entry nodes to the SCC forest, we're done. |
Chandler Carruth | 90821c2 | 2014-04-26 09:45:55 +0000 | [diff] [blame] | 455 | do { |
| 456 | if (SCCEntryNodes.empty()) |
| 457 | return nullptr; |
Chandler Carruth | 18eadd92 | 2014-04-18 10:50:32 +0000 | [diff] [blame] | 458 | |
Chandler Carruth | 90821c2 | 2014-04-26 09:45:55 +0000 | [diff] [blame] | 459 | N = &get(*SCCEntryNodes.pop_back_val()); |
| 460 | } while (N->DFSNumber != 0); |
Chandler Carruth | 5e2d70b | 2014-04-26 09:28:00 +0000 | [diff] [blame] | 461 | I = N->begin(); |
| 462 | N->LowLink = N->DFSNumber = 1; |
Chandler Carruth | 09751bf | 2014-04-24 09:59:59 +0000 | [diff] [blame] | 463 | NextDFSNumber = 2; |
Chandler Carruth | 18eadd92 | 2014-04-18 10:50:32 +0000 | [diff] [blame] | 464 | } |
| 465 | |
Chandler Carruth | 91dcf0f | 2014-04-24 21:19:30 +0000 | [diff] [blame] | 466 | for (;;) { |
Chandler Carruth | 2455393 | 2014-04-24 11:05:20 +0000 | [diff] [blame] | 467 | assert(N->DFSNumber != 0 && "We should always assign a DFS number " |
| 468 | "before placing a node onto the stack."); |
| 469 | |
Chandler Carruth | 5e2d70b | 2014-04-26 09:28:00 +0000 | [diff] [blame] | 470 | Node::iterator E = N->end(); |
| 471 | while (I != E) { |
Chandler Carruth | bd5d308 | 2014-04-23 23:34:48 +0000 | [diff] [blame] | 472 | Node &ChildN = *I; |
| 473 | if (ChildN.DFSNumber == 0) { |
Chandler Carruth | cace662 | 2014-04-23 10:31:17 +0000 | [diff] [blame] | 474 | // Mark that we should start at this child when next this node is the |
| 475 | // top of the stack. We don't start at the next child to ensure this |
| 476 | // child's lowlink is reflected. |
Chandler Carruth | 5e2d70b | 2014-04-26 09:28:00 +0000 | [diff] [blame] | 477 | DFSStack.push_back(std::make_pair(N, N->begin())); |
Chandler Carruth | 18eadd92 | 2014-04-18 10:50:32 +0000 | [diff] [blame] | 478 | |
Chandler Carruth | cace662 | 2014-04-23 10:31:17 +0000 | [diff] [blame] | 479 | // Recurse onto this node via a tail call. |
Chandler Carruth | 09751bf | 2014-04-24 09:59:59 +0000 | [diff] [blame] | 480 | assert(!SCCMap.count(&ChildN) && |
| 481 | "Found a node with 0 DFS number but already in an SCC!"); |
| 482 | ChildN.LowLink = ChildN.DFSNumber = NextDFSNumber++; |
Chandler Carruth | 5e2d70b | 2014-04-26 09:28:00 +0000 | [diff] [blame] | 483 | N = &ChildN; |
| 484 | I = ChildN.begin(); |
| 485 | E = ChildN.end(); |
| 486 | continue; |
Chandler Carruth | cace662 | 2014-04-23 10:31:17 +0000 | [diff] [blame] | 487 | } |
| 488 | |
| 489 | // Track the lowest link of the childen, if any are still in the stack. |
Chandler Carruth | bd5d308 | 2014-04-23 23:34:48 +0000 | [diff] [blame] | 490 | assert(ChildN.LowLink != 0 && |
Chandler Carruth | b4a04da | 2014-04-23 22:28:13 +0000 | [diff] [blame] | 491 | "Low-link must not be zero with a non-zero DFS number."); |
Chandler Carruth | bd5d308 | 2014-04-23 23:34:48 +0000 | [diff] [blame] | 492 | if (ChildN.LowLink >= 0 && ChildN.LowLink < N->LowLink) |
| 493 | N->LowLink = ChildN.LowLink; |
Chandler Carruth | 5e2d70b | 2014-04-26 09:28:00 +0000 | [diff] [blame] | 494 | ++I; |
Chandler Carruth | 18eadd92 | 2014-04-18 10:50:32 +0000 | [diff] [blame] | 495 | } |
| 496 | |
Chandler Carruth | cace662 | 2014-04-23 10:31:17 +0000 | [diff] [blame] | 497 | if (N->LowLink == N->DFSNumber) |
| 498 | // Form the new SCC out of the top of the DFS stack. |
Chandler Carruth | 2455393 | 2014-04-24 11:05:20 +0000 | [diff] [blame] | 499 | return formSCC(N, PendingSCCStack); |
Chandler Carruth | 18eadd92 | 2014-04-18 10:50:32 +0000 | [diff] [blame] | 500 | |
Chandler Carruth | 2455393 | 2014-04-24 11:05:20 +0000 | [diff] [blame] | 501 | // At this point we know that N cannot ever be an SCC root. Its low-link |
| 502 | // is not its dfs-number, and we've processed all of its children. It is |
| 503 | // just sitting here waiting until some node further down the stack gets |
| 504 | // low-link == dfs-number and pops it off as well. Move it to the pending |
| 505 | // stack which is pulled into the next SCC to be formed. |
| 506 | PendingSCCStack.push_back(N); |
Chandler Carruth | 5e2d70b | 2014-04-26 09:28:00 +0000 | [diff] [blame] | 507 | |
| 508 | assert(!DFSStack.empty() && "We never found a viable root!"); |
| 509 | N = DFSStack.back().first; |
| 510 | I = DFSStack.back().second; |
| 511 | DFSStack.pop_back(); |
Chandler Carruth | 91dcf0f | 2014-04-24 21:19:30 +0000 | [diff] [blame] | 512 | } |
Chandler Carruth | 18eadd92 | 2014-04-18 10:50:32 +0000 | [diff] [blame] | 513 | } |
| 514 | |
Chandler Carruth | bf71a34 | 2014-02-06 04:37:03 +0000 | [diff] [blame] | 515 | char LazyCallGraphAnalysis::PassID; |
| 516 | |
| 517 | LazyCallGraphPrinterPass::LazyCallGraphPrinterPass(raw_ostream &OS) : OS(OS) {} |
| 518 | |
| 519 | static void printNodes(raw_ostream &OS, LazyCallGraph::Node &N, |
| 520 | SmallPtrSetImpl<LazyCallGraph::Node *> &Printed) { |
| 521 | // Recurse depth first through the nodes. |
Chandler Carruth | bd5d308 | 2014-04-23 23:34:48 +0000 | [diff] [blame] | 522 | for (LazyCallGraph::Node &ChildN : N) |
| 523 | if (Printed.insert(&ChildN)) |
| 524 | printNodes(OS, ChildN, Printed); |
Chandler Carruth | bf71a34 | 2014-02-06 04:37:03 +0000 | [diff] [blame] | 525 | |
| 526 | OS << " Call edges in function: " << N.getFunction().getName() << "\n"; |
| 527 | for (LazyCallGraph::iterator I = N.begin(), E = N.end(); I != E; ++I) |
| 528 | OS << " -> " << I->getFunction().getName() << "\n"; |
| 529 | |
| 530 | OS << "\n"; |
| 531 | } |
| 532 | |
Chandler Carruth | 18eadd92 | 2014-04-18 10:50:32 +0000 | [diff] [blame] | 533 | static void printSCC(raw_ostream &OS, LazyCallGraph::SCC &SCC) { |
| 534 | ptrdiff_t SCCSize = std::distance(SCC.begin(), SCC.end()); |
| 535 | OS << " SCC with " << SCCSize << " functions:\n"; |
| 536 | |
| 537 | for (LazyCallGraph::Node *N : SCC) |
| 538 | OS << " " << N->getFunction().getName() << "\n"; |
| 539 | |
| 540 | OS << "\n"; |
| 541 | } |
| 542 | |
Chandler Carruth | e9b5061 | 2014-03-10 02:14:14 +0000 | [diff] [blame] | 543 | PreservedAnalyses LazyCallGraphPrinterPass::run(Module *M, |
| 544 | ModuleAnalysisManager *AM) { |
Chandler Carruth | bf71a34 | 2014-02-06 04:37:03 +0000 | [diff] [blame] | 545 | LazyCallGraph &G = AM->getResult<LazyCallGraphAnalysis>(M); |
| 546 | |
Chandler Carruth | e9b5061 | 2014-03-10 02:14:14 +0000 | [diff] [blame] | 547 | OS << "Printing the call graph for module: " << M->getModuleIdentifier() |
| 548 | << "\n\n"; |
Chandler Carruth | bf71a34 | 2014-02-06 04:37:03 +0000 | [diff] [blame] | 549 | |
| 550 | SmallPtrSet<LazyCallGraph::Node *, 16> Printed; |
Chandler Carruth | bd5d308 | 2014-04-23 23:34:48 +0000 | [diff] [blame] | 551 | for (LazyCallGraph::Node &N : G) |
| 552 | if (Printed.insert(&N)) |
| 553 | printNodes(OS, N, Printed); |
Chandler Carruth | bf71a34 | 2014-02-06 04:37:03 +0000 | [diff] [blame] | 554 | |
Chandler Carruth | 6a4fee8 | 2014-04-23 23:51:07 +0000 | [diff] [blame] | 555 | for (LazyCallGraph::SCC &SCC : G.postorder_sccs()) |
| 556 | printSCC(OS, SCC); |
Chandler Carruth | 18eadd92 | 2014-04-18 10:50:32 +0000 | [diff] [blame] | 557 | |
Chandler Carruth | bf71a34 | 2014-02-06 04:37:03 +0000 | [diff] [blame] | 558 | return PreservedAnalyses::all(); |
Chandler Carruth | 18eadd92 | 2014-04-18 10:50:32 +0000 | [diff] [blame] | 559 | |
Chandler Carruth | bf71a34 | 2014-02-06 04:37:03 +0000 | [diff] [blame] | 560 | } |