blob: 6a41acb6d9e5a5c09c999da4c031d604acf92c36 [file] [log] [blame]
Chris Lattner8d5a16c2002-03-06 18:00:49 +00001//===- CallGraph.cpp - Build a Module's call graph ------------------------===//
John Criswellb576c942003-10-20 19:43:21 +00002//
3// 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.
7//
8//===----------------------------------------------------------------------===//
Chris Lattner41fbf302001-09-28 00:08:15 +00009//
Chris Lattnerd4d427b2002-03-06 20:19:35 +000010// This interface is used to build and manipulate a call graph, which is a very
11// useful tool for interprocedural optimization.
Chris Lattner41fbf302001-09-28 00:08:15 +000012//
Chris Lattnerd99d4d72002-07-18 04:43:16 +000013// Every function in a module is represented as a node in the call graph. The
14// callgraph node keeps track of which functions the are called by the function
Chris Lattnerd4d427b2002-03-06 20:19:35 +000015// corresponding to the node.
16//
Chris Lattnerd99d4d72002-07-18 04:43:16 +000017// A call graph will contain nodes where the function that they correspond to is
Chris Lattnerd4d427b2002-03-06 20:19:35 +000018// null. This 'external' node is used to represent control flow that is not
19// represented (or analyzable) in the module. As such, the external node will
Chris Lattnerd99d4d72002-07-18 04:43:16 +000020// have edges to functions with the following properties:
21// 1. All functions in the module without internal linkage, since they could
22// be called by functions outside of the our analysis capability.
23// 2. All functions whose address is used for something more than a direct
24// call, for example being stored into a memory location. Since they may
25// be called by an unknown caller later, they must be tracked as such.
Chris Lattnerd4d427b2002-03-06 20:19:35 +000026//
Chris Lattnerd99d4d72002-07-18 04:43:16 +000027// Similarly, functions have a call edge to the external node iff:
28// 1. The function is external, reflecting the fact that they could call
Chris Lattnerd4d427b2002-03-06 20:19:35 +000029// anything without internal linkage or that has its address taken.
Chris Lattnerd99d4d72002-07-18 04:43:16 +000030// 2. The function contains an indirect function call.
Chris Lattnerd4d427b2002-03-06 20:19:35 +000031//
32// As an extension in the future, there may be multiple nodes with a null
Chris Lattnerd99d4d72002-07-18 04:43:16 +000033// function. These will be used when we can prove (through pointer analysis)
34// that an indirect call site can call only a specific set of functions.
Chris Lattnerd4d427b2002-03-06 20:19:35 +000035//
36// Because of these properties, the CallGraph captures a conservative superset
37// of all of the caller-callee relationships, which is useful for
38// transformations.
39//
40// The CallGraph class also attempts to figure out what the root of the
Chris Lattnerd99d4d72002-07-18 04:43:16 +000041// CallGraph is, which is currently does by looking for a function named 'main'.
42// If no function named 'main' is found, the external node is used as the entry
43// node, reflecting the fact that any function without internal linkage could
Chris Lattnerd4d427b2002-03-06 20:19:35 +000044// be called into (which is common for libraries).
Chris Lattner9f9e2be2001-10-13 06:33:19 +000045//
Chris Lattner41fbf302001-09-28 00:08:15 +000046//===----------------------------------------------------------------------===//
47
48#include "llvm/Analysis/CallGraph.h"
Chris Lattner41fbf302001-09-28 00:08:15 +000049#include "llvm/Module.h"
Chris Lattner41fbf302001-09-28 00:08:15 +000050#include "llvm/iOther.h"
Chris Lattner9f9e2be2001-10-13 06:33:19 +000051#include "llvm/iTerminators.h"
Chris Lattnercee8f9a2001-11-27 00:03:19 +000052#include "Support/STLExtras.h"
Chris Lattner41fbf302001-09-28 00:08:15 +000053#include <algorithm>
Chris Lattner1e435162002-07-26 21:12:44 +000054
55static RegisterAnalysis<CallGraph> X("callgraph", "Call Graph Construction");
Chris Lattner93193f82002-01-31 00:42:27 +000056
Chris Lattnerd99d4d72002-07-18 04:43:16 +000057// getNodeFor - Return the node for the specified function or create one if it
Chris Lattner41fbf302001-09-28 00:08:15 +000058// does not already exist.
59//
Chris Lattnere590ff22002-03-26 17:55:33 +000060CallGraphNode *CallGraph::getNodeFor(Function *F) {
Chris Lattnerd99d4d72002-07-18 04:43:16 +000061 CallGraphNode *&CGN = FunctionMap[F];
Chris Lattnerd4d427b2002-03-06 20:19:35 +000062 if (CGN) return CGN;
Chris Lattner41fbf302001-09-28 00:08:15 +000063
Chris Lattnere590ff22002-03-26 17:55:33 +000064 assert((!F || F->getParent() == Mod) && "Function not in current module!");
65 return CGN = new CallGraphNode(F);
Chris Lattner41fbf302001-09-28 00:08:15 +000066}
67
Chris Lattnerd99d4d72002-07-18 04:43:16 +000068// addToCallGraph - Add a function to the call graph, and link the node to all
69// of the functions that it calls.
Chris Lattner41fbf302001-09-28 00:08:15 +000070//
Chris Lattner5714c972003-08-31 20:36:52 +000071void CallGraph::addToCallGraph(Function *F) {
72 CallGraphNode *Node = getNodeFor(F);
Chris Lattner41fbf302001-09-28 00:08:15 +000073
Chris Lattnerf52d01b2003-09-15 04:35:16 +000074 // If this function has external linkage, anything could call it...
Chris Lattner5714c972003-08-31 20:36:52 +000075 if (!F->hasInternalLinkage()) {
Chris Lattnerd99d4d72002-07-18 04:43:16 +000076 ExternalNode->addCalledFunction(Node);
Chris Lattner25e9cad2001-11-26 18:51:25 +000077
Chris Lattnerd4d427b2002-03-06 20:19:35 +000078 // Found the entry point?
Chris Lattner5714c972003-08-31 20:36:52 +000079 if (F->getName() == "main") {
Chris Lattnerd4d427b2002-03-06 20:19:35 +000080 if (Root)
81 Root = ExternalNode; // Found multiple external mains? Don't pick one.
82 else
83 Root = Node; // Found a main, keep track of it!
84 }
Chris Lattnerd4d427b2002-03-06 20:19:35 +000085 }
Chris Lattnerf52d01b2003-09-15 04:35:16 +000086
87 // If this function is not defined in this translation unit, it could call
88 // anything.
89 if (F->isExternal())
90 Node->addCalledFunction(ExternalNode);
Chris Lattnerd4d427b2002-03-06 20:19:35 +000091
Chris Lattnerd99d4d72002-07-18 04:43:16 +000092 // Loop over all of the users of the function... looking for callers...
Chris Lattnerd4d427b2002-03-06 20:19:35 +000093 //
Chris Lattner5714c972003-08-31 20:36:52 +000094 for (Value::use_iterator I = F->use_begin(), E = F->use_end(); I != E; ++I) {
Chris Lattnerd4d427b2002-03-06 20:19:35 +000095 User *U = *I;
96 if (CallInst *CI = dyn_cast<CallInst>(U))
Chris Lattnerd99d4d72002-07-18 04:43:16 +000097 getNodeFor(CI->getParent()->getParent())->addCalledFunction(Node);
Chris Lattnerd4d427b2002-03-06 20:19:35 +000098 else if (InvokeInst *II = dyn_cast<InvokeInst>(U))
Chris Lattnerd99d4d72002-07-18 04:43:16 +000099 getNodeFor(II->getParent()->getParent())->addCalledFunction(Node);
Chris Lattnerd4d427b2002-03-06 20:19:35 +0000100 else // Can't classify the user!
Chris Lattnerd99d4d72002-07-18 04:43:16 +0000101 ExternalNode->addCalledFunction(Node);
Chris Lattnerd4d427b2002-03-06 20:19:35 +0000102 }
103
Chris Lattnerd99d4d72002-07-18 04:43:16 +0000104 // Look for an indirect function call...
Chris Lattner5714c972003-08-31 20:36:52 +0000105 for (Function::iterator BB = F->begin(), BBE = F->end(); BB != BBE; ++BB)
Chris Lattnerd4d427b2002-03-06 20:19:35 +0000106 for (BasicBlock::iterator II = BB->begin(), IE = BB->end(); II != IE; ++II){
Chris Lattner7e708292002-06-25 16:13:24 +0000107 Instruction &I = *II;
Chris Lattnerd4d427b2002-03-06 20:19:35 +0000108
Chris Lattner7e708292002-06-25 16:13:24 +0000109 if (CallInst *CI = dyn_cast<CallInst>(&I)) {
Chris Lattnerdc89f872002-03-29 17:08:29 +0000110 if (CI->getCalledFunction() == 0)
Chris Lattnerd99d4d72002-07-18 04:43:16 +0000111 Node->addCalledFunction(ExternalNode);
Chris Lattner7e708292002-06-25 16:13:24 +0000112 } else if (InvokeInst *II = dyn_cast<InvokeInst>(&I)) {
Chris Lattnerdc89f872002-03-29 17:08:29 +0000113 if (II->getCalledFunction() == 0)
Chris Lattnerd99d4d72002-07-18 04:43:16 +0000114 Node->addCalledFunction(ExternalNode);
Chris Lattnerd4d427b2002-03-06 20:19:35 +0000115 }
116 }
Chris Lattner41fbf302001-09-28 00:08:15 +0000117}
118
Chris Lattner7e708292002-06-25 16:13:24 +0000119bool CallGraph::run(Module &M) {
Chris Lattner93193f82002-01-31 00:42:27 +0000120 destroy();
121
Chris Lattner7e708292002-06-25 16:13:24 +0000122 Mod = &M;
Chris Lattnerd4d427b2002-03-06 20:19:35 +0000123 ExternalNode = getNodeFor(0);
124 Root = 0;
Chris Lattner25e9cad2001-11-26 18:51:25 +0000125
Chris Lattnerd99d4d72002-07-18 04:43:16 +0000126 // Add every function to the call graph...
Chris Lattner7e708292002-06-25 16:13:24 +0000127 for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I)
128 addToCallGraph(I);
Chris Lattnerd4d427b2002-03-06 20:19:35 +0000129
Chris Lattnerd99d4d72002-07-18 04:43:16 +0000130 // If we didn't find a main function, use the external call graph node
Chris Lattnerd4d427b2002-03-06 20:19:35 +0000131 if (Root == 0) Root = ExternalNode;
Chris Lattner93193f82002-01-31 00:42:27 +0000132
133 return false;
Chris Lattner41fbf302001-09-28 00:08:15 +0000134}
135
Chris Lattner4ce0f8a2002-03-06 17:16:43 +0000136void CallGraph::destroy() {
Chris Lattnerd99d4d72002-07-18 04:43:16 +0000137 for (FunctionMapTy::iterator I = FunctionMap.begin(), E = FunctionMap.end();
Chris Lattnerd4d427b2002-03-06 20:19:35 +0000138 I != E; ++I)
Chris Lattner25e9cad2001-11-26 18:51:25 +0000139 delete I->second;
Chris Lattnerd99d4d72002-07-18 04:43:16 +0000140 FunctionMap.clear();
Chris Lattner25e9cad2001-11-26 18:51:25 +0000141}
142
Chris Lattner16500152002-11-04 00:21:19 +0000143static void WriteToOutput(const CallGraphNode *CGN, std::ostream &o) {
Chris Lattnerd99d4d72002-07-18 04:43:16 +0000144 if (CGN->getFunction())
145 o << "Call graph node for function: '"
146 << CGN->getFunction()->getName() <<"'\n";
Chris Lattner25e9cad2001-11-26 18:51:25 +0000147 else
Chris Lattnerb31247a2003-09-15 04:29:37 +0000148 o << "Call graph node <<null function: 0x" << CGN << ">>:\n";
Chris Lattner25e9cad2001-11-26 18:51:25 +0000149
Chris Lattner41fbf302001-09-28 00:08:15 +0000150 for (unsigned i = 0; i < CGN->size(); ++i)
Chris Lattnerd99d4d72002-07-18 04:43:16 +0000151 if ((*CGN)[i]->getFunction())
152 o << " Calls function '" << (*CGN)[i]->getFunction()->getName() << "'\n";
Chris Lattnerd4d427b2002-03-06 20:19:35 +0000153 else
154 o << " Calls external node\n";
Chris Lattner697954c2002-01-20 22:54:45 +0000155 o << "\n";
Chris Lattner41fbf302001-09-28 00:08:15 +0000156}
157
Chris Lattner16500152002-11-04 00:21:19 +0000158void CallGraph::print(std::ostream &o, const Module *M) const {
Chris Lattnerb31247a2003-09-15 04:29:37 +0000159 o << "CallGraph Root is: ";
160 if (getRoot()->getFunction())
161 o << getRoot()->getFunction()->getName() << "\n";
162 else
163 o << "<<null function: 0x" << getRoot() << ">>\n";
164
Chris Lattner16500152002-11-04 00:21:19 +0000165 for (CallGraph::const_iterator I = begin(), E = end(); I != E; ++I)
166 WriteToOutput(I->second, o);
Chris Lattner41fbf302001-09-28 00:08:15 +0000167}
Vikram S. Advea7edb182001-10-22 13:55:46 +0000168
169
Chris Lattner25e9cad2001-11-26 18:51:25 +0000170//===----------------------------------------------------------------------===//
171// Implementations of public modification methods
172//
173
Chris Lattnerd99d4d72002-07-18 04:43:16 +0000174// Functions to keep a call graph up to date with a function that has been
Chris Lattner25e9cad2001-11-26 18:51:25 +0000175// modified
176//
Chris Lattnerd99d4d72002-07-18 04:43:16 +0000177void CallGraph::addFunctionToModule(Function *Meth) {
Chris Lattner25e9cad2001-11-26 18:51:25 +0000178 assert(0 && "not implemented");
179 abort();
180}
181
Chris Lattnerd99d4d72002-07-18 04:43:16 +0000182// removeFunctionFromModule - Unlink the function from this module, returning
183// it. Because this removes the function from the module, the call graph node
184// is destroyed. This is only valid if the function does not call any other
185// functions (ie, there are no edges in it's CGN). The easiest way to do this
Chris Lattner25e9cad2001-11-26 18:51:25 +0000186// is to dropAllReferences before calling this.
187//
Chris Lattnerd99d4d72002-07-18 04:43:16 +0000188Function *CallGraph::removeFunctionFromModule(CallGraphNode *CGN) {
189 assert(CGN->CalledFunctions.empty() && "Cannot remove function from call "
190 "graph if it references other functions!");
Chris Lattner5714c972003-08-31 20:36:52 +0000191 Function *F = CGN->getFunction(); // Get the function for the call graph node
Chris Lattnerd99d4d72002-07-18 04:43:16 +0000192 delete CGN; // Delete the call graph node for this func
Chris Lattner5714c972003-08-31 20:36:52 +0000193 FunctionMap.erase(F); // Remove the call graph node from the map
Chris Lattner25e9cad2001-11-26 18:51:25 +0000194
Chris Lattner5714c972003-08-31 20:36:52 +0000195 Mod->getFunctionList().remove(F);
196 return F;
Chris Lattner25e9cad2001-11-26 18:51:25 +0000197}
198