blob: 871787154b41b11eb7cb3202ffe97c3e7771b669 [file] [log] [blame]
Chandler Carruthbf71a342014-02-06 04:37:03 +00001//===- 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 Carruth18eadd922014-04-18 10:50:32 +000011#include "llvm/ADT/STLExtras.h"
Chandler Carruth219b89b2014-03-04 11:01:28 +000012#include "llvm/IR/CallSite.h"
Chandler Carruth7da14f12014-03-06 03:23:41 +000013#include "llvm/IR/InstVisitor.h"
Chandler Carruthbf71a342014-02-06 04:37:03 +000014#include "llvm/IR/Instructions.h"
15#include "llvm/IR/PassManager.h"
Chandler Carruth99b756d2014-04-21 05:04:24 +000016#include "llvm/Support/Debug.h"
Chandler Carruthbf71a342014-02-06 04:37:03 +000017#include "llvm/Support/raw_ostream.h"
Chandler Carruthbf71a342014-02-06 04:37:03 +000018
19using namespace llvm;
20
Chandler Carruthf1221bd2014-04-22 02:48:03 +000021#define DEBUG_TYPE "lcg"
22
Chandler Carruthbf71a342014-02-06 04:37:03 +000023static void findCallees(
24 SmallVectorImpl<Constant *> &Worklist, SmallPtrSetImpl<Constant *> &Visited,
Chandler Carruthe9b50612014-03-10 02:14:14 +000025 SmallVectorImpl<PointerUnion<Function *, LazyCallGraph::Node *>> &Callees,
Chandler Carruth0b623ba2014-04-23 04:00:17 +000026 DenseMap<Function *, size_t> &CalleeIndexMap) {
Chandler Carruthbf71a342014-02-06 04:37:03 +000027 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 Carruth0b623ba2014-04-23 04:00:17 +000041 if (!F->isDeclaration() &&
42 CalleeIndexMap.insert(std::make_pair(F, Callees.size())).second) {
Chandler Carruth99b756d2014-04-21 05:04:24 +000043 DEBUG(dbgs() << " Added callable function: " << F->getName()
44 << "\n");
Chandler Carruthe9b50612014-03-10 02:14:14 +000045 Callees.push_back(F);
Chandler Carruth99b756d2014-04-21 05:04:24 +000046 }
Chandler Carruthbf71a342014-02-06 04:37:03 +000047 continue;
48 }
49
Chandler Carruth1583e992014-03-03 10:42:58 +000050 for (Value *Op : C->operand_values())
51 if (Visited.insert(cast<Constant>(Op)))
52 Worklist.push_back(cast<Constant>(Op));
Chandler Carruthbf71a342014-02-06 04:37:03 +000053 }
54}
55
Chandler Carruth18eadd922014-04-18 10:50:32 +000056LazyCallGraph::Node::Node(LazyCallGraph &G, Function &F)
57 : G(&G), F(F), DFSNumber(0), LowLink(0) {
Chandler Carruth99b756d2014-04-21 05:04:24 +000058 DEBUG(dbgs() << " Adding functions called by '" << F.getName()
59 << "' to the graph.\n");
60
Chandler Carruthbf71a342014-02-06 04:37:03 +000061 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 Carruthb9e2f8c2014-03-09 12:20:34 +000065 for (BasicBlock &BB : F)
66 for (Instruction &I : BB)
67 for (Value *Op : I.operand_values())
Chandler Carruth1583e992014-03-03 10:42:58 +000068 if (Constant *C = dyn_cast<Constant>(Op))
Chandler Carruthbf71a342014-02-06 04:37:03 +000069 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 Carruth0b623ba2014-04-23 04:00:17 +000075 findCallees(Worklist, Visited, Callees, CalleeIndexMap);
Chandler Carruthbf71a342014-02-06 04:37:03 +000076}
77
Chandler Carruth2174f442014-04-18 20:44:16 +000078LazyCallGraph::LazyCallGraph(Module &M) : NextDFSNumber(0) {
Chandler Carruth99b756d2014-04-21 05:04:24 +000079 DEBUG(dbgs() << "Building CG for module: " << M.getModuleIdentifier()
80 << "\n");
Chandler Carruthb9e2f8c2014-03-09 12:20:34 +000081 for (Function &F : M)
82 if (!F.isDeclaration() && !F.hasLocalLinkage())
Chandler Carruth0b623ba2014-04-23 04:00:17 +000083 if (EntryIndexMap.insert(std::make_pair(&F, EntryNodes.size())).second) {
Chandler Carruth99b756d2014-04-21 05:04:24 +000084 DEBUG(dbgs() << " Adding '" << F.getName()
85 << "' to entry set of the graph.\n");
Chandler Carruthb9e2f8c2014-03-09 12:20:34 +000086 EntryNodes.push_back(&F);
Chandler Carruth99b756d2014-04-21 05:04:24 +000087 }
Chandler Carruthbf71a342014-02-06 04:37:03 +000088
89 // Now add entry nodes for functions reachable via initializers to globals.
90 SmallVector<Constant *, 16> Worklist;
91 SmallPtrSet<Constant *, 16> Visited;
Chandler Carruthb9e2f8c2014-03-09 12:20:34 +000092 for (GlobalVariable &GV : M.globals())
93 if (GV.hasInitializer())
94 if (Visited.insert(GV.getInitializer()))
95 Worklist.push_back(GV.getInitializer());
Chandler Carruthbf71a342014-02-06 04:37:03 +000096
Chandler Carruth99b756d2014-04-21 05:04:24 +000097 DEBUG(dbgs() << " Adding functions referenced by global initializers to the "
98 "entry set.\n");
Chandler Carruth0b623ba2014-04-23 04:00:17 +000099 findCallees(Worklist, Visited, EntryNodes, EntryIndexMap);
Chandler Carruth18eadd922014-04-18 10:50:32 +0000100
101 for (auto &Entry : EntryNodes)
102 if (Function *F = Entry.dyn_cast<Function *>())
103 SCCEntryNodes.insert(F);
104 else
105 SCCEntryNodes.insert(&Entry.get<Node *>()->getFunction());
Chandler Carruthbf71a342014-02-06 04:37:03 +0000106}
107
Chandler Carruthbf71a342014-02-06 04:37:03 +0000108LazyCallGraph::LazyCallGraph(LazyCallGraph &&G)
Chandler Carruth2174f442014-04-18 20:44:16 +0000109 : BPA(std::move(G.BPA)), NodeMap(std::move(G.NodeMap)),
110 EntryNodes(std::move(G.EntryNodes)),
Chandler Carruth0b623ba2014-04-23 04:00:17 +0000111 EntryIndexMap(std::move(G.EntryIndexMap)), SCCBPA(std::move(G.SCCBPA)),
Chandler Carruth18eadd922014-04-18 10:50:32 +0000112 SCCMap(std::move(G.SCCMap)), LeafSCCs(std::move(G.LeafSCCs)),
113 DFSStack(std::move(G.DFSStack)),
Chandler Carruth2174f442014-04-18 20:44:16 +0000114 SCCEntryNodes(std::move(G.SCCEntryNodes)),
115 NextDFSNumber(G.NextDFSNumber) {
Chandler Carruthd8d865e2014-04-18 11:02:33 +0000116 updateGraphPtrs();
117}
118
119LazyCallGraph &LazyCallGraph::operator=(LazyCallGraph &&G) {
120 BPA = std::move(G.BPA);
Chandler Carruth2174f442014-04-18 20:44:16 +0000121 NodeMap = std::move(G.NodeMap);
Chandler Carruthd8d865e2014-04-18 11:02:33 +0000122 EntryNodes = std::move(G.EntryNodes);
Chandler Carruth0b623ba2014-04-23 04:00:17 +0000123 EntryIndexMap = std::move(G.EntryIndexMap);
Chandler Carruthd8d865e2014-04-18 11:02:33 +0000124 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 Carruth2174f442014-04-18 20:44:16 +0000129 NextDFSNumber = G.NextDFSNumber;
Chandler Carruthd8d865e2014-04-18 11:02:33 +0000130 updateGraphPtrs();
131 return *this;
132}
133
Chandler Carruth9302fbf2014-04-23 11:03:03 +0000134void LazyCallGraph::SCC::removeEdge(LazyCallGraph &G, Function &Caller,
135 Function &Callee, SCC &CalleeC) {
136 assert(std::find(G.LeafSCCs.begin(), G.LeafSCCs.end(), this) ==
137 G.LeafSCCs.end() &&
138 "Cannot have a leaf SCC caller with a different SCC callee.");
139
140 bool HasOtherCallToCalleeC = false;
141 bool HasOtherCallOutsideSCC = false;
142 for (Node *N : *this) {
Chandler Carruthbd5d3082014-04-23 23:34:48 +0000143 for (Node &Callee : *N) {
144 SCC &OtherCalleeC = *G.SCCMap.lookup(&Callee);
145 if (&OtherCalleeC == &CalleeC) {
Chandler Carruth9302fbf2014-04-23 11:03:03 +0000146 HasOtherCallToCalleeC = true;
147 break;
148 }
Chandler Carruthbd5d3082014-04-23 23:34:48 +0000149 if (&OtherCalleeC != this)
Chandler Carruth9302fbf2014-04-23 11:03:03 +0000150 HasOtherCallOutsideSCC = true;
151 }
152 if (HasOtherCallToCalleeC)
153 break;
154 }
155 // Because the SCCs form a DAG, deleting such an edge cannot change the set
156 // of SCCs in the graph. However, it may cut an edge of the SCC DAG, making
157 // the caller no longer a parent of the callee. Walk the other call edges
158 // in the caller to tell.
159 if (!HasOtherCallToCalleeC) {
Chandler Carruth493e0a62014-04-24 09:22:31 +0000160 bool Removed = CalleeC.ParentSCCs.erase(this);
Chandler Carruth9302fbf2014-04-23 11:03:03 +0000161 (void)Removed;
162 assert(Removed &&
163 "Did not find the caller SCC in the callee SCC's parent list!");
164
165 // It may orphan an SCC if it is the last edge reaching it, but that does
166 // not violate any invariants of the graph.
167 if (CalleeC.ParentSCCs.empty())
168 DEBUG(dbgs() << "LCG: Update removing " << Caller.getName() << " -> "
169 << Callee.getName() << " edge orphaned the callee's SCC!\n");
170 }
171
172 // It may make the Caller SCC a leaf SCC.
173 if (!HasOtherCallOutsideSCC)
174 G.LeafSCCs.push_back(this);
175}
176
177SmallVector<LazyCallGraph::SCC *, 1>
178LazyCallGraph::SCC::removeInternalEdge(LazyCallGraph &G, Node &Caller,
179 Node &Callee) {
180 // We return a list of the resulting SCCs, where 'this' is always the first
181 // element.
182 SmallVector<SCC *, 1> ResultSCCs;
183 ResultSCCs.push_back(this);
184
185 // We're going to do a full mini-Tarjan's walk using a local stack here.
Chandler Carruth09751bf2014-04-24 09:59:59 +0000186 int NextDFSNumber;
Chandler Carruth9302fbf2014-04-23 11:03:03 +0000187 SmallVector<std::pair<Node *, Node::iterator>, 4> DFSStack;
Chandler Carruth24553932014-04-24 11:05:20 +0000188 SmallVector<Node *, 4> PendingSCCStack;
Chandler Carruth9302fbf2014-04-23 11:03:03 +0000189
190 // The worklist is every node in the original SCC. FIXME: switch the SCC to
191 // use a SmallSetVector and swap here.
192 SmallSetVector<Node *, 1> Worklist;
193 for (Node *N : Nodes) {
194 // Clear these to 0 while we re-run Tarjan's over the SCC.
195 N->DFSNumber = 0;
196 N->LowLink = 0;
197 Worklist.insert(N);
198 }
199
200 // The callee can already reach every node in this SCC (by definition). It is
201 // the only node we know will stay inside this SCC. Everything which
202 // transitively reaches Callee will also remain in the SCC. To model this we
203 // incrementally add any chain of nodes which reaches something in the new
204 // node set to the new node set. This short circuits one side of the Tarjan's
205 // walk.
206 SmallSetVector<Node *, 1> NewNodes;
207 NewNodes.insert(&Callee);
208
209 for (;;) {
210 if (DFSStack.empty()) {
211 if (Worklist.empty())
212 break;
213 Node *N = Worklist.pop_back_val();
Chandler Carruth09751bf2014-04-24 09:59:59 +0000214 N->LowLink = N->DFSNumber = 1;
215 NextDFSNumber = 2;
Chandler Carruth9302fbf2014-04-23 11:03:03 +0000216 DFSStack.push_back(std::make_pair(N, N->begin()));
Chandler Carruth24553932014-04-24 11:05:20 +0000217 assert(PendingSCCStack.empty() && "Cannot start a fresh DFS walk with "
218 "pending nodes from a prior walk.");
Chandler Carruth9302fbf2014-04-23 11:03:03 +0000219 }
220
Chandler Carruth24553932014-04-24 11:05:20 +0000221 Node *N = DFSStack.back().first;
Chandler Carruth09751bf2014-04-24 09:59:59 +0000222 assert(N->DFSNumber != 0 && "We should always assign a DFS number "
223 "before placing a node onto the stack.");
Chandler Carruth9302fbf2014-04-23 11:03:03 +0000224
Chandler Carruth6b88e3a2014-04-25 06:45:06 +0000225 // We simulate recursion by popping out of the nested loop and continuing.
226 bool Recurse = false;
227 for (auto I = DFSStack.back().second, E = N->end(); I != E; ++I) {
228 Node &ChildN = *I;
229 // If this child isn't currently in this SCC, no need to process it.
230 // However, we do need to remove this SCC from its SCC's parent set.
231 SCC &ChildSCC = *G.SCCMap.lookup(&ChildN);
232 if (&ChildSCC != this) {
233 ChildSCC.ParentSCCs.erase(this);
234 continue;
Chandler Carruth9302fbf2014-04-23 11:03:03 +0000235 }
Chandler Carruth9302fbf2014-04-23 11:03:03 +0000236
Chandler Carruth6b88e3a2014-04-25 06:45:06 +0000237 // Check if we have reached a node in the new (known connected) set. If
238 // so, the entire stack is necessarily in that set and we can re-start.
239 if (NewNodes.count(&ChildN)) {
240 while (!PendingSCCStack.empty())
241 NewNodes.insert(PendingSCCStack.pop_back_val());
242 while (!DFSStack.empty())
243 NewNodes.insert(DFSStack.pop_back_val().first);
244 Recurse = true;
Chandler Carruth24553932014-04-24 11:05:20 +0000245 break;
246 }
Chandler Carruth9302fbf2014-04-23 11:03:03 +0000247
Chandler Carruth6b88e3a2014-04-25 06:45:06 +0000248 if (ChildN.DFSNumber == 0) {
249 // Mark that we should start at this child when next this node is the
250 // top of the stack. We don't start at the next child to ensure this
251 // child's lowlink is reflected.
252 DFSStack.back().second = I;
Chandler Carruth24553932014-04-24 11:05:20 +0000253
Chandler Carruth6b88e3a2014-04-25 06:45:06 +0000254 // Recurse onto this node via a tail call.
255 ChildN.LowLink = ChildN.DFSNumber = NextDFSNumber++;
256 Worklist.remove(&ChildN);
257 DFSStack.push_back(std::make_pair(&ChildN, ChildN.begin()));
258 Recurse = true;
259 break;
260 }
Chandler Carruth24553932014-04-24 11:05:20 +0000261
Chandler Carruth6b88e3a2014-04-25 06:45:06 +0000262 // Track the lowest link of the childen, if any are still in the stack.
263 // Any child not on the stack will have a LowLink of -1.
264 assert(ChildN.LowLink != 0 &&
265 "Low-link must not be zero with a non-zero DFS number.");
266 if (ChildN.LowLink >= 0 && ChildN.LowLink < N->LowLink)
267 N->LowLink = ChildN.LowLink;
268 }
269 if (Recurse)
270 continue;
271
272 // No more children to process, pop it off the core DFS stack.
273 DFSStack.pop_back();
274
275 if (N->LowLink == N->DFSNumber) {
276 ResultSCCs.push_back(G.formSCC(N, PendingSCCStack));
277 continue;
278 }
279
280 assert(!DFSStack.empty() && "We shouldn't have an empty stack!");
281
282 // At this point we know that N cannot ever be an SCC root. Its low-link
283 // is not its dfs-number, and we've processed all of its children. It is
284 // just sitting here waiting until some node further down the stack gets
285 // low-link == dfs-number and pops it off as well. Move it to the pending
286 // stack which is pulled into the next SCC to be formed.
287 PendingSCCStack.push_back(N);
Chandler Carruth9302fbf2014-04-23 11:03:03 +0000288 }
289
290 // Replace this SCC with the NewNodes we collected above.
291 // FIXME: Simplify this when the SCC's datastructure is just a list.
292 Nodes.clear();
Chandler Carruth9302fbf2014-04-23 11:03:03 +0000293
294 // Now we need to reconnect the current SCC to the graph.
295 bool IsLeafSCC = true;
296 for (Node *N : NewNodes) {
297 N->DFSNumber = -1;
298 N->LowLink = -1;
299 Nodes.push_back(N);
Chandler Carruthbd5d3082014-04-23 23:34:48 +0000300 for (Node &ChildN : *N) {
301 if (NewNodes.count(&ChildN))
Chandler Carruth9302fbf2014-04-23 11:03:03 +0000302 continue;
Chandler Carruthbd5d3082014-04-23 23:34:48 +0000303 SCC &ChildSCC = *G.SCCMap.lookup(&ChildN);
304 ChildSCC.ParentSCCs.insert(this);
Chandler Carruth9302fbf2014-04-23 11:03:03 +0000305 IsLeafSCC = false;
306 }
307 }
308#ifndef NDEBUG
309 if (ResultSCCs.size() > 1)
310 assert(!IsLeafSCC && "This SCC cannot be a leaf as we have split out new "
311 "SCCs by removing this edge.");
312 if (!std::any_of(G.LeafSCCs.begin(), G.LeafSCCs.end(),
313 [&](SCC *C) { return C == this; }))
314 assert(!IsLeafSCC && "This SCC cannot be a leaf as it already had child "
315 "SCCs before we removed this edge.");
316#endif
317 // If this SCC stopped being a leaf through this edge removal, remove it from
318 // the leaf SCC list.
319 if (!IsLeafSCC && ResultSCCs.size() > 1)
320 G.LeafSCCs.erase(std::remove(G.LeafSCCs.begin(), G.LeafSCCs.end(), this),
321 G.LeafSCCs.end());
322
323 // Return the new list of SCCs.
324 return ResultSCCs;
325}
326
327void LazyCallGraph::removeEdge(Node &CallerN, Function &Callee) {
328 auto IndexMapI = CallerN.CalleeIndexMap.find(&Callee);
329 assert(IndexMapI != CallerN.CalleeIndexMap.end() &&
330 "Callee not in the callee set for the caller?");
331
332 Node *CalleeN = CallerN.Callees[IndexMapI->second].dyn_cast<Node *>();
333 CallerN.Callees.erase(CallerN.Callees.begin() + IndexMapI->second);
334 CallerN.CalleeIndexMap.erase(IndexMapI);
335
Chandler Carrutha10e2402014-04-23 23:12:06 +0000336 SCC *CallerC = SCCMap.lookup(&CallerN);
Chandler Carruth9302fbf2014-04-23 11:03:03 +0000337 if (!CallerC) {
338 // We can only remove edges when the edge isn't actively participating in
339 // a DFS walk. Either it must have been popped into an SCC, or it must not
340 // yet have been reached by the DFS walk. Assert the latter here.
341 assert(std::all_of(DFSStack.begin(), DFSStack.end(),
342 [&](const std::pair<Node *, iterator> &StackEntry) {
343 return StackEntry.first != &CallerN;
344 }) &&
345 "Found the caller on the DFSStack!");
346 return;
347 }
348
349 assert(CalleeN && "If the caller is in an SCC, we have to have explored all "
350 "its transitively called functions.");
351
Chandler Carrutha10e2402014-04-23 23:12:06 +0000352 SCC *CalleeC = SCCMap.lookup(CalleeN);
Chandler Carruth9302fbf2014-04-23 11:03:03 +0000353 assert(CalleeC &&
354 "The caller has an SCC, and thus by necessity so does the callee.");
355
356 // The easy case is when they are different SCCs.
357 if (CallerC != CalleeC) {
358 CallerC->removeEdge(*this, CallerN.getFunction(), Callee, *CalleeC);
359 return;
360 }
361
362 // The hard case is when we remove an edge within a SCC. This may cause new
363 // SCCs to need to be added to the graph.
364 CallerC->removeInternalEdge(*this, CallerN, *CalleeN);
365}
366
Chandler Carruth2a898e02014-04-23 23:20:36 +0000367LazyCallGraph::Node &LazyCallGraph::insertInto(Function &F, Node *&MappedN) {
368 return *new (MappedN = BPA.Allocate()) Node(*this, F);
Chandler Carruthd8d865e2014-04-18 11:02:33 +0000369}
370
371void LazyCallGraph::updateGraphPtrs() {
Chandler Carruthb60cb312014-04-17 07:25:59 +0000372 // Process all nodes updating the graph pointers.
373 SmallVector<Node *, 16> Worklist;
Chandler Carruthb9e2f8c2014-03-09 12:20:34 +0000374 for (auto &Entry : EntryNodes)
375 if (Node *EntryN = Entry.dyn_cast<Node *>())
Chandler Carruthb60cb312014-04-17 07:25:59 +0000376 Worklist.push_back(EntryN);
377
378 while (!Worklist.empty()) {
379 Node *N = Worklist.pop_back_val();
380 N->G = this;
381 for (auto &Callee : N->Callees)
382 if (Node *CalleeN = Callee.dyn_cast<Node *>())
383 Worklist.push_back(CalleeN);
384 }
Chandler Carruthbf71a342014-02-06 04:37:03 +0000385}
Chandler Carruthbf71a342014-02-06 04:37:03 +0000386
Chandler Carruth24553932014-04-24 11:05:20 +0000387LazyCallGraph::SCC *LazyCallGraph::formSCC(Node *RootN,
388 SmallVectorImpl<Node *> &NodeStack) {
Chandler Carruth3f9869a2014-04-23 06:09:03 +0000389 // The tail of the stack is the new SCC. Allocate the SCC and pop the stack
390 // into it.
391 SCC *NewSCC = new (SCCBPA.Allocate()) SCC();
392
Chandler Carruth24553932014-04-24 11:05:20 +0000393 SCCMap[RootN] = NewSCC;
394 NewSCC->Nodes.push_back(RootN);
395
396 while (!NodeStack.empty() && NodeStack.back()->DFSNumber > RootN->DFSNumber) {
397 Node *SCCN = NodeStack.pop_back_val();
398 assert(SCCN->LowLink >= RootN->LowLink &&
Chandler Carruthcace6622014-04-23 10:31:17 +0000399 "We cannot have a low link in an SCC lower than its root on the "
400 "stack!");
Chandler Carruth24553932014-04-24 11:05:20 +0000401 SCCN->DFSNumber = SCCN->LowLink = -1;
Chandler Carruthcace6622014-04-23 10:31:17 +0000402
Chandler Carrutha10e2402014-04-23 23:12:06 +0000403 SCCMap[SCCN] = NewSCC;
Chandler Carruth3f9869a2014-04-23 06:09:03 +0000404 NewSCC->Nodes.push_back(SCCN);
Chandler Carruthcace6622014-04-23 10:31:17 +0000405 }
Chandler Carruth24553932014-04-24 11:05:20 +0000406 RootN->DFSNumber = RootN->LowLink = -1;
Chandler Carruth3f9869a2014-04-23 06:09:03 +0000407
408 // A final pass over all edges in the SCC (this remains linear as we only
409 // do this once when we build the SCC) to connect it to the parent sets of
410 // its children.
411 bool IsLeafSCC = true;
412 for (Node *SCCN : NewSCC->Nodes)
Chandler Carruthbd5d3082014-04-23 23:34:48 +0000413 for (Node &SCCChildN : *SCCN) {
Chandler Carruthd52f8e02014-04-24 08:55:36 +0000414 if (SCCMap.lookup(&SCCChildN) == NewSCC)
Chandler Carruth3f9869a2014-04-23 06:09:03 +0000415 continue;
Chandler Carruthbd5d3082014-04-23 23:34:48 +0000416 SCC &ChildSCC = *SCCMap.lookup(&SCCChildN);
417 ChildSCC.ParentSCCs.insert(NewSCC);
Chandler Carruth3f9869a2014-04-23 06:09:03 +0000418 IsLeafSCC = false;
419 }
420
421 // For the SCCs where we fine no child SCCs, add them to the leaf list.
422 if (IsLeafSCC)
423 LeafSCCs.push_back(NewSCC);
424
425 return NewSCC;
426}
427
Chandler Carruth18eadd922014-04-18 10:50:32 +0000428LazyCallGraph::SCC *LazyCallGraph::getNextSCCInPostOrder() {
429 // When the stack is empty, there are no more SCCs to walk in this graph.
430 if (DFSStack.empty()) {
431 // If we've handled all candidate entry nodes to the SCC forest, we're done.
432 if (SCCEntryNodes.empty())
433 return nullptr;
434
Chandler Carruth2a898e02014-04-23 23:20:36 +0000435 Node &N = get(*SCCEntryNodes.pop_back_val());
Chandler Carruth09751bf2014-04-24 09:59:59 +0000436 N.LowLink = N.DFSNumber = 1;
437 NextDFSNumber = 2;
Chandler Carruth2a898e02014-04-23 23:20:36 +0000438 DFSStack.push_back(std::make_pair(&N, N.begin()));
Chandler Carruth18eadd922014-04-18 10:50:32 +0000439 }
440
Chandler Carruth91dcf0f2014-04-24 21:19:30 +0000441 for (;;) {
Chandler Carruth24553932014-04-24 11:05:20 +0000442 Node *N = DFSStack.back().first;
443 assert(N->DFSNumber != 0 && "We should always assign a DFS number "
444 "before placing a node onto the stack.");
445
Chandler Carruth774c9322014-04-25 06:38:58 +0000446 bool Recurse = false; // Used to simulate recursing onto a child.
Chandler Carruth24553932014-04-24 11:05:20 +0000447 for (auto I = DFSStack.back().second, E = N->end(); I != E; ++I) {
Chandler Carruthbd5d3082014-04-23 23:34:48 +0000448 Node &ChildN = *I;
449 if (ChildN.DFSNumber == 0) {
Chandler Carruthcace6622014-04-23 10:31:17 +0000450 // Mark that we should start at this child when next this node is the
451 // top of the stack. We don't start at the next child to ensure this
452 // child's lowlink is reflected.
Chandler Carruth24553932014-04-24 11:05:20 +0000453 DFSStack.back().second = I;
Chandler Carruth18eadd922014-04-18 10:50:32 +0000454
Chandler Carruthcace6622014-04-23 10:31:17 +0000455 // Recurse onto this node via a tail call.
Chandler Carruth09751bf2014-04-24 09:59:59 +0000456 assert(!SCCMap.count(&ChildN) &&
457 "Found a node with 0 DFS number but already in an SCC!");
458 ChildN.LowLink = ChildN.DFSNumber = NextDFSNumber++;
459 SCCEntryNodes.remove(&ChildN.getFunction());
Chandler Carruthbd5d3082014-04-23 23:34:48 +0000460 DFSStack.push_back(std::make_pair(&ChildN, ChildN.begin()));
Chandler Carruth774c9322014-04-25 06:38:58 +0000461 Recurse = true;
462 break;
Chandler Carruthcace6622014-04-23 10:31:17 +0000463 }
464
465 // Track the lowest link of the childen, if any are still in the stack.
Chandler Carruthbd5d3082014-04-23 23:34:48 +0000466 assert(ChildN.LowLink != 0 &&
Chandler Carruthb4a04da2014-04-23 22:28:13 +0000467 "Low-link must not be zero with a non-zero DFS number.");
Chandler Carruthbd5d3082014-04-23 23:34:48 +0000468 if (ChildN.LowLink >= 0 && ChildN.LowLink < N->LowLink)
469 N->LowLink = ChildN.LowLink;
Chandler Carruth18eadd922014-04-18 10:50:32 +0000470 }
Chandler Carruth774c9322014-04-25 06:38:58 +0000471 if (Recurse)
472 // Continue the outer loop when we exit the inner loop in order to
473 // recurse onto a child.
474 continue;
475
Chandler Carruth24553932014-04-24 11:05:20 +0000476 // No more children to process here, pop the node off the stack.
477 DFSStack.pop_back();
Chandler Carruth18eadd922014-04-18 10:50:32 +0000478
Chandler Carruthcace6622014-04-23 10:31:17 +0000479 if (N->LowLink == N->DFSNumber)
480 // Form the new SCC out of the top of the DFS stack.
Chandler Carruth24553932014-04-24 11:05:20 +0000481 return formSCC(N, PendingSCCStack);
Chandler Carruth18eadd922014-04-18 10:50:32 +0000482
Chandler Carruth91dcf0f2014-04-24 21:19:30 +0000483 assert(!DFSStack.empty() && "We never found a viable root!");
484
Chandler Carruth24553932014-04-24 11:05:20 +0000485 // At this point we know that N cannot ever be an SCC root. Its low-link
486 // is not its dfs-number, and we've processed all of its children. It is
487 // just sitting here waiting until some node further down the stack gets
488 // low-link == dfs-number and pops it off as well. Move it to the pending
489 // stack which is pulled into the next SCC to be formed.
490 PendingSCCStack.push_back(N);
Chandler Carruth91dcf0f2014-04-24 21:19:30 +0000491 }
Chandler Carruth18eadd922014-04-18 10:50:32 +0000492}
493
Chandler Carruthbf71a342014-02-06 04:37:03 +0000494char LazyCallGraphAnalysis::PassID;
495
496LazyCallGraphPrinterPass::LazyCallGraphPrinterPass(raw_ostream &OS) : OS(OS) {}
497
498static void printNodes(raw_ostream &OS, LazyCallGraph::Node &N,
499 SmallPtrSetImpl<LazyCallGraph::Node *> &Printed) {
500 // Recurse depth first through the nodes.
Chandler Carruthbd5d3082014-04-23 23:34:48 +0000501 for (LazyCallGraph::Node &ChildN : N)
502 if (Printed.insert(&ChildN))
503 printNodes(OS, ChildN, Printed);
Chandler Carruthbf71a342014-02-06 04:37:03 +0000504
505 OS << " Call edges in function: " << N.getFunction().getName() << "\n";
506 for (LazyCallGraph::iterator I = N.begin(), E = N.end(); I != E; ++I)
507 OS << " -> " << I->getFunction().getName() << "\n";
508
509 OS << "\n";
510}
511
Chandler Carruth18eadd922014-04-18 10:50:32 +0000512static void printSCC(raw_ostream &OS, LazyCallGraph::SCC &SCC) {
513 ptrdiff_t SCCSize = std::distance(SCC.begin(), SCC.end());
514 OS << " SCC with " << SCCSize << " functions:\n";
515
516 for (LazyCallGraph::Node *N : SCC)
517 OS << " " << N->getFunction().getName() << "\n";
518
519 OS << "\n";
520}
521
Chandler Carruthe9b50612014-03-10 02:14:14 +0000522PreservedAnalyses LazyCallGraphPrinterPass::run(Module *M,
523 ModuleAnalysisManager *AM) {
Chandler Carruthbf71a342014-02-06 04:37:03 +0000524 LazyCallGraph &G = AM->getResult<LazyCallGraphAnalysis>(M);
525
Chandler Carruthe9b50612014-03-10 02:14:14 +0000526 OS << "Printing the call graph for module: " << M->getModuleIdentifier()
527 << "\n\n";
Chandler Carruthbf71a342014-02-06 04:37:03 +0000528
529 SmallPtrSet<LazyCallGraph::Node *, 16> Printed;
Chandler Carruthbd5d3082014-04-23 23:34:48 +0000530 for (LazyCallGraph::Node &N : G)
531 if (Printed.insert(&N))
532 printNodes(OS, N, Printed);
Chandler Carruthbf71a342014-02-06 04:37:03 +0000533
Chandler Carruth6a4fee82014-04-23 23:51:07 +0000534 for (LazyCallGraph::SCC &SCC : G.postorder_sccs())
535 printSCC(OS, SCC);
Chandler Carruth18eadd922014-04-18 10:50:32 +0000536
Chandler Carruthbf71a342014-02-06 04:37:03 +0000537 return PreservedAnalyses::all();
Chandler Carruth18eadd922014-04-18 10:50:32 +0000538
Chandler Carruthbf71a342014-02-06 04:37:03 +0000539}