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