2002-03-06 18:00:49 +00:00
|
|
|
//===- CallGraph.cpp - Build a Module's call graph ------------------------===//
|
2005-04-21 21:13:18 +00:00
|
|
|
//
|
2003-10-20 19:43:21 +00:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file was developed by the LLVM research group and is distributed under
|
|
|
|
// the University of Illinois Open Source License. See LICENSE.TXT for details.
|
2005-04-21 21:13:18 +00:00
|
|
|
//
|
2003-10-20 19:43:21 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2001-09-28 00:08:15 +00:00
|
|
|
//
|
2005-12-22 06:07:52 +00:00
|
|
|
// This file implements the CallGraph class and provides the BasicCallGraph
|
|
|
|
// default implementation.
|
2001-10-13 06:33:19 +00:00
|
|
|
//
|
2001-09-28 00:08:15 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/Analysis/CallGraph.h"
|
|
|
|
#include "llvm/Module.h"
|
2004-07-29 17:30:56 +00:00
|
|
|
#include "llvm/Instructions.h"
|
2003-10-31 21:05:12 +00:00
|
|
|
#include "llvm/Support/CallSite.h"
|
2004-08-08 03:27:49 +00:00
|
|
|
#include <iostream>
|
2004-04-12 05:36:32 +00:00
|
|
|
using namespace llvm;
|
2003-11-11 22:41:34 +00:00
|
|
|
|
2003-10-31 21:05:12 +00:00
|
|
|
static bool isOnlyADirectCall(Function *F, CallSite CS) {
|
|
|
|
if (!CS.getInstruction()) return false;
|
|
|
|
for (CallSite::arg_iterator I = CS.arg_begin(), E = CS.arg_end(); I != E; ++I)
|
|
|
|
if (*I == F) return false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2005-12-22 06:07:52 +00:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// BasicCallGraph class definition
|
2001-09-28 00:08:15 +00:00
|
|
|
//
|
2005-12-22 06:07:52 +00:00
|
|
|
class BasicCallGraph : public CallGraph, public ModulePass {
|
|
|
|
// Root is root of the call graph, or the external node if a 'main' function
|
|
|
|
// couldn't be found.
|
|
|
|
//
|
|
|
|
CallGraphNode *Root;
|
|
|
|
|
|
|
|
// ExternalCallingNode - This node has edges to all external functions and
|
|
|
|
// those internal functions that have their address taken.
|
|
|
|
CallGraphNode *ExternalCallingNode;
|
|
|
|
|
|
|
|
// CallsExternalNode - This node has edges to it from all functions making
|
|
|
|
// indirect calls or calling an external function.
|
|
|
|
CallGraphNode *CallsExternalNode;
|
|
|
|
|
|
|
|
public:
|
|
|
|
BasicCallGraph() : Root(0), ExternalCallingNode(0), CallsExternalNode(0) {}
|
|
|
|
~BasicCallGraph() { destroy(); }
|
|
|
|
|
|
|
|
// runOnModule - Compute the call graph for the specified module.
|
|
|
|
virtual bool runOnModule(Module &M) {
|
|
|
|
destroy();
|
|
|
|
CallGraph::initialize(M);
|
|
|
|
|
2006-01-14 20:03:00 +00:00
|
|
|
ExternalCallingNode = getOrInsertFunction(0);
|
2005-12-22 06:07:52 +00:00
|
|
|
CallsExternalNode = new CallGraphNode(0);
|
|
|
|
Root = 0;
|
|
|
|
|
|
|
|
// Add every function to the call graph...
|
|
|
|
for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I)
|
|
|
|
addToCallGraph(I);
|
|
|
|
|
|
|
|
// If we didn't find a main function, use the external call graph node
|
|
|
|
if (Root == 0) Root = ExternalCallingNode;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void getAnalysisUsage(AnalysisUsage &AU) const {
|
|
|
|
AU.setPreservesAll();
|
2002-03-06 20:19:35 +00:00
|
|
|
}
|
2005-04-21 21:13:18 +00:00
|
|
|
|
2005-12-22 06:07:52 +00:00
|
|
|
virtual void print(std::ostream &o, const Module *M) const {
|
|
|
|
o << "CallGraph Root is: ";
|
|
|
|
if (Function *F = getRoot()->getFunction())
|
|
|
|
o << F->getName() << "\n";
|
|
|
|
else
|
|
|
|
o << "<<null function: 0x" << getRoot() << ">>\n";
|
|
|
|
|
|
|
|
CallGraph::print(o, M);
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void releaseMemory() {
|
|
|
|
destroy();
|
|
|
|
}
|
|
|
|
|
|
|
|
/// dump - Print out this call graph.
|
|
|
|
///
|
|
|
|
inline void dump() const {
|
|
|
|
print(std::cerr, Mod);
|
|
|
|
}
|
2002-03-06 20:19:35 +00:00
|
|
|
|
2005-12-22 06:07:52 +00:00
|
|
|
CallGraphNode* getExternalCallingNode() const { return ExternalCallingNode; }
|
|
|
|
CallGraphNode* getCallsExternalNode() const { return CallsExternalNode; }
|
|
|
|
|
|
|
|
// getRoot - Return the root of the call graph, which is either main, or if
|
|
|
|
// main cannot be found, the external node.
|
2002-03-06 20:19:35 +00:00
|
|
|
//
|
2005-12-22 06:07:52 +00:00
|
|
|
CallGraphNode *getRoot() { return Root; }
|
|
|
|
const CallGraphNode *getRoot() const { return Root; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
//===---------------------------------------------------------------------
|
|
|
|
// Implementation of CallGraph construction
|
|
|
|
//
|
|
|
|
|
|
|
|
// addToCallGraph - Add a function to the call graph, and link the node to all
|
|
|
|
// of the functions that it calls.
|
|
|
|
//
|
|
|
|
void addToCallGraph(Function *F) {
|
2006-01-14 20:03:00 +00:00
|
|
|
CallGraphNode *Node = getOrInsertFunction(F);
|
2005-12-22 06:07:52 +00:00
|
|
|
|
2006-07-12 18:29:36 +00:00
|
|
|
// If this function has external linkage, anything could call it.
|
2005-12-22 06:07:52 +00:00
|
|
|
if (!F->hasInternalLinkage()) {
|
2006-07-12 18:29:36 +00:00
|
|
|
ExternalCallingNode->addCalledFunction(CallSite(), Node);
|
2005-12-22 06:07:52 +00:00
|
|
|
|
|
|
|
// Found the entry point?
|
|
|
|
if (F->getName() == "main") {
|
|
|
|
if (Root) // Found multiple external mains? Don't pick one.
|
|
|
|
Root = ExternalCallingNode;
|
|
|
|
else
|
|
|
|
Root = Node; // Found a main, keep track of it!
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// If this function is not defined in this translation unit, it could call
|
|
|
|
// anything.
|
|
|
|
if (F->isExternal() && !F->getIntrinsicID())
|
2006-07-12 18:29:36 +00:00
|
|
|
Node->addCalledFunction(CallSite(), CallsExternalNode);
|
2005-12-22 06:07:52 +00:00
|
|
|
|
|
|
|
// Loop over all of the users of the function... looking for callers...
|
|
|
|
//
|
|
|
|
bool isUsedExternally = false;
|
|
|
|
for (Value::use_iterator I = F->use_begin(), E = F->use_end(); I != E; ++I){
|
|
|
|
if (Instruction *Inst = dyn_cast<Instruction>(*I)) {
|
2006-07-12 18:29:36 +00:00
|
|
|
CallSite CS = CallSite::get(Inst);
|
|
|
|
if (isOnlyADirectCall(F, CS))
|
2006-01-14 20:03:00 +00:00
|
|
|
getOrInsertFunction(Inst->getParent()->getParent())
|
2006-07-12 18:29:36 +00:00
|
|
|
->addCalledFunction(CS, Node);
|
2005-12-22 06:07:52 +00:00
|
|
|
else
|
|
|
|
isUsedExternally = true;
|
|
|
|
} else if (GlobalValue *GV = dyn_cast<GlobalValue>(*I)) {
|
|
|
|
for (Value::use_iterator I = GV->use_begin(), E = GV->use_end();
|
|
|
|
I != E; ++I)
|
|
|
|
if (Instruction *Inst = dyn_cast<Instruction>(*I)) {
|
2006-07-12 18:29:36 +00:00
|
|
|
CallSite CS = CallSite::get(Inst);
|
|
|
|
if (isOnlyADirectCall(F, CS))
|
|
|
|
getOrInsertFunction(Inst->getParent()->getParent())
|
|
|
|
->addCalledFunction(CS, Node);
|
|
|
|
else
|
|
|
|
isUsedExternally = true;
|
2005-12-22 06:07:52 +00:00
|
|
|
} else {
|
|
|
|
isUsedExternally = true;
|
|
|
|
}
|
|
|
|
} else { // Can't classify the user!
|
|
|
|
isUsedExternally = true;
|
|
|
|
}
|
2003-10-31 21:05:12 +00:00
|
|
|
}
|
2005-12-22 06:07:52 +00:00
|
|
|
if (isUsedExternally)
|
2006-07-12 18:29:36 +00:00
|
|
|
ExternalCallingNode->addCalledFunction(CallSite(), Node);
|
2002-03-06 20:19:35 +00:00
|
|
|
|
2006-07-12 18:29:36 +00:00
|
|
|
// Look for an indirect function call.
|
2005-12-22 06:07:52 +00:00
|
|
|
for (Function::iterator BB = F->begin(), BBE = F->end(); BB != BBE; ++BB)
|
|
|
|
for (BasicBlock::iterator II = BB->begin(), IE = BB->end();
|
|
|
|
II != IE; ++II) {
|
2003-10-31 21:05:12 +00:00
|
|
|
CallSite CS = CallSite::get(II);
|
|
|
|
if (CS.getInstruction() && !CS.getCalledFunction())
|
2006-07-12 18:29:36 +00:00
|
|
|
Node->addCalledFunction(CS, CallsExternalNode);
|
2005-12-22 06:07:52 +00:00
|
|
|
}
|
|
|
|
}
|
2002-01-31 00:42:27 +00:00
|
|
|
|
2005-12-22 06:07:52 +00:00
|
|
|
//
|
|
|
|
// destroy - Release memory for the call graph
|
|
|
|
virtual void destroy() {
|
|
|
|
if (!CallsExternalNode) {
|
|
|
|
delete CallsExternalNode;
|
|
|
|
CallsExternalNode = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
2001-11-26 18:51:25 +00:00
|
|
|
|
2005-12-22 06:07:52 +00:00
|
|
|
RegisterAnalysisGroup<CallGraph> X("Call Graph");
|
2006-08-27 22:42:52 +00:00
|
|
|
RegisterPass<BasicCallGraph> Y("basiccg", "Basic CallGraph Construction");
|
2006-08-28 00:42:29 +00:00
|
|
|
RegisterAnalysisGroup<CallGraph, true> Z(Y);
|
2002-03-06 20:19:35 +00:00
|
|
|
|
2005-12-22 06:07:52 +00:00
|
|
|
} //End anonymous namespace
|
2005-04-21 21:13:18 +00:00
|
|
|
|
2005-12-22 06:07:52 +00:00
|
|
|
void CallGraph::initialize(Module &M) {
|
|
|
|
destroy();
|
|
|
|
Mod = &M;
|
2001-09-28 00:08:15 +00:00
|
|
|
}
|
|
|
|
|
2002-03-06 17:16:43 +00:00
|
|
|
void CallGraph::destroy() {
|
2006-10-09 17:28:13 +00:00
|
|
|
if (!FunctionMap.empty()) {
|
2005-12-22 06:07:52 +00:00
|
|
|
for (FunctionMapTy::iterator I = FunctionMap.begin(), E = FunctionMap.end();
|
|
|
|
I != E; ++I)
|
|
|
|
delete I->second;
|
|
|
|
FunctionMap.clear();
|
|
|
|
}
|
2001-09-28 00:08:15 +00:00
|
|
|
}
|
|
|
|
|
2004-08-08 03:27:49 +00:00
|
|
|
void CallGraph::print(std::ostream &OS, const Module *M) const {
|
2002-11-04 00:21:19 +00:00
|
|
|
for (CallGraph::const_iterator I = begin(), E = end(); I != E; ++I)
|
2004-08-08 03:27:49 +00:00
|
|
|
I->second->print(OS);
|
|
|
|
}
|
|
|
|
|
2006-01-14 19:17:02 +00:00
|
|
|
void CallGraph::dump() const {
|
|
|
|
print(std::cerr, 0);
|
|
|
|
}
|
|
|
|
|
2001-11-26 18:51:25 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Implementations of public modification methods
|
|
|
|
//
|
|
|
|
|
2002-07-18 04:43:16 +00:00
|
|
|
// removeFunctionFromModule - Unlink the function from this module, returning
|
|
|
|
// it. Because this removes the function from the module, the call graph node
|
|
|
|
// is destroyed. This is only valid if the function does not call any other
|
|
|
|
// functions (ie, there are no edges in it's CGN). The easiest way to do this
|
2001-11-26 18:51:25 +00:00
|
|
|
// is to dropAllReferences before calling this.
|
|
|
|
//
|
2002-07-18 04:43:16 +00:00
|
|
|
Function *CallGraph::removeFunctionFromModule(CallGraphNode *CGN) {
|
|
|
|
assert(CGN->CalledFunctions.empty() && "Cannot remove function from call "
|
|
|
|
"graph if it references other functions!");
|
2003-08-31 20:36:52 +00:00
|
|
|
Function *F = CGN->getFunction(); // Get the function for the call graph node
|
2002-07-18 04:43:16 +00:00
|
|
|
delete CGN; // Delete the call graph node for this func
|
2003-08-31 20:36:52 +00:00
|
|
|
FunctionMap.erase(F); // Remove the call graph node from the map
|
2001-11-26 18:51:25 +00:00
|
|
|
|
2003-08-31 20:36:52 +00:00
|
|
|
Mod->getFunctionList().remove(F);
|
|
|
|
return F;
|
2001-11-26 18:51:25 +00:00
|
|
|
}
|
|
|
|
|
2004-09-18 00:22:13 +00:00
|
|
|
// changeFunction - This method changes the function associated with this
|
|
|
|
// CallGraphNode, for use by transformations that need to change the prototype
|
|
|
|
// of a Function (thus they must create a new Function and move the old code
|
|
|
|
// over).
|
|
|
|
void CallGraph::changeFunction(Function *OldF, Function *NewF) {
|
|
|
|
iterator I = FunctionMap.find(OldF);
|
|
|
|
CallGraphNode *&New = FunctionMap[NewF];
|
|
|
|
assert(I != FunctionMap.end() && I->second && !New &&
|
|
|
|
"OldF didn't exist in CG or NewF already does!");
|
|
|
|
New = I->second;
|
2004-09-18 00:27:20 +00:00
|
|
|
New->F = NewF;
|
2004-09-18 00:22:13 +00:00
|
|
|
FunctionMap.erase(I);
|
|
|
|
}
|
|
|
|
|
2006-01-14 20:03:00 +00:00
|
|
|
// getOrInsertFunction - This method is identical to calling operator[], but
|
|
|
|
// it will insert a new CallGraphNode for the specified function if one does
|
|
|
|
// not already exist.
|
|
|
|
CallGraphNode *CallGraph::getOrInsertFunction(const Function *F) {
|
|
|
|
CallGraphNode *&CGN = FunctionMap[F];
|
|
|
|
if (CGN) return CGN;
|
|
|
|
|
|
|
|
assert((!F || F->getParent() == Mod) && "Function not in current module!");
|
|
|
|
return CGN = new CallGraphNode(const_cast<Function*>(F));
|
|
|
|
}
|
|
|
|
|
2005-12-22 06:07:52 +00:00
|
|
|
void CallGraphNode::print(std::ostream &OS) const {
|
|
|
|
if (Function *F = getFunction())
|
|
|
|
OS << "Call graph node for function: '" << F->getName() <<"'\n";
|
|
|
|
else
|
|
|
|
OS << "Call graph node <<null function: 0x" << this << ">>:\n";
|
|
|
|
|
|
|
|
for (const_iterator I = begin(), E = end(); I != E; ++I)
|
2006-07-12 18:29:36 +00:00
|
|
|
if (I->second->getFunction())
|
|
|
|
OS << " Calls function '" << I->second->getFunction()->getName() <<"'\n";
|
2005-12-22 06:07:52 +00:00
|
|
|
else
|
|
|
|
OS << " Calls external node\n";
|
|
|
|
OS << "\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
void CallGraphNode::dump() const { print(std::cerr); }
|
|
|
|
|
2004-04-12 05:36:32 +00:00
|
|
|
void CallGraphNode::removeCallEdgeTo(CallGraphNode *Callee) {
|
|
|
|
for (unsigned i = CalledFunctions.size(); ; --i) {
|
|
|
|
assert(i && "Cannot find callee to remove!");
|
2006-07-12 18:29:36 +00:00
|
|
|
if (CalledFunctions[i-1].second == Callee) {
|
2004-04-12 05:36:32 +00:00
|
|
|
CalledFunctions.erase(CalledFunctions.begin()+i-1);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2004-09-18 21:34:34 +00:00
|
|
|
|
|
|
|
// removeAnyCallEdgeTo - This method removes any call edges from this node to
|
|
|
|
// the specified callee function. This takes more time to execute than
|
|
|
|
// removeCallEdgeTo, so it should not be used unless necessary.
|
|
|
|
void CallGraphNode::removeAnyCallEdgeTo(CallGraphNode *Callee) {
|
2004-09-19 19:01:06 +00:00
|
|
|
for (unsigned i = 0, e = CalledFunctions.size(); i != e; ++i)
|
2006-07-12 18:29:36 +00:00
|
|
|
if (CalledFunctions[i].second == Callee) {
|
2004-09-19 19:01:06 +00:00
|
|
|
CalledFunctions[i] = CalledFunctions.back();
|
|
|
|
CalledFunctions.pop_back();
|
|
|
|
--i; --e;
|
2004-09-18 21:34:34 +00:00
|
|
|
}
|
|
|
|
}
|
2006-06-07 22:00:26 +00:00
|
|
|
|
|
|
|
// Enuse that users of CallGraph.h also link with this file
|
|
|
|
DEFINING_FILE_FOR(CallGraph)
|