| Chris Lattner | d852cc3 | 2002-03-06 18:00:49 +0000 | [diff] [blame] | 1 | //===- CallGraph.cpp - Build a Module's call graph ------------------------===// |
| Misha Brukman | 01808ca | 2005-04-21 21:13:18 +0000 | [diff] [blame] | 2 | // |
| Chandler Carruth | 2946cd7 | 2019-01-19 08:50:56 +0000 | [diff] [blame] | 3 | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| 4 | // See https://llvm.org/LICENSE.txt for license information. |
| 5 | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
| Misha Brukman | 01808ca | 2005-04-21 21:13:18 +0000 | [diff] [blame] | 6 | // |
| John Criswell | 482202a | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 7 | //===----------------------------------------------------------------------===// |
| Chris Lattner | bbf3ae8 | 2001-09-28 00:08:15 +0000 | [diff] [blame] | 8 | |
| 9 | #include "llvm/Analysis/CallGraph.h" |
| Eugene Zelenko | 48666a6 | 2017-07-24 23:16:33 +0000 | [diff] [blame] | 10 | #include "llvm/ADT/STLExtras.h" |
| 11 | #include "llvm/ADT/SmallVector.h" |
| Nico Weber | 432a388 | 2018-04-30 14:59:11 +0000 | [diff] [blame] | 12 | #include "llvm/Config/llvm-config.h" |
| Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 13 | #include "llvm/IR/Module.h" |
| Eugene Zelenko | 48666a6 | 2017-07-24 23:16:33 +0000 | [diff] [blame] | 14 | #include "llvm/IR/Function.h" |
| 15 | #include "llvm/IR/Intrinsics.h" |
| 16 | #include "llvm/IR/PassManager.h" |
| 17 | #include "llvm/Pass.h" |
| 18 | #include "llvm/Support/Compiler.h" |
| David Greene | ba44b3e | 2009-12-23 20:03:58 +0000 | [diff] [blame] | 19 | #include "llvm/Support/Debug.h" |
| Chris Lattner | 1362602 | 2009-08-23 06:03:38 +0000 | [diff] [blame] | 20 | #include "llvm/Support/raw_ostream.h" |
| Eugene Zelenko | 48666a6 | 2017-07-24 23:16:33 +0000 | [diff] [blame] | 21 | #include <algorithm> |
| 22 | #include <cassert> |
| 23 | |
| Chris Lattner | 8b6db18 | 2004-04-12 05:36:32 +0000 | [diff] [blame] | 24 | using namespace llvm; |
| Brian Gaeke | 960707c | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 25 | |
| Chandler Carruth | 6378cf5 | 2013-11-26 04:19:30 +0000 | [diff] [blame] | 26 | //===----------------------------------------------------------------------===// |
| 27 | // Implementations of the CallGraph class methods. |
| 28 | // |
| 29 | |
| 30 | CallGraph::CallGraph(Module &M) |
| Peter Collingbourne | f3e9f12 | 2017-05-11 23:59:05 +0000 | [diff] [blame] | 31 | : M(M), ExternalCallingNode(getOrInsertFunction(nullptr)), |
| Jonas Devlieghere | 0eaee54 | 2019-08-15 15:54:37 +0000 | [diff] [blame] | 32 | CallsExternalNode(std::make_unique<CallGraphNode>(nullptr)) { |
| Chandler Carruth | 6378cf5 | 2013-11-26 04:19:30 +0000 | [diff] [blame] | 33 | // Add every function to the call graph. |
| Yaron Keren | 26ceb08 | 2015-06-12 05:15:27 +0000 | [diff] [blame] | 34 | for (Function &F : M) |
| 35 | addToCallGraph(&F); |
| Chandler Carruth | 6378cf5 | 2013-11-26 04:19:30 +0000 | [diff] [blame] | 36 | } |
| 37 | |
| Chandler Carruth | 5efd530 | 2015-08-16 06:35:19 +0000 | [diff] [blame] | 38 | CallGraph::CallGraph(CallGraph &&Arg) |
| Peter Collingbourne | f3e9f12 | 2017-05-11 23:59:05 +0000 | [diff] [blame] | 39 | : M(Arg.M), FunctionMap(std::move(Arg.FunctionMap)), |
| Chandler Carruth | 5efd530 | 2015-08-16 06:35:19 +0000 | [diff] [blame] | 40 | ExternalCallingNode(Arg.ExternalCallingNode), |
| 41 | CallsExternalNode(std::move(Arg.CallsExternalNode)) { |
| 42 | Arg.FunctionMap.clear(); |
| Chandler Carruth | 5efd530 | 2015-08-16 06:35:19 +0000 | [diff] [blame] | 43 | Arg.ExternalCallingNode = nullptr; |
| 44 | } |
| 45 | |
| Chandler Carruth | 6378cf5 | 2013-11-26 04:19:30 +0000 | [diff] [blame] | 46 | CallGraph::~CallGraph() { |
| 47 | // CallsExternalNode is not in the function map, delete it explicitly. |
| David Blaikie | a5d7de9 | 2015-08-05 20:55:50 +0000 | [diff] [blame] | 48 | if (CallsExternalNode) |
| 49 | CallsExternalNode->allReferencesDropped(); |
| Chandler Carruth | 6378cf5 | 2013-11-26 04:19:30 +0000 | [diff] [blame] | 50 | |
| 51 | // Reset all node's use counts to zero before deleting them to prevent an |
| 52 | // assertion from firing. |
| 53 | #ifndef NDEBUG |
| Yaron Keren | 26ceb08 | 2015-06-12 05:15:27 +0000 | [diff] [blame] | 54 | for (auto &I : FunctionMap) |
| 55 | I.second->allReferencesDropped(); |
| Chandler Carruth | 6378cf5 | 2013-11-26 04:19:30 +0000 | [diff] [blame] | 56 | #endif |
| Chris Lattner | bbf3ae8 | 2001-09-28 00:08:15 +0000 | [diff] [blame] | 57 | } |
| 58 | |
| Rafael Espindola | 6554e5a | 2013-10-31 03:03:55 +0000 | [diff] [blame] | 59 | void CallGraph::addToCallGraph(Function *F) { |
| 60 | CallGraphNode *Node = getOrInsertFunction(F); |
| 61 | |
| Peter Collingbourne | f3e9f12 | 2017-05-11 23:59:05 +0000 | [diff] [blame] | 62 | // If this function has external linkage or has its address taken, anything |
| 63 | // could call it. |
| 64 | if (!F->hasLocalLinkage() || F->hasAddressTaken()) |
| Chandler Carruth | ce3f75d | 2019-04-19 05:59:42 +0000 | [diff] [blame] | 65 | ExternalCallingNode->addCalledFunction(nullptr, Node); |
| Rafael Espindola | 6554e5a | 2013-10-31 03:03:55 +0000 | [diff] [blame] | 66 | |
| 67 | // If this function is not defined in this translation unit, it could call |
| 68 | // anything. |
| 69 | if (F->isDeclaration() && !F->isIntrinsic()) |
| Chandler Carruth | ce3f75d | 2019-04-19 05:59:42 +0000 | [diff] [blame] | 70 | Node->addCalledFunction(nullptr, CallsExternalNode.get()); |
| Rafael Espindola | 6554e5a | 2013-10-31 03:03:55 +0000 | [diff] [blame] | 71 | |
| 72 | // Look for calls by this function. |
| Benjamin Kramer | aa20915 | 2016-06-26 17:27:42 +0000 | [diff] [blame] | 73 | for (BasicBlock &BB : *F) |
| 74 | for (Instruction &I : BB) { |
| Chandler Carruth | ce3f75d | 2019-04-19 05:59:42 +0000 | [diff] [blame] | 75 | if (auto *Call = dyn_cast<CallBase>(&I)) { |
| 76 | const Function *Callee = Call->getCalledFunction(); |
| Benjamin Kramer | 31a47f9 | 2019-08-16 10:59:18 +0000 | [diff] [blame] | 77 | if (!Callee || !Intrinsic::isLeaf(Callee->getIntrinsicID())) |
| Rafael Espindola | 6554e5a | 2013-10-31 03:03:55 +0000 | [diff] [blame] | 78 | // Indirect calls of intrinsics are not allowed so no need to check. |
| Sanjoy Das | c65d43e | 2015-06-18 19:28:26 +0000 | [diff] [blame] | 79 | // We can be more precise here by using TargetArg returned by |
| 80 | // Intrinsic::isLeaf. |
| Chandler Carruth | ce3f75d | 2019-04-19 05:59:42 +0000 | [diff] [blame] | 81 | Node->addCalledFunction(Call, CallsExternalNode.get()); |
| Rafael Espindola | 6554e5a | 2013-10-31 03:03:55 +0000 | [diff] [blame] | 82 | else if (!Callee->isIntrinsic()) |
| Chandler Carruth | ce3f75d | 2019-04-19 05:59:42 +0000 | [diff] [blame] | 83 | Node->addCalledFunction(Call, getOrInsertFunction(Callee)); |
| Rafael Espindola | 6554e5a | 2013-10-31 03:03:55 +0000 | [diff] [blame] | 84 | } |
| 85 | } |
| 86 | } |
| 87 | |
| Chandler Carruth | 6378cf5 | 2013-11-26 04:19:30 +0000 | [diff] [blame] | 88 | void CallGraph::print(raw_ostream &OS) const { |
| Sanjoy Das | 18c9dd3 | 2015-06-19 23:20:31 +0000 | [diff] [blame] | 89 | // Print in a deterministic order by sorting CallGraphNodes by name. We do |
| 90 | // this here to avoid slowing down the non-printing fast path. |
| 91 | |
| 92 | SmallVector<CallGraphNode *, 16> Nodes; |
| 93 | Nodes.reserve(FunctionMap.size()); |
| 94 | |
| Benjamin Kramer | aa20915 | 2016-06-26 17:27:42 +0000 | [diff] [blame] | 95 | for (const auto &I : *this) |
| 96 | Nodes.push_back(I.second.get()); |
| Sanjoy Das | 18c9dd3 | 2015-06-19 23:20:31 +0000 | [diff] [blame] | 97 | |
| Fangrui Song | 0cac726 | 2018-09-27 02:13:45 +0000 | [diff] [blame] | 98 | llvm::sort(Nodes, [](CallGraphNode *LHS, CallGraphNode *RHS) { |
| Sanjoy Das | 18c9dd3 | 2015-06-19 23:20:31 +0000 | [diff] [blame] | 99 | if (Function *LF = LHS->getFunction()) |
| 100 | if (Function *RF = RHS->getFunction()) |
| 101 | return LF->getName() < RF->getName(); |
| 102 | |
| 103 | return RHS->getFunction() != nullptr; |
| 104 | }); |
| 105 | |
| 106 | for (CallGraphNode *CN : Nodes) |
| 107 | CN->print(OS); |
| Chris Lattner | 6b541102 | 2004-08-08 03:27:49 +0000 | [diff] [blame] | 108 | } |
| 109 | |
| Aaron Ballman | 615eb47 | 2017-10-15 14:32:27 +0000 | [diff] [blame] | 110 | #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP) |
| Matthias Braun | 8c209aa | 2017-01-28 02:02:38 +0000 | [diff] [blame] | 111 | LLVM_DUMP_METHOD void CallGraph::dump() const { print(dbgs()); } |
| 112 | #endif |
| Chris Lattner | 03946cd | 2001-11-26 18:51:25 +0000 | [diff] [blame] | 113 | |
| Chris Lattner | 79b0c7d | 2002-07-18 04:43:16 +0000 | [diff] [blame] | 114 | // removeFunctionFromModule - Unlink the function from this module, returning |
| 115 | // it. Because this removes the function from the module, the call graph node |
| 116 | // is destroyed. This is only valid if the function does not call any other |
| 117 | // functions (ie, there are no edges in it's CGN). The easiest way to do this |
| Chris Lattner | 03946cd | 2001-11-26 18:51:25 +0000 | [diff] [blame] | 118 | // is to dropAllReferences before calling this. |
| 119 | // |
| Chris Lattner | 79b0c7d | 2002-07-18 04:43:16 +0000 | [diff] [blame] | 120 | Function *CallGraph::removeFunctionFromModule(CallGraphNode *CGN) { |
| Chris Lattner | 4275cf2 | 2009-08-31 02:24:20 +0000 | [diff] [blame] | 121 | assert(CGN->empty() && "Cannot remove function from call " |
| Chris Lattner | 79b0c7d | 2002-07-18 04:43:16 +0000 | [diff] [blame] | 122 | "graph if it references other functions!"); |
| Chris Lattner | 6f5e18d | 2003-08-31 20:36:52 +0000 | [diff] [blame] | 123 | Function *F = CGN->getFunction(); // Get the function for the call graph node |
| Chris Lattner | 6f5e18d | 2003-08-31 20:36:52 +0000 | [diff] [blame] | 124 | FunctionMap.erase(F); // Remove the call graph node from the map |
| Chris Lattner | 03946cd | 2001-11-26 18:51:25 +0000 | [diff] [blame] | 125 | |
| Chandler Carruth | 6378cf5 | 2013-11-26 04:19:30 +0000 | [diff] [blame] | 126 | M.getFunctionList().remove(F); |
| Chris Lattner | 6f5e18d | 2003-08-31 20:36:52 +0000 | [diff] [blame] | 127 | return F; |
| Chris Lattner | 03946cd | 2001-11-26 18:51:25 +0000 | [diff] [blame] | 128 | } |
| 129 | |
| Nick Lewycky | 0f87ca7 | 2011-01-03 03:19:35 +0000 | [diff] [blame] | 130 | /// spliceFunction - Replace the function represented by this node by another. |
| 131 | /// This does not rescan the body of the function, so it is suitable when |
| 132 | /// splicing the body of the old function to the new while also updating all |
| 133 | /// callers from old to new. |
| Nick Lewycky | 0f87ca7 | 2011-01-03 03:19:35 +0000 | [diff] [blame] | 134 | void CallGraph::spliceFunction(const Function *From, const Function *To) { |
| 135 | assert(FunctionMap.count(From) && "No CallGraphNode for function!"); |
| 136 | assert(!FunctionMap.count(To) && |
| 137 | "Pointing CallGraphNode at a function that already exists"); |
| 138 | FunctionMapTy::iterator I = FunctionMap.find(From); |
| 139 | I->second->F = const_cast<Function*>(To); |
| David Blaikie | a5d7de9 | 2015-08-05 20:55:50 +0000 | [diff] [blame] | 140 | FunctionMap[To] = std::move(I->second); |
| Nick Lewycky | 0f87ca7 | 2011-01-03 03:19:35 +0000 | [diff] [blame] | 141 | FunctionMap.erase(I); |
| 142 | } |
| 143 | |
| Chris Lattner | 00ca8d2 | 2006-01-14 20:03:00 +0000 | [diff] [blame] | 144 | // getOrInsertFunction - This method is identical to calling operator[], but |
| 145 | // it will insert a new CallGraphNode for the specified function if one does |
| 146 | // not already exist. |
| 147 | CallGraphNode *CallGraph::getOrInsertFunction(const Function *F) { |
| David Blaikie | a5d7de9 | 2015-08-05 20:55:50 +0000 | [diff] [blame] | 148 | auto &CGN = FunctionMap[F]; |
| Chandler Carruth | 6378cf5 | 2013-11-26 04:19:30 +0000 | [diff] [blame] | 149 | if (CGN) |
| David Blaikie | a5d7de9 | 2015-08-05 20:55:50 +0000 | [diff] [blame] | 150 | return CGN.get(); |
| Chandler Carruth | 6378cf5 | 2013-11-26 04:19:30 +0000 | [diff] [blame] | 151 | |
| 152 | assert((!F || F->getParent() == &M) && "Function not in current module!"); |
| Jonas Devlieghere | 0eaee54 | 2019-08-15 15:54:37 +0000 | [diff] [blame] | 153 | CGN = std::make_unique<CallGraphNode>(const_cast<Function *>(F)); |
| David Blaikie | a5d7de9 | 2015-08-05 20:55:50 +0000 | [diff] [blame] | 154 | return CGN.get(); |
| Chris Lattner | 00ca8d2 | 2006-01-14 20:03:00 +0000 | [diff] [blame] | 155 | } |
| 156 | |
| Chandler Carruth | 6378cf5 | 2013-11-26 04:19:30 +0000 | [diff] [blame] | 157 | //===----------------------------------------------------------------------===// |
| 158 | // Implementations of the CallGraphNode class methods. |
| 159 | // |
| 160 | |
| Chris Lattner | 1362602 | 2009-08-23 06:03:38 +0000 | [diff] [blame] | 161 | void CallGraphNode::print(raw_ostream &OS) const { |
| Chris Lattner | be198777 | 2005-12-22 06:07:52 +0000 | [diff] [blame] | 162 | if (Function *F = getFunction()) |
| Chris Lattner | 081375b | 2009-08-31 03:15:49 +0000 | [diff] [blame] | 163 | OS << "Call graph node for function: '" << F->getName() << "'"; |
| Chris Lattner | be198777 | 2005-12-22 06:07:52 +0000 | [diff] [blame] | 164 | else |
| Chris Lattner | 081375b | 2009-08-31 03:15:49 +0000 | [diff] [blame] | 165 | OS << "Call graph node <<null function>>"; |
| Fangrui Song | f78650a | 2018-07-30 19:41:25 +0000 | [diff] [blame] | 166 | |
| Chris Lattner | 8c56254 | 2010-04-23 18:23:40 +0000 | [diff] [blame] | 167 | OS << "<<" << this << ">> #uses=" << getNumReferences() << '\n'; |
| Chris Lattner | be198777 | 2005-12-22 06:07:52 +0000 | [diff] [blame] | 168 | |
| Benjamin Kramer | aa20915 | 2016-06-26 17:27:42 +0000 | [diff] [blame] | 169 | for (const auto &I : *this) { |
| 170 | OS << " CS<" << I.first << "> calls "; |
| 171 | if (Function *FI = I.second->getFunction()) |
| Chris Lattner | 8c56254 | 2010-04-23 18:23:40 +0000 | [diff] [blame] | 172 | OS << "function '" << FI->getName() <<"'\n"; |
| 173 | else |
| Benjamin Kramer | 31a47f9 | 2019-08-16 10:59:18 +0000 | [diff] [blame] | 174 | OS << "external node\n"; |
| Chris Lattner | 8c56254 | 2010-04-23 18:23:40 +0000 | [diff] [blame] | 175 | } |
| 176 | OS << '\n'; |
| Chris Lattner | be198777 | 2005-12-22 06:07:52 +0000 | [diff] [blame] | 177 | } |
| 178 | |
| Aaron Ballman | 615eb47 | 2017-10-15 14:32:27 +0000 | [diff] [blame] | 179 | #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP) |
| Matthias Braun | 8c209aa | 2017-01-28 02:02:38 +0000 | [diff] [blame] | 180 | LLVM_DUMP_METHOD void CallGraphNode::dump() const { print(dbgs()); } |
| 181 | #endif |
| Chris Lattner | be198777 | 2005-12-22 06:07:52 +0000 | [diff] [blame] | 182 | |
| Chris Lattner | cc9709c | 2008-04-13 19:41:25 +0000 | [diff] [blame] | 183 | /// removeCallEdgeFor - This method removes the edge in the node for the |
| 184 | /// specified call site. Note that this method takes linear time, so it |
| 185 | /// should be used sparingly. |
| Chandler Carruth | ce3f75d | 2019-04-19 05:59:42 +0000 | [diff] [blame] | 186 | void CallGraphNode::removeCallEdgeFor(CallBase &Call) { |
| Chris Lattner | eedcd84 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 187 | for (CalledFunctionsVector::iterator I = CalledFunctions.begin(); ; ++I) { |
| 188 | assert(I != CalledFunctions.end() && "Cannot find callsite to remove!"); |
| Chandler Carruth | ce3f75d | 2019-04-19 05:59:42 +0000 | [diff] [blame] | 189 | if (I->first == &Call) { |
| Chris Lattner | eedcd84 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 190 | I->second->DropRef(); |
| 191 | *I = CalledFunctions.back(); |
| 192 | CalledFunctions.pop_back(); |
| 193 | return; |
| 194 | } |
| Chris Lattner | cc9709c | 2008-04-13 19:41:25 +0000 | [diff] [blame] | 195 | } |
| 196 | } |
| 197 | |
| Chris Lattner | 824a218 | 2004-09-18 21:34:34 +0000 | [diff] [blame] | 198 | // removeAnyCallEdgeTo - This method removes any call edges from this node to |
| 199 | // the specified callee function. This takes more time to execute than |
| 200 | // removeCallEdgeTo, so it should not be used unless necessary. |
| 201 | void CallGraphNode::removeAnyCallEdgeTo(CallGraphNode *Callee) { |
| Chris Lattner | d6d99df | 2004-09-19 19:01:06 +0000 | [diff] [blame] | 202 | for (unsigned i = 0, e = CalledFunctions.size(); i != e; ++i) |
| Chris Lattner | 5de3b8b | 2006-07-12 18:29:36 +0000 | [diff] [blame] | 203 | if (CalledFunctions[i].second == Callee) { |
| Chris Lattner | 081375b | 2009-08-31 03:15:49 +0000 | [diff] [blame] | 204 | Callee->DropRef(); |
| Chris Lattner | d6d99df | 2004-09-19 19:01:06 +0000 | [diff] [blame] | 205 | CalledFunctions[i] = CalledFunctions.back(); |
| 206 | CalledFunctions.pop_back(); |
| 207 | --i; --e; |
| Chris Lattner | 824a218 | 2004-09-18 21:34:34 +0000 | [diff] [blame] | 208 | } |
| 209 | } |
| Reid Spencer | be53566 | 2006-06-07 22:00:26 +0000 | [diff] [blame] | 210 | |
| Duncan Sands | 3a813a5 | 2008-10-03 07:36:09 +0000 | [diff] [blame] | 211 | /// removeOneAbstractEdgeTo - Remove one edge associated with a null callsite |
| 212 | /// from this node to the specified callee function. |
| 213 | void CallGraphNode::removeOneAbstractEdgeTo(CallGraphNode *Callee) { |
| Gabor Greif | 20b722f | 2009-01-17 19:46:01 +0000 | [diff] [blame] | 214 | for (CalledFunctionsVector::iterator I = CalledFunctions.begin(); ; ++I) { |
| 215 | assert(I != CalledFunctions.end() && "Cannot find callee to remove!"); |
| 216 | CallRecord &CR = *I; |
| Craig Topper | 353eda4 | 2014-04-24 06:44:33 +0000 | [diff] [blame] | 217 | if (CR.second == Callee && CR.first == nullptr) { |
| Chris Lattner | 081375b | 2009-08-31 03:15:49 +0000 | [diff] [blame] | 218 | Callee->DropRef(); |
| 219 | *I = CalledFunctions.back(); |
| 220 | CalledFunctions.pop_back(); |
| Duncan Sands | 3a813a5 | 2008-10-03 07:36:09 +0000 | [diff] [blame] | 221 | return; |
| 222 | } |
| 223 | } |
| 224 | } |
| 225 | |
| Chris Lattner | e098721 | 2009-09-15 05:40:35 +0000 | [diff] [blame] | 226 | /// replaceCallEdge - This method replaces the edge in the node for the |
| 227 | /// specified call site with a new one. Note that this method takes linear |
| 228 | /// time, so it should be used sparingly. |
| Chandler Carruth | ce3f75d | 2019-04-19 05:59:42 +0000 | [diff] [blame] | 229 | void CallGraphNode::replaceCallEdge(CallBase &Call, CallBase &NewCall, |
| 230 | CallGraphNode *NewNode) { |
| Chris Lattner | e098721 | 2009-09-15 05:40:35 +0000 | [diff] [blame] | 231 | for (CalledFunctionsVector::iterator I = CalledFunctions.begin(); ; ++I) { |
| 232 | assert(I != CalledFunctions.end() && "Cannot find callsite to remove!"); |
| Chandler Carruth | ce3f75d | 2019-04-19 05:59:42 +0000 | [diff] [blame] | 233 | if (I->first == &Call) { |
| Chris Lattner | e098721 | 2009-09-15 05:40:35 +0000 | [diff] [blame] | 234 | I->second->DropRef(); |
| Chandler Carruth | ce3f75d | 2019-04-19 05:59:42 +0000 | [diff] [blame] | 235 | I->first = &NewCall; |
| Chris Lattner | e098721 | 2009-09-15 05:40:35 +0000 | [diff] [blame] | 236 | I->second = NewNode; |
| 237 | NewNode->AddRef(); |
| 238 | return; |
| 239 | } |
| 240 | } |
| 241 | } |
| 242 | |
| Chandler Carruth | cf3f4f2 | 2016-03-10 14:33:10 +0000 | [diff] [blame] | 243 | // Provide an explicit template instantiation for the static ID. |
| Chandler Carruth | dab4eae | 2016-11-23 17:53:26 +0000 | [diff] [blame] | 244 | AnalysisKey CallGraphAnalysis::Key; |
| Chandler Carruth | cf3f4f2 | 2016-03-10 14:33:10 +0000 | [diff] [blame] | 245 | |
| Chandler Carruth | 4c660f7 | 2016-03-10 11:24:11 +0000 | [diff] [blame] | 246 | PreservedAnalyses CallGraphPrinterPass::run(Module &M, |
| Sean Silva | fd03ac6 | 2016-08-09 00:28:38 +0000 | [diff] [blame] | 247 | ModuleAnalysisManager &AM) { |
| Chandler Carruth | b47f801 | 2016-03-11 11:05:24 +0000 | [diff] [blame] | 248 | AM.getResult<CallGraphAnalysis>(M).print(OS); |
| Chandler Carruth | 4c660f7 | 2016-03-10 11:24:11 +0000 | [diff] [blame] | 249 | return PreservedAnalyses::all(); |
| 250 | } |
| 251 | |
| Chandler Carruth | 6378cf5 | 2013-11-26 04:19:30 +0000 | [diff] [blame] | 252 | //===----------------------------------------------------------------------===// |
| Chandler Carruth | 5efd530 | 2015-08-16 06:35:19 +0000 | [diff] [blame] | 253 | // Out-of-line definitions of CallGraphAnalysis class members. |
| 254 | // |
| 255 | |
| Chandler Carruth | 5efd530 | 2015-08-16 06:35:19 +0000 | [diff] [blame] | 256 | //===----------------------------------------------------------------------===// |
| Chandler Carruth | 6378cf5 | 2013-11-26 04:19:30 +0000 | [diff] [blame] | 257 | // Implementations of the CallGraphWrapperPass class methods. |
| 258 | // |
| 259 | |
| 260 | CallGraphWrapperPass::CallGraphWrapperPass() : ModulePass(ID) { |
| 261 | initializeCallGraphWrapperPassPass(*PassRegistry::getPassRegistry()); |
| 262 | } |
| 263 | |
| Eugene Zelenko | 48666a6 | 2017-07-24 23:16:33 +0000 | [diff] [blame] | 264 | CallGraphWrapperPass::~CallGraphWrapperPass() = default; |
| Chandler Carruth | 6378cf5 | 2013-11-26 04:19:30 +0000 | [diff] [blame] | 265 | |
| 266 | void CallGraphWrapperPass::getAnalysisUsage(AnalysisUsage &AU) const { |
| 267 | AU.setPreservesAll(); |
| 268 | } |
| 269 | |
| 270 | bool CallGraphWrapperPass::runOnModule(Module &M) { |
| 271 | // All the real work is done in the constructor for the CallGraph. |
| 272 | G.reset(new CallGraph(M)); |
| 273 | return false; |
| 274 | } |
| 275 | |
| 276 | INITIALIZE_PASS(CallGraphWrapperPass, "basiccg", "CallGraph Construction", |
| 277 | false, true) |
| 278 | |
| 279 | char CallGraphWrapperPass::ID = 0; |
| 280 | |
| David Blaikie | b61064e | 2014-07-19 01:05:11 +0000 | [diff] [blame] | 281 | void CallGraphWrapperPass::releaseMemory() { G.reset(); } |
| Chandler Carruth | 6378cf5 | 2013-11-26 04:19:30 +0000 | [diff] [blame] | 282 | |
| 283 | void CallGraphWrapperPass::print(raw_ostream &OS, const Module *) const { |
| 284 | if (!G) { |
| 285 | OS << "No call graph has been built!\n"; |
| 286 | return; |
| 287 | } |
| 288 | |
| 289 | // Just delegate. |
| 290 | G->print(OS); |
| 291 | } |
| 292 | |
| Aaron Ballman | 615eb47 | 2017-10-15 14:32:27 +0000 | [diff] [blame] | 293 | #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP) |
| Davide Italiano | 6f93df8 | 2015-11-23 02:58:42 +0000 | [diff] [blame] | 294 | LLVM_DUMP_METHOD |
| Craig Topper | e73658d | 2014-04-28 04:05:08 +0000 | [diff] [blame] | 295 | void CallGraphWrapperPass::dump() const { print(dbgs(), nullptr); } |
| Matthias Braun | 8c209aa | 2017-01-28 02:02:38 +0000 | [diff] [blame] | 296 | #endif |
| Chandler Carruth | 1ecd740 | 2016-03-10 11:08:44 +0000 | [diff] [blame] | 297 | |
| 298 | namespace { |
| Eugene Zelenko | 48666a6 | 2017-07-24 23:16:33 +0000 | [diff] [blame] | 299 | |
| Chandler Carruth | 1ecd740 | 2016-03-10 11:08:44 +0000 | [diff] [blame] | 300 | struct CallGraphPrinterLegacyPass : public ModulePass { |
| 301 | static char ID; // Pass ID, replacement for typeid |
| Eugene Zelenko | 48666a6 | 2017-07-24 23:16:33 +0000 | [diff] [blame] | 302 | |
| Chandler Carruth | 1ecd740 | 2016-03-10 11:08:44 +0000 | [diff] [blame] | 303 | CallGraphPrinterLegacyPass() : ModulePass(ID) { |
| 304 | initializeCallGraphPrinterLegacyPassPass(*PassRegistry::getPassRegistry()); |
| 305 | } |
| 306 | |
| 307 | void getAnalysisUsage(AnalysisUsage &AU) const override { |
| 308 | AU.setPreservesAll(); |
| 309 | AU.addRequiredTransitive<CallGraphWrapperPass>(); |
| 310 | } |
| Eugene Zelenko | 48666a6 | 2017-07-24 23:16:33 +0000 | [diff] [blame] | 311 | |
| Chandler Carruth | 1ecd740 | 2016-03-10 11:08:44 +0000 | [diff] [blame] | 312 | bool runOnModule(Module &M) override { |
| 313 | getAnalysis<CallGraphWrapperPass>().print(errs(), &M); |
| 314 | return false; |
| 315 | } |
| 316 | }; |
| Eugene Zelenko | 48666a6 | 2017-07-24 23:16:33 +0000 | [diff] [blame] | 317 | |
| 318 | } // end anonymous namespace |
| Chandler Carruth | 1ecd740 | 2016-03-10 11:08:44 +0000 | [diff] [blame] | 319 | |
| 320 | char CallGraphPrinterLegacyPass::ID = 0; |
| 321 | |
| 322 | INITIALIZE_PASS_BEGIN(CallGraphPrinterLegacyPass, "print-callgraph", |
| 323 | "Print a call graph", true, true) |
| 324 | INITIALIZE_PASS_DEPENDENCY(CallGraphWrapperPass) |
| 325 | INITIALIZE_PASS_END(CallGraphPrinterLegacyPass, "print-callgraph", |
| 326 | "Print a call graph", true, true) |