blob: 9089afe1a97ad7b96b245009e70ff18a7f8a62ea [file] [log] [blame]
Chris Lattner8d5a16c2002-03-06 18:00:49 +00001//===- CallGraph.cpp - Build a Module's call graph ------------------------===//
Misha Brukman2b37d7c2005-04-21 21:13:18 +00002//
John Criswellb576c942003-10-20 19:43:21 +00003// The LLVM Compiler Infrastructure
4//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
Misha Brukman2b37d7c2005-04-21 21:13:18 +00007//
John Criswellb576c942003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Chris Lattner41fbf302001-09-28 00:08:15 +00009//
Chris Lattner03839952005-12-22 06:07:52 +000010// This file implements the CallGraph class and provides the BasicCallGraph
11// default implementation.
Chris Lattner9f9e2be2001-10-13 06:33:19 +000012//
Chris Lattner41fbf302001-09-28 00:08:15 +000013//===----------------------------------------------------------------------===//
14
15#include "llvm/Analysis/CallGraph.h"
Chris Lattner41fbf302001-09-28 00:08:15 +000016#include "llvm/Module.h"
Misha Brukman47b14a42004-07-29 17:30:56 +000017#include "llvm/Instructions.h"
Chris Lattner07a38e72003-10-31 21:05:12 +000018#include "llvm/Support/CallSite.h"
Chris Lattneraf8a4242004-08-08 03:27:49 +000019#include <iostream>
Chris Lattnerb81c0212004-04-12 05:36:32 +000020using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000021
Chris Lattner03839952005-12-22 06:07:52 +000022void llvm::BasicCallGraphStub() {}
Chris Lattner41fbf302001-09-28 00:08:15 +000023
Chris Lattner07a38e72003-10-31 21:05:12 +000024static bool isOnlyADirectCall(Function *F, CallSite CS) {
25 if (!CS.getInstruction()) return false;
26 for (CallSite::arg_iterator I = CS.arg_begin(), E = CS.arg_end(); I != E; ++I)
27 if (*I == F) return false;
28 return true;
29}
30
Chris Lattner03839952005-12-22 06:07:52 +000031namespace {
32
33//===----------------------------------------------------------------------===//
34// BasicCallGraph class definition
Chris Lattner41fbf302001-09-28 00:08:15 +000035//
Chris Lattner03839952005-12-22 06:07:52 +000036class BasicCallGraph : public CallGraph, public ModulePass {
37 // Root is root of the call graph, or the external node if a 'main' function
38 // couldn't be found.
39 //
40 CallGraphNode *Root;
Chris Lattner41fbf302001-09-28 00:08:15 +000041
Chris Lattner03839952005-12-22 06:07:52 +000042 // ExternalCallingNode - This node has edges to all external functions and
43 // those internal functions that have their address taken.
44 CallGraphNode *ExternalCallingNode;
Chris Lattner25e9cad2001-11-26 18:51:25 +000045
Chris Lattner03839952005-12-22 06:07:52 +000046 // CallsExternalNode - This node has edges to it from all functions making
47 // indirect calls or calling an external function.
48 CallGraphNode *CallsExternalNode;
49
50public:
51 BasicCallGraph() : Root(0), ExternalCallingNode(0), CallsExternalNode(0) {}
52 ~BasicCallGraph() { destroy(); }
53
54 // runOnModule - Compute the call graph for the specified module.
55 virtual bool runOnModule(Module &M) {
56 destroy();
57 CallGraph::initialize(M);
58
Chris Lattnerc54b1c12006-01-14 20:03:00 +000059 ExternalCallingNode = getOrInsertFunction(0);
Chris Lattner03839952005-12-22 06:07:52 +000060 CallsExternalNode = new CallGraphNode(0);
61 Root = 0;
62
63 // Add every function to the call graph...
64 for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I)
65 addToCallGraph(I);
66
67 // If we didn't find a main function, use the external call graph node
68 if (Root == 0) Root = ExternalCallingNode;
69
70 return false;
Chris Lattnerd4d427b2002-03-06 20:19:35 +000071 }
Misha Brukman2b37d7c2005-04-21 21:13:18 +000072
Chris Lattner03839952005-12-22 06:07:52 +000073 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
74 AU.setPreservesAll();
75 }
Chris Lattnerd4d427b2002-03-06 20:19:35 +000076
Chris Lattner03839952005-12-22 06:07:52 +000077 virtual void print(std::ostream &o, const Module *M) const {
78 o << "CallGraph Root is: ";
79 if (Function *F = getRoot()->getFunction())
80 o << F->getName() << "\n";
81 else
82 o << "<<null function: 0x" << getRoot() << ">>\n";
83
84 CallGraph::print(o, M);
85 }
86
87 virtual void releaseMemory() {
88 destroy();
89 }
90
91 /// dump - Print out this call graph.
92 ///
93 inline void dump() const {
94 print(std::cerr, Mod);
95 }
96
97 CallGraphNode* getExternalCallingNode() const { return ExternalCallingNode; }
98 CallGraphNode* getCallsExternalNode() const { return CallsExternalNode; }
99
100 // getRoot - Return the root of the call graph, which is either main, or if
101 // main cannot be found, the external node.
Chris Lattnerd4d427b2002-03-06 20:19:35 +0000102 //
Chris Lattner03839952005-12-22 06:07:52 +0000103 CallGraphNode *getRoot() { return Root; }
104 const CallGraphNode *getRoot() const { return Root; }
105
106private:
107 //===---------------------------------------------------------------------
108 // Implementation of CallGraph construction
109 //
Chris Lattner03839952005-12-22 06:07:52 +0000110
Chris Lattner03839952005-12-22 06:07:52 +0000111 // addToCallGraph - Add a function to the call graph, and link the node to all
112 // of the functions that it calls.
113 //
114 void addToCallGraph(Function *F) {
Chris Lattnerc54b1c12006-01-14 20:03:00 +0000115 CallGraphNode *Node = getOrInsertFunction(F);
Chris Lattner03839952005-12-22 06:07:52 +0000116
117 // If this function has external linkage, anything could call it...
118 if (!F->hasInternalLinkage()) {
119 ExternalCallingNode->addCalledFunction(Node);
120
121 // Found the entry point?
122 if (F->getName() == "main") {
123 if (Root) // Found multiple external mains? Don't pick one.
124 Root = ExternalCallingNode;
125 else
126 Root = Node; // Found a main, keep track of it!
127 }
128 }
129
130 // If this function is not defined in this translation unit, it could call
131 // anything.
132 if (F->isExternal() && !F->getIntrinsicID())
133 Node->addCalledFunction(CallsExternalNode);
134
135 // Loop over all of the users of the function... looking for callers...
136 //
137 bool isUsedExternally = false;
138 for (Value::use_iterator I = F->use_begin(), E = F->use_end(); I != E; ++I){
139 if (Instruction *Inst = dyn_cast<Instruction>(*I)) {
140 if (isOnlyADirectCall(F, CallSite::get(Inst)))
Chris Lattnerc54b1c12006-01-14 20:03:00 +0000141 getOrInsertFunction(Inst->getParent()->getParent())
142 ->addCalledFunction(Node);
Chris Lattner03839952005-12-22 06:07:52 +0000143 else
144 isUsedExternally = true;
145 } else if (GlobalValue *GV = dyn_cast<GlobalValue>(*I)) {
146 for (Value::use_iterator I = GV->use_begin(), E = GV->use_end();
147 I != E; ++I)
148 if (Instruction *Inst = dyn_cast<Instruction>(*I)) {
Chris Lattner07a38e72003-10-31 21:05:12 +0000149 if (isOnlyADirectCall(F, CallSite::get(Inst)))
Chris Lattnerc54b1c12006-01-14 20:03:00 +0000150 getOrInsertFunction(Inst->getParent()->getParent())
151 ->addCalledFunction(Node);
Chris Lattner07a38e72003-10-31 21:05:12 +0000152 else
153 isUsedExternally = true;
Chris Lattner03839952005-12-22 06:07:52 +0000154 } else {
155 isUsedExternally = true;
156 }
157 } else { // Can't classify the user!
158 isUsedExternally = true;
159 }
Chris Lattner07a38e72003-10-31 21:05:12 +0000160 }
Chris Lattner03839952005-12-22 06:07:52 +0000161 if (isUsedExternally)
162 ExternalCallingNode->addCalledFunction(Node);
Chris Lattnerd4d427b2002-03-06 20:19:35 +0000163
Chris Lattnerd99d4d72002-07-18 04:43:16 +0000164 // Look for an indirect function call...
Chris Lattner03839952005-12-22 06:07:52 +0000165 for (Function::iterator BB = F->begin(), BBE = F->end(); BB != BBE; ++BB)
166 for (BasicBlock::iterator II = BB->begin(), IE = BB->end();
167 II != IE; ++II) {
Chris Lattner07a38e72003-10-31 21:05:12 +0000168 CallSite CS = CallSite::get(II);
169 if (CS.getInstruction() && !CS.getCalledFunction())
Chris Lattnerb81c0212004-04-12 05:36:32 +0000170 Node->addCalledFunction(CallsExternalNode);
Chris Lattner03839952005-12-22 06:07:52 +0000171 }
172 }
173
174 //
175 // destroy - Release memory for the call graph
176 virtual void destroy() {
177 if (!CallsExternalNode) {
178 delete CallsExternalNode;
179 CallsExternalNode = 0;
Chris Lattnerd4d427b2002-03-06 20:19:35 +0000180 }
Chris Lattner03839952005-12-22 06:07:52 +0000181 }
182};
Chris Lattner41fbf302001-09-28 00:08:15 +0000183
Chris Lattner03839952005-12-22 06:07:52 +0000184RegisterAnalysisGroup<CallGraph> X("Call Graph");
185RegisterOpt<BasicCallGraph> Y("basiccg", "Basic CallGraph Construction");
186RegisterAnalysisGroup<CallGraph, BasicCallGraph, true> Z;
187
188} //End anonymous namespace
189
190void CallGraph::initialize(Module &M) {
Chris Lattner93193f82002-01-31 00:42:27 +0000191 destroy();
Chris Lattner7e708292002-06-25 16:13:24 +0000192 Mod = &M;
Chris Lattner41fbf302001-09-28 00:08:15 +0000193}
194
Chris Lattner4ce0f8a2002-03-06 17:16:43 +0000195void CallGraph::destroy() {
Chris Lattner03839952005-12-22 06:07:52 +0000196 if(!FunctionMap.size()) {
197 for (FunctionMapTy::iterator I = FunctionMap.begin(), E = FunctionMap.end();
198 I != E; ++I)
199 delete I->second;
200 FunctionMap.clear();
201 }
Chris Lattner25e9cad2001-11-26 18:51:25 +0000202}
203
Chris Lattneraf8a4242004-08-08 03:27:49 +0000204void CallGraph::print(std::ostream &OS, const Module *M) const {
Chris Lattner16500152002-11-04 00:21:19 +0000205 for (CallGraph::const_iterator I = begin(), E = end(); I != E; ++I)
Chris Lattneraf8a4242004-08-08 03:27:49 +0000206 I->second->print(OS);
207}
208
Chris Lattner1694ec62006-01-14 19:17:02 +0000209void CallGraph::dump() const {
210 print(std::cerr, 0);
211}
212
Chris Lattner25e9cad2001-11-26 18:51:25 +0000213//===----------------------------------------------------------------------===//
214// Implementations of public modification methods
215//
216
Chris Lattnerd99d4d72002-07-18 04:43:16 +0000217// removeFunctionFromModule - Unlink the function from this module, returning
218// it. Because this removes the function from the module, the call graph node
219// is destroyed. This is only valid if the function does not call any other
220// functions (ie, there are no edges in it's CGN). The easiest way to do this
Chris Lattner25e9cad2001-11-26 18:51:25 +0000221// is to dropAllReferences before calling this.
222//
Chris Lattnerd99d4d72002-07-18 04:43:16 +0000223Function *CallGraph::removeFunctionFromModule(CallGraphNode *CGN) {
224 assert(CGN->CalledFunctions.empty() && "Cannot remove function from call "
225 "graph if it references other functions!");
Chris Lattner5714c972003-08-31 20:36:52 +0000226 Function *F = CGN->getFunction(); // Get the function for the call graph node
Chris Lattnerd99d4d72002-07-18 04:43:16 +0000227 delete CGN; // Delete the call graph node for this func
Chris Lattner5714c972003-08-31 20:36:52 +0000228 FunctionMap.erase(F); // Remove the call graph node from the map
Chris Lattner25e9cad2001-11-26 18:51:25 +0000229
Chris Lattner5714c972003-08-31 20:36:52 +0000230 Mod->getFunctionList().remove(F);
231 return F;
Chris Lattner25e9cad2001-11-26 18:51:25 +0000232}
233
Chris Lattner6f7e5eb2004-09-18 00:22:13 +0000234// changeFunction - This method changes the function associated with this
235// CallGraphNode, for use by transformations that need to change the prototype
236// of a Function (thus they must create a new Function and move the old code
237// over).
238void CallGraph::changeFunction(Function *OldF, Function *NewF) {
239 iterator I = FunctionMap.find(OldF);
240 CallGraphNode *&New = FunctionMap[NewF];
241 assert(I != FunctionMap.end() && I->second && !New &&
242 "OldF didn't exist in CG or NewF already does!");
243 New = I->second;
Chris Lattner3795bc92004-09-18 00:27:20 +0000244 New->F = NewF;
Chris Lattner6f7e5eb2004-09-18 00:22:13 +0000245 FunctionMap.erase(I);
246}
247
Chris Lattnerc54b1c12006-01-14 20:03:00 +0000248// getOrInsertFunction - This method is identical to calling operator[], but
249// it will insert a new CallGraphNode for the specified function if one does
250// not already exist.
251CallGraphNode *CallGraph::getOrInsertFunction(const Function *F) {
252 CallGraphNode *&CGN = FunctionMap[F];
253 if (CGN) return CGN;
254
255 assert((!F || F->getParent() == Mod) && "Function not in current module!");
256 return CGN = new CallGraphNode(const_cast<Function*>(F));
257}
258
259
260
Chris Lattner14fffaf2003-10-30 05:17:30 +0000261void CallGraph::stub() {}
Brian Gaeked0fde302003-11-11 22:41:34 +0000262
Chris Lattner03839952005-12-22 06:07:52 +0000263void CallGraphNode::print(std::ostream &OS) const {
264 if (Function *F = getFunction())
265 OS << "Call graph node for function: '" << F->getName() <<"'\n";
266 else
267 OS << "Call graph node <<null function: 0x" << this << ">>:\n";
268
269 for (const_iterator I = begin(), E = end(); I != E; ++I)
270 if ((*I)->getFunction())
271 OS << " Calls function '" << (*I)->getFunction()->getName() << "'\n";
272 else
273 OS << " Calls external node\n";
274 OS << "\n";
275}
276
277void CallGraphNode::dump() const { print(std::cerr); }
278
Chris Lattnerb81c0212004-04-12 05:36:32 +0000279void CallGraphNode::removeCallEdgeTo(CallGraphNode *Callee) {
280 for (unsigned i = CalledFunctions.size(); ; --i) {
281 assert(i && "Cannot find callee to remove!");
282 if (CalledFunctions[i-1] == Callee) {
283 CalledFunctions.erase(CalledFunctions.begin()+i-1);
284 return;
285 }
286 }
287}
Chris Lattnercd382a32004-09-18 21:34:34 +0000288
289// removeAnyCallEdgeTo - This method removes any call edges from this node to
290// the specified callee function. This takes more time to execute than
291// removeCallEdgeTo, so it should not be used unless necessary.
292void CallGraphNode::removeAnyCallEdgeTo(CallGraphNode *Callee) {
Chris Lattnerfff03c92004-09-19 19:01:06 +0000293 for (unsigned i = 0, e = CalledFunctions.size(); i != e; ++i)
294 if (CalledFunctions[i] == Callee) {
295 CalledFunctions[i] = CalledFunctions.back();
296 CalledFunctions.pop_back();
297 --i; --e;
Chris Lattnercd382a32004-09-18 21:34:34 +0000298 }
299}