blob: 1ac30769a520b20a3db9de979a43563d4569ac1f [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 Carruthaa839b22014-04-27 01:59:50 +000078void LazyCallGraph::Node::removeEdgeInternal(Function &Callee) {
79 auto IndexMapI = CalleeIndexMap.find(&Callee);
80 assert(IndexMapI != CalleeIndexMap.end() &&
81 "Callee not in the callee set for this caller?");
82
83 Callees.erase(Callees.begin() + IndexMapI->second);
84 CalleeIndexMap.erase(IndexMapI);
85}
86
Chandler Carruth2174f442014-04-18 20:44:16 +000087LazyCallGraph::LazyCallGraph(Module &M) : NextDFSNumber(0) {
Chandler Carruth99b756d2014-04-21 05:04:24 +000088 DEBUG(dbgs() << "Building CG for module: " << M.getModuleIdentifier()
89 << "\n");
Chandler Carruthb9e2f8c2014-03-09 12:20:34 +000090 for (Function &F : M)
91 if (!F.isDeclaration() && !F.hasLocalLinkage())
Chandler Carruth0b623ba2014-04-23 04:00:17 +000092 if (EntryIndexMap.insert(std::make_pair(&F, EntryNodes.size())).second) {
Chandler Carruth99b756d2014-04-21 05:04:24 +000093 DEBUG(dbgs() << " Adding '" << F.getName()
94 << "' to entry set of the graph.\n");
Chandler Carruthb9e2f8c2014-03-09 12:20:34 +000095 EntryNodes.push_back(&F);
Chandler Carruth99b756d2014-04-21 05:04:24 +000096 }
Chandler Carruthbf71a342014-02-06 04:37:03 +000097
98 // Now add entry nodes for functions reachable via initializers to globals.
99 SmallVector<Constant *, 16> Worklist;
100 SmallPtrSet<Constant *, 16> Visited;
Chandler Carruthb9e2f8c2014-03-09 12:20:34 +0000101 for (GlobalVariable &GV : M.globals())
102 if (GV.hasInitializer())
103 if (Visited.insert(GV.getInitializer()))
104 Worklist.push_back(GV.getInitializer());
Chandler Carruthbf71a342014-02-06 04:37:03 +0000105
Chandler Carruth99b756d2014-04-21 05:04:24 +0000106 DEBUG(dbgs() << " Adding functions referenced by global initializers to the "
107 "entry set.\n");
Chandler Carruth0b623ba2014-04-23 04:00:17 +0000108 findCallees(Worklist, Visited, EntryNodes, EntryIndexMap);
Chandler Carruth18eadd922014-04-18 10:50:32 +0000109
110 for (auto &Entry : EntryNodes)
111 if (Function *F = Entry.dyn_cast<Function *>())
Chandler Carruth90821c22014-04-26 09:45:55 +0000112 SCCEntryNodes.push_back(F);
Chandler Carruth18eadd922014-04-18 10:50:32 +0000113 else
Chandler Carruth90821c22014-04-26 09:45:55 +0000114 SCCEntryNodes.push_back(&Entry.get<Node *>()->getFunction());
Chandler Carruthbf71a342014-02-06 04:37:03 +0000115}
116
Chandler Carruthbf71a342014-02-06 04:37:03 +0000117LazyCallGraph::LazyCallGraph(LazyCallGraph &&G)
Chandler Carruth2174f442014-04-18 20:44:16 +0000118 : BPA(std::move(G.BPA)), NodeMap(std::move(G.NodeMap)),
119 EntryNodes(std::move(G.EntryNodes)),
Chandler Carruth0b623ba2014-04-23 04:00:17 +0000120 EntryIndexMap(std::move(G.EntryIndexMap)), SCCBPA(std::move(G.SCCBPA)),
Chandler Carruth18eadd922014-04-18 10:50:32 +0000121 SCCMap(std::move(G.SCCMap)), LeafSCCs(std::move(G.LeafSCCs)),
122 DFSStack(std::move(G.DFSStack)),
Chandler Carruth2174f442014-04-18 20:44:16 +0000123 SCCEntryNodes(std::move(G.SCCEntryNodes)),
124 NextDFSNumber(G.NextDFSNumber) {
Chandler Carruthd8d865e2014-04-18 11:02:33 +0000125 updateGraphPtrs();
126}
127
128LazyCallGraph &LazyCallGraph::operator=(LazyCallGraph &&G) {
129 BPA = std::move(G.BPA);
Chandler Carruth2174f442014-04-18 20:44:16 +0000130 NodeMap = std::move(G.NodeMap);
Chandler Carruthd8d865e2014-04-18 11:02:33 +0000131 EntryNodes = std::move(G.EntryNodes);
Chandler Carruth0b623ba2014-04-23 04:00:17 +0000132 EntryIndexMap = std::move(G.EntryIndexMap);
Chandler Carruthd8d865e2014-04-18 11:02:33 +0000133 SCCBPA = std::move(G.SCCBPA);
134 SCCMap = std::move(G.SCCMap);
135 LeafSCCs = std::move(G.LeafSCCs);
136 DFSStack = std::move(G.DFSStack);
137 SCCEntryNodes = std::move(G.SCCEntryNodes);
Chandler Carruth2174f442014-04-18 20:44:16 +0000138 NextDFSNumber = G.NextDFSNumber;
Chandler Carruthd8d865e2014-04-18 11:02:33 +0000139 updateGraphPtrs();
140 return *this;
141}
142
Chandler Carruthaa839b22014-04-27 01:59:50 +0000143void LazyCallGraph::SCC::insert(Node &N) {
Chandler Carruth8f92d6d2014-04-26 01:03:46 +0000144 N.DFSNumber = N.LowLink = -1;
145 Nodes.push_back(&N);
Chandler Carruthaa839b22014-04-27 01:59:50 +0000146 G->SCCMap[&N] = this;
Chandler Carruth8f92d6d2014-04-26 01:03:46 +0000147}
148
Chandler Carruthaa839b22014-04-27 01:59:50 +0000149void LazyCallGraph::SCC::removeInterSCCEdge(Node &CallerN, Node &CalleeN) {
150 // First remove it from the node.
151 CallerN.removeEdgeInternal(CalleeN.getFunction());
152
153 assert(G->SCCMap.lookup(&CallerN) == this &&
154 "The caller must be a member of this SCC.");
155
156 SCC &CalleeC = *G->SCCMap.lookup(&CalleeN);
157 assert(&CalleeC != this &&
158 "This API only supports the rmoval of inter-SCC edges.");
159
160 assert(std::find(G->LeafSCCs.begin(), G->LeafSCCs.end(), this) ==
161 G->LeafSCCs.end() &&
Chandler Carruth9302fbf2014-04-23 11:03:03 +0000162 "Cannot have a leaf SCC caller with a different SCC callee.");
163
164 bool HasOtherCallToCalleeC = false;
165 bool HasOtherCallOutsideSCC = false;
166 for (Node *N : *this) {
Chandler Carruthaa839b22014-04-27 01:59:50 +0000167 for (Node &OtherCalleeN : *N) {
168 SCC &OtherCalleeC = *G->SCCMap.lookup(&OtherCalleeN);
Chandler Carruthbd5d3082014-04-23 23:34:48 +0000169 if (&OtherCalleeC == &CalleeC) {
Chandler Carruth9302fbf2014-04-23 11:03:03 +0000170 HasOtherCallToCalleeC = true;
171 break;
172 }
Chandler Carruthbd5d3082014-04-23 23:34:48 +0000173 if (&OtherCalleeC != this)
Chandler Carruth9302fbf2014-04-23 11:03:03 +0000174 HasOtherCallOutsideSCC = true;
175 }
176 if (HasOtherCallToCalleeC)
177 break;
178 }
179 // Because the SCCs form a DAG, deleting such an edge cannot change the set
180 // of SCCs in the graph. However, it may cut an edge of the SCC DAG, making
181 // the caller no longer a parent of the callee. Walk the other call edges
182 // in the caller to tell.
183 if (!HasOtherCallToCalleeC) {
Chandler Carruth493e0a62014-04-24 09:22:31 +0000184 bool Removed = CalleeC.ParentSCCs.erase(this);
Chandler Carruth9302fbf2014-04-23 11:03:03 +0000185 (void)Removed;
186 assert(Removed &&
187 "Did not find the caller SCC in the callee SCC's parent list!");
188
189 // It may orphan an SCC if it is the last edge reaching it, but that does
190 // not violate any invariants of the graph.
191 if (CalleeC.ParentSCCs.empty())
Chandler Carruthaa839b22014-04-27 01:59:50 +0000192 DEBUG(dbgs() << "LCG: Update removing " << CallerN.getFunction().getName()
193 << " -> " << CalleeN.getFunction().getName()
194 << " edge orphaned the callee's SCC!\n");
Chandler Carruth9302fbf2014-04-23 11:03:03 +0000195 }
196
197 // It may make the Caller SCC a leaf SCC.
198 if (!HasOtherCallOutsideSCC)
Chandler Carruthaa839b22014-04-27 01:59:50 +0000199 G->LeafSCCs.push_back(this);
Chandler Carruth9302fbf2014-04-23 11:03:03 +0000200}
201
Chandler Carruthaca48d02014-04-26 09:06:53 +0000202void LazyCallGraph::SCC::internalDFS(
Chandler Carruthaca48d02014-04-26 09:06:53 +0000203 SmallVectorImpl<std::pair<Node *, Node::iterator>> &DFSStack,
204 SmallVectorImpl<Node *> &PendingSCCStack, Node *N,
205 SmallVectorImpl<SCC *> &ResultSCCs) {
206 Node::iterator I = N->begin();
207 N->LowLink = N->DFSNumber = 1;
208 int NextDFSNumber = 2;
209 for (;;) {
210 assert(N->DFSNumber != 0 && "We should always assign a DFS number "
211 "before processing a node.");
212
213 // We simulate recursion by popping out of the nested loop and continuing.
214 Node::iterator E = N->end();
215 while (I != E) {
216 Node &ChildN = *I;
Chandler Carruthaa839b22014-04-27 01:59:50 +0000217 if (SCC *ChildSCC = G->SCCMap.lookup(&ChildN)) {
Chandler Carruthaca48d02014-04-26 09:06:53 +0000218 // Check if we have reached a node in the new (known connected) set of
219 // this SCC. If so, the entire stack is necessarily in that set and we
220 // can re-start.
221 if (ChildSCC == this) {
Chandler Carruthaa839b22014-04-27 01:59:50 +0000222 insert(*N);
Chandler Carruthaca48d02014-04-26 09:06:53 +0000223 while (!PendingSCCStack.empty())
Chandler Carruthaa839b22014-04-27 01:59:50 +0000224 insert(*PendingSCCStack.pop_back_val());
Chandler Carruthaca48d02014-04-26 09:06:53 +0000225 while (!DFSStack.empty())
Chandler Carruthaa839b22014-04-27 01:59:50 +0000226 insert(*DFSStack.pop_back_val().first);
Chandler Carruthaca48d02014-04-26 09:06:53 +0000227 return;
228 }
229
230 // If this child isn't currently in this SCC, no need to process it.
231 // However, we do need to remove this SCC from its SCC's parent set.
232 ChildSCC->ParentSCCs.erase(this);
233 ++I;
234 continue;
235 }
236
237 if (ChildN.DFSNumber == 0) {
238 // Mark that we should start at this child when next this node is the
239 // top of the stack. We don't start at the next child to ensure this
240 // child's lowlink is reflected.
241 DFSStack.push_back(std::make_pair(N, I));
242
243 // Continue, resetting to the child node.
244 ChildN.LowLink = ChildN.DFSNumber = NextDFSNumber++;
245 N = &ChildN;
246 I = ChildN.begin();
247 E = ChildN.end();
248 continue;
249 }
250
251 // Track the lowest link of the childen, if any are still in the stack.
252 // Any child not on the stack will have a LowLink of -1.
253 assert(ChildN.LowLink != 0 &&
254 "Low-link must not be zero with a non-zero DFS number.");
255 if (ChildN.LowLink >= 0 && ChildN.LowLink < N->LowLink)
256 N->LowLink = ChildN.LowLink;
257 ++I;
258 }
259
260 if (N->LowLink == N->DFSNumber) {
Chandler Carruthaa839b22014-04-27 01:59:50 +0000261 ResultSCCs.push_back(G->formSCC(N, PendingSCCStack));
Chandler Carruthaca48d02014-04-26 09:06:53 +0000262 if (DFSStack.empty())
263 return;
264 } else {
265 // At this point we know that N cannot ever be an SCC root. Its low-link
266 // is not its dfs-number, and we've processed all of its children. It is
267 // just sitting here waiting until some node further down the stack gets
268 // low-link == dfs-number and pops it off as well. Move it to the pending
269 // stack which is pulled into the next SCC to be formed.
270 PendingSCCStack.push_back(N);
271
272 assert(!DFSStack.empty() && "We shouldn't have an empty stack!");
273 }
274
275 N = DFSStack.back().first;
276 I = DFSStack.back().second;
277 DFSStack.pop_back();
278 }
279}
280
Chandler Carruth9302fbf2014-04-23 11:03:03 +0000281SmallVector<LazyCallGraph::SCC *, 1>
Chandler Carruthaa839b22014-04-27 01:59:50 +0000282LazyCallGraph::SCC::removeIntraSCCEdge(Node &CallerN,
283 Node &CalleeN) {
284 // First remove it from the node.
285 CallerN.removeEdgeInternal(CalleeN.getFunction());
286
Chandler Carruth9302fbf2014-04-23 11:03:03 +0000287 // We return a list of the resulting SCCs, where 'this' is always the first
288 // element.
289 SmallVector<SCC *, 1> ResultSCCs;
290 ResultSCCs.push_back(this);
291
Chandler Carrutha7205b62014-04-26 03:36:37 +0000292 // Direct recursion doesn't impact the SCC graph at all.
Chandler Carruthaa839b22014-04-27 01:59:50 +0000293 if (&CallerN == &CalleeN)
Chandler Carrutha7205b62014-04-26 03:36:37 +0000294 return ResultSCCs;
295
Chandler Carruth770060d2014-04-25 09:08:05 +0000296 // The worklist is every node in the original SCC.
297 SmallVector<Node *, 1> Worklist;
298 Worklist.swap(Nodes);
299 for (Node *N : Worklist) {
Chandler Carruth2e6ef0e2014-04-25 09:08:10 +0000300 // The nodes formerly in this SCC are no longer in any SCC.
Chandler Carruth9302fbf2014-04-23 11:03:03 +0000301 N->DFSNumber = 0;
302 N->LowLink = 0;
Chandler Carruthaa839b22014-04-27 01:59:50 +0000303 G->SCCMap.erase(N);
Chandler Carruth9302fbf2014-04-23 11:03:03 +0000304 }
Chandler Carrutha7205b62014-04-26 03:36:37 +0000305 assert(Worklist.size() > 1 && "We have to have at least two nodes to have an "
306 "edge between them that is within the SCC.");
Chandler Carruth9302fbf2014-04-23 11:03:03 +0000307
308 // The callee can already reach every node in this SCC (by definition). It is
309 // the only node we know will stay inside this SCC. Everything which
310 // transitively reaches Callee will also remain in the SCC. To model this we
311 // incrementally add any chain of nodes which reaches something in the new
312 // node set to the new node set. This short circuits one side of the Tarjan's
313 // walk.
Chandler Carruthaa839b22014-04-27 01:59:50 +0000314 insert(CalleeN);
Chandler Carruth9302fbf2014-04-23 11:03:03 +0000315
Chandler Carruthaca48d02014-04-26 09:06:53 +0000316 // We're going to do a full mini-Tarjan's walk using a local stack here.
317 SmallVector<std::pair<Node *, Node::iterator>, 4> DFSStack;
318 SmallVector<Node *, 4> PendingSCCStack;
319 do {
320 Node *N = Worklist.pop_back_val();
321 if (N->DFSNumber == 0)
Chandler Carruthaa839b22014-04-27 01:59:50 +0000322 internalDFS(DFSStack, PendingSCCStack, N, ResultSCCs);
Chandler Carruth9302fbf2014-04-23 11:03:03 +0000323
Chandler Carruthaca48d02014-04-26 09:06:53 +0000324 assert(DFSStack.empty() && "Didn't flush the entire DFS stack!");
325 assert(PendingSCCStack.empty() && "Didn't flush all pending SCC nodes!");
326 } while (!Worklist.empty());
Chandler Carruth9302fbf2014-04-23 11:03:03 +0000327
Chandler Carruth9302fbf2014-04-23 11:03:03 +0000328 // Now we need to reconnect the current SCC to the graph.
329 bool IsLeafSCC = true;
Chandler Carruth9ba77622014-04-25 09:52:44 +0000330 for (Node *N : Nodes) {
Chandler Carruthbd5d3082014-04-23 23:34:48 +0000331 for (Node &ChildN : *N) {
Chandler Carruthaa839b22014-04-27 01:59:50 +0000332 SCC &ChildSCC = *G->SCCMap.lookup(&ChildN);
Chandler Carruth9ba77622014-04-25 09:52:44 +0000333 if (&ChildSCC == this)
334 continue;
Chandler Carruthbd5d3082014-04-23 23:34:48 +0000335 ChildSCC.ParentSCCs.insert(this);
Chandler Carruth9302fbf2014-04-23 11:03:03 +0000336 IsLeafSCC = false;
337 }
338 }
339#ifndef NDEBUG
340 if (ResultSCCs.size() > 1)
341 assert(!IsLeafSCC && "This SCC cannot be a leaf as we have split out new "
342 "SCCs by removing this edge.");
Chandler Carruthaa839b22014-04-27 01:59:50 +0000343 if (!std::any_of(G->LeafSCCs.begin(), G->LeafSCCs.end(),
Chandler Carruth9302fbf2014-04-23 11:03:03 +0000344 [&](SCC *C) { return C == this; }))
345 assert(!IsLeafSCC && "This SCC cannot be a leaf as it already had child "
346 "SCCs before we removed this edge.");
347#endif
348 // If this SCC stopped being a leaf through this edge removal, remove it from
349 // the leaf SCC list.
350 if (!IsLeafSCC && ResultSCCs.size() > 1)
Chandler Carruthaa839b22014-04-27 01:59:50 +0000351 G->LeafSCCs.erase(std::remove(G->LeafSCCs.begin(), G->LeafSCCs.end(), this),
352 G->LeafSCCs.end());
Chandler Carruth9302fbf2014-04-23 11:03:03 +0000353
354 // Return the new list of SCCs.
355 return ResultSCCs;
356}
357
358void LazyCallGraph::removeEdge(Node &CallerN, Function &Callee) {
Chandler Carruthaa839b22014-04-27 01:59:50 +0000359 assert(SCCMap.empty() && DFSStack.empty() &&
360 "This method cannot be called after SCCs have been formed!");
Chandler Carruth9302fbf2014-04-23 11:03:03 +0000361
Chandler Carruthaa839b22014-04-27 01:59:50 +0000362 return CallerN.removeEdgeInternal(Callee);
Chandler Carruth9302fbf2014-04-23 11:03:03 +0000363}
364
Chandler Carruth2a898e02014-04-23 23:20:36 +0000365LazyCallGraph::Node &LazyCallGraph::insertInto(Function &F, Node *&MappedN) {
366 return *new (MappedN = BPA.Allocate()) Node(*this, F);
Chandler Carruthd8d865e2014-04-18 11:02:33 +0000367}
368
369void LazyCallGraph::updateGraphPtrs() {
Chandler Carruthb60cb312014-04-17 07:25:59 +0000370 // Process all nodes updating the graph pointers.
Chandler Carruthaa839b22014-04-27 01:59:50 +0000371 {
372 SmallVector<Node *, 16> Worklist;
373 for (auto &Entry : EntryNodes)
374 if (Node *EntryN = Entry.dyn_cast<Node *>())
375 Worklist.push_back(EntryN);
Chandler Carruthb60cb312014-04-17 07:25:59 +0000376
Chandler Carruthaa839b22014-04-27 01:59:50 +0000377 while (!Worklist.empty()) {
378 Node *N = Worklist.pop_back_val();
379 N->G = this;
380 for (auto &Callee : N->Callees)
381 if (Node *CalleeN = Callee.dyn_cast<Node *>())
382 Worklist.push_back(CalleeN);
383 }
384 }
385
386 // Process all SCCs updating the graph pointers.
387 {
388 SmallVector<SCC *, 16> Worklist(LeafSCCs.begin(), LeafSCCs.end());
389
390 while (!Worklist.empty()) {
391 SCC *C = Worklist.pop_back_val();
392 C->G = this;
393 Worklist.insert(Worklist.end(), C->ParentSCCs.begin(),
394 C->ParentSCCs.end());
395 }
Chandler Carruthb60cb312014-04-17 07:25:59 +0000396 }
Chandler Carruthbf71a342014-02-06 04:37:03 +0000397}
Chandler Carruthbf71a342014-02-06 04:37:03 +0000398
Chandler Carruth24553932014-04-24 11:05:20 +0000399LazyCallGraph::SCC *LazyCallGraph::formSCC(Node *RootN,
400 SmallVectorImpl<Node *> &NodeStack) {
Chandler Carruth3f9869a2014-04-23 06:09:03 +0000401 // The tail of the stack is the new SCC. Allocate the SCC and pop the stack
402 // into it.
Chandler Carruthaa839b22014-04-27 01:59:50 +0000403 SCC *NewSCC = new (SCCBPA.Allocate()) SCC(*this);
Chandler Carruth3f9869a2014-04-23 06:09:03 +0000404
Chandler Carruth24553932014-04-24 11:05:20 +0000405 while (!NodeStack.empty() && NodeStack.back()->DFSNumber > RootN->DFSNumber) {
Chandler Carruth8f92d6d2014-04-26 01:03:46 +0000406 assert(NodeStack.back()->LowLink >= RootN->LowLink &&
Chandler Carruthcace6622014-04-23 10:31:17 +0000407 "We cannot have a low link in an SCC lower than its root on the "
408 "stack!");
Chandler Carruthaa839b22014-04-27 01:59:50 +0000409 NewSCC->insert(*NodeStack.pop_back_val());
Chandler Carruthcace6622014-04-23 10:31:17 +0000410 }
Chandler Carruthaa839b22014-04-27 01:59:50 +0000411 NewSCC->insert(*RootN);
Chandler Carruth3f9869a2014-04-23 06:09:03 +0000412
413 // A final pass over all edges in the SCC (this remains linear as we only
414 // do this once when we build the SCC) to connect it to the parent sets of
415 // its children.
416 bool IsLeafSCC = true;
417 for (Node *SCCN : NewSCC->Nodes)
Chandler Carruthbd5d3082014-04-23 23:34:48 +0000418 for (Node &SCCChildN : *SCCN) {
Chandler Carruthd52f8e02014-04-24 08:55:36 +0000419 if (SCCMap.lookup(&SCCChildN) == NewSCC)
Chandler Carruth3f9869a2014-04-23 06:09:03 +0000420 continue;
Chandler Carruthbd5d3082014-04-23 23:34:48 +0000421 SCC &ChildSCC = *SCCMap.lookup(&SCCChildN);
422 ChildSCC.ParentSCCs.insert(NewSCC);
Chandler Carruth3f9869a2014-04-23 06:09:03 +0000423 IsLeafSCC = false;
424 }
425
426 // For the SCCs where we fine no child SCCs, add them to the leaf list.
427 if (IsLeafSCC)
428 LeafSCCs.push_back(NewSCC);
429
430 return NewSCC;
431}
432
Chandler Carruth18eadd922014-04-18 10:50:32 +0000433LazyCallGraph::SCC *LazyCallGraph::getNextSCCInPostOrder() {
Chandler Carruth5e2d70b2014-04-26 09:28:00 +0000434 Node *N;
435 Node::iterator I;
436 if (!DFSStack.empty()) {
437 N = DFSStack.back().first;
438 I = DFSStack.back().second;
439 DFSStack.pop_back();
440 } else {
Chandler Carruth18eadd922014-04-18 10:50:32 +0000441 // If we've handled all candidate entry nodes to the SCC forest, we're done.
Chandler Carruth90821c22014-04-26 09:45:55 +0000442 do {
443 if (SCCEntryNodes.empty())
444 return nullptr;
Chandler Carruth18eadd922014-04-18 10:50:32 +0000445
Chandler Carruth90821c22014-04-26 09:45:55 +0000446 N = &get(*SCCEntryNodes.pop_back_val());
447 } while (N->DFSNumber != 0);
Chandler Carruth5e2d70b2014-04-26 09:28:00 +0000448 I = N->begin();
449 N->LowLink = N->DFSNumber = 1;
Chandler Carruth09751bf2014-04-24 09:59:59 +0000450 NextDFSNumber = 2;
Chandler Carruth18eadd922014-04-18 10:50:32 +0000451 }
452
Chandler Carruth91dcf0f2014-04-24 21:19:30 +0000453 for (;;) {
Chandler Carruth24553932014-04-24 11:05:20 +0000454 assert(N->DFSNumber != 0 && "We should always assign a DFS number "
455 "before placing a node onto the stack.");
456
Chandler Carruth5e2d70b2014-04-26 09:28:00 +0000457 Node::iterator E = N->end();
458 while (I != E) {
Chandler Carruthbd5d3082014-04-23 23:34:48 +0000459 Node &ChildN = *I;
460 if (ChildN.DFSNumber == 0) {
Chandler Carruthcace6622014-04-23 10:31:17 +0000461 // Mark that we should start at this child when next this node is the
462 // top of the stack. We don't start at the next child to ensure this
463 // child's lowlink is reflected.
Chandler Carruth5e2d70b2014-04-26 09:28:00 +0000464 DFSStack.push_back(std::make_pair(N, N->begin()));
Chandler Carruth18eadd922014-04-18 10:50:32 +0000465
Chandler Carruthcace6622014-04-23 10:31:17 +0000466 // Recurse onto this node via a tail call.
Chandler Carruth09751bf2014-04-24 09:59:59 +0000467 assert(!SCCMap.count(&ChildN) &&
468 "Found a node with 0 DFS number but already in an SCC!");
469 ChildN.LowLink = ChildN.DFSNumber = NextDFSNumber++;
Chandler Carruth5e2d70b2014-04-26 09:28:00 +0000470 N = &ChildN;
471 I = ChildN.begin();
472 E = ChildN.end();
473 continue;
Chandler Carruthcace6622014-04-23 10:31:17 +0000474 }
475
476 // Track the lowest link of the childen, if any are still in the stack.
Chandler Carruthbd5d3082014-04-23 23:34:48 +0000477 assert(ChildN.LowLink != 0 &&
Chandler Carruthb4a04da2014-04-23 22:28:13 +0000478 "Low-link must not be zero with a non-zero DFS number.");
Chandler Carruthbd5d3082014-04-23 23:34:48 +0000479 if (ChildN.LowLink >= 0 && ChildN.LowLink < N->LowLink)
480 N->LowLink = ChildN.LowLink;
Chandler Carruth5e2d70b2014-04-26 09:28:00 +0000481 ++I;
Chandler Carruth18eadd922014-04-18 10:50:32 +0000482 }
483
Chandler Carruthcace6622014-04-23 10:31:17 +0000484 if (N->LowLink == N->DFSNumber)
485 // Form the new SCC out of the top of the DFS stack.
Chandler Carruth24553932014-04-24 11:05:20 +0000486 return formSCC(N, PendingSCCStack);
Chandler Carruth18eadd922014-04-18 10:50:32 +0000487
Chandler Carruth24553932014-04-24 11:05:20 +0000488 // At this point we know that N cannot ever be an SCC root. Its low-link
489 // is not its dfs-number, and we've processed all of its children. It is
490 // just sitting here waiting until some node further down the stack gets
491 // low-link == dfs-number and pops it off as well. Move it to the pending
492 // stack which is pulled into the next SCC to be formed.
493 PendingSCCStack.push_back(N);
Chandler Carruth5e2d70b2014-04-26 09:28:00 +0000494
495 assert(!DFSStack.empty() && "We never found a viable root!");
496 N = DFSStack.back().first;
497 I = DFSStack.back().second;
498 DFSStack.pop_back();
Chandler Carruth91dcf0f2014-04-24 21:19:30 +0000499 }
Chandler Carruth18eadd922014-04-18 10:50:32 +0000500}
501
Chandler Carruthbf71a342014-02-06 04:37:03 +0000502char LazyCallGraphAnalysis::PassID;
503
504LazyCallGraphPrinterPass::LazyCallGraphPrinterPass(raw_ostream &OS) : OS(OS) {}
505
506static void printNodes(raw_ostream &OS, LazyCallGraph::Node &N,
507 SmallPtrSetImpl<LazyCallGraph::Node *> &Printed) {
508 // Recurse depth first through the nodes.
Chandler Carruthbd5d3082014-04-23 23:34:48 +0000509 for (LazyCallGraph::Node &ChildN : N)
510 if (Printed.insert(&ChildN))
511 printNodes(OS, ChildN, Printed);
Chandler Carruthbf71a342014-02-06 04:37:03 +0000512
513 OS << " Call edges in function: " << N.getFunction().getName() << "\n";
514 for (LazyCallGraph::iterator I = N.begin(), E = N.end(); I != E; ++I)
515 OS << " -> " << I->getFunction().getName() << "\n";
516
517 OS << "\n";
518}
519
Chandler Carruth18eadd922014-04-18 10:50:32 +0000520static void printSCC(raw_ostream &OS, LazyCallGraph::SCC &SCC) {
521 ptrdiff_t SCCSize = std::distance(SCC.begin(), SCC.end());
522 OS << " SCC with " << SCCSize << " functions:\n";
523
524 for (LazyCallGraph::Node *N : SCC)
525 OS << " " << N->getFunction().getName() << "\n";
526
527 OS << "\n";
528}
529
Chandler Carruthe9b50612014-03-10 02:14:14 +0000530PreservedAnalyses LazyCallGraphPrinterPass::run(Module *M,
531 ModuleAnalysisManager *AM) {
Chandler Carruthbf71a342014-02-06 04:37:03 +0000532 LazyCallGraph &G = AM->getResult<LazyCallGraphAnalysis>(M);
533
Chandler Carruthe9b50612014-03-10 02:14:14 +0000534 OS << "Printing the call graph for module: " << M->getModuleIdentifier()
535 << "\n\n";
Chandler Carruthbf71a342014-02-06 04:37:03 +0000536
537 SmallPtrSet<LazyCallGraph::Node *, 16> Printed;
Chandler Carruthbd5d3082014-04-23 23:34:48 +0000538 for (LazyCallGraph::Node &N : G)
539 if (Printed.insert(&N))
540 printNodes(OS, N, Printed);
Chandler Carruthbf71a342014-02-06 04:37:03 +0000541
Chandler Carruth6a4fee82014-04-23 23:51:07 +0000542 for (LazyCallGraph::SCC &SCC : G.postorder_sccs())
543 printSCC(OS, SCC);
Chandler Carruth18eadd922014-04-18 10:50:32 +0000544
Chandler Carruthbf71a342014-02-06 04:37:03 +0000545 return PreservedAnalyses::all();
Chandler Carruth18eadd922014-04-18 10:50:32 +0000546
Chandler Carruthbf71a342014-02-06 04:37:03 +0000547}