1 //===- CallGraph.h - Build a Module's call graph ----------------*- C++ -*-===// 2 // 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 6 // 7 //===----------------------------------------------------------------------===// 8 /// \file 9 /// 10 /// This file provides interfaces used to build and manipulate a call graph, 11 /// which is a very useful tool for interprocedural optimization. 12 /// 13 /// Every function in a module is represented as a node in the call graph. The 14 /// callgraph node keeps track of which functions are called by the function 15 /// corresponding to the node. 16 /// 17 /// A call graph may contain nodes where the function that they correspond to 18 /// is null. These 'external' nodes are used to represent control flow that is 19 /// not represented (or analyzable) in the module. In particular, this 20 /// analysis builds one external node such that: 21 /// 1. All functions in the module without internal linkage will have edges 22 /// from this external node, indicating that they could be called by 23 /// functions outside of the module. 24 /// 2. All functions whose address is used for something more than a direct 25 /// call, for example being stored into a memory location will also have 26 /// an edge from this external node. Since they may be called by an 27 /// unknown caller later, they must be tracked as such. 28 /// 29 /// There is a second external node added for calls that leave this module. 30 /// Functions have a call edge to the external node iff: 31 /// 1. The function is external, reflecting the fact that they could call 32 /// anything without internal linkage or that has its address taken. 33 /// 2. The function contains an indirect function call. 34 /// 35 /// As an extension in the future, there may be multiple nodes with a null 36 /// function. These will be used when we can prove (through pointer analysis) 37 /// that an indirect call site can call only a specific set of functions. 38 /// 39 /// Because of these properties, the CallGraph captures a conservative superset 40 /// of all of the caller-callee relationships, which is useful for 41 /// transformations. 42 /// 43 //===----------------------------------------------------------------------===// 44 45 #ifndef LLVM_ANALYSIS_CALLGRAPH_H 46 #define LLVM_ANALYSIS_CALLGRAPH_H 47 48 #include "llvm/IR/InstrTypes.h" 49 #include "llvm/IR/PassManager.h" 50 #include "llvm/IR/ValueHandle.h" 51 #include "llvm/Pass.h" 52 #include <cassert> 53 #include <map> 54 #include <memory> 55 #include <utility> 56 #include <vector> 57 58 namespace llvm { 59 60 template <class GraphType> struct GraphTraits; 61 class CallGraphNode; 62 class Function; 63 class Module; 64 class raw_ostream; 65 66 /// The basic data container for the call graph of a \c Module of IR. 67 /// 68 /// This class exposes both the interface to the call graph for a module of IR. 69 /// 70 /// The core call graph itself can also be updated to reflect changes to the IR. 71 class CallGraph { 72 Module &M; 73 74 using FunctionMapTy = 75 std::map<const Function *, std::unique_ptr<CallGraphNode>>; 76 77 /// A map from \c Function* to \c CallGraphNode*. 78 FunctionMapTy FunctionMap; 79 80 /// This node has edges to all external functions and those internal 81 /// functions that have their address taken. 82 CallGraphNode *ExternalCallingNode; 83 84 /// This node has edges to it from all functions making indirect calls 85 /// or calling an external function. 86 std::unique_ptr<CallGraphNode> CallsExternalNode; 87 88 public: 89 explicit CallGraph(Module &M); 90 CallGraph(CallGraph &&Arg); 91 ~CallGraph(); 92 93 void print(raw_ostream &OS) const; 94 void dump() const; 95 96 using iterator = FunctionMapTy::iterator; 97 using const_iterator = FunctionMapTy::const_iterator; 98 99 /// Returns the module the call graph corresponds to. 100 Module &getModule() const { return M; } 101 102 bool invalidate(Module &, const PreservedAnalyses &PA, 103 ModuleAnalysisManager::Invalidator &); 104 105 inline iterator begin() { return FunctionMap.begin(); } 106 inline iterator end() { return FunctionMap.end(); } 107 inline const_iterator begin() const { return FunctionMap.begin(); } 108 inline const_iterator end() const { return FunctionMap.end(); } 109 110 /// Returns the call graph node for the provided function. 111 inline const CallGraphNode *operator[](const Function *F) const { 112 const_iterator I = FunctionMap.find(F); 113 assert(I != FunctionMap.end() && "Function not in callgraph!"); 114 return I->second.get(); 115 } 116 117 /// Returns the call graph node for the provided function. 118 inline CallGraphNode *operator[](const Function *F) { 119 const_iterator I = FunctionMap.find(F); 120 assert(I != FunctionMap.end() && "Function not in callgraph!"); 121 return I->second.get(); 122 } 123 124 /// Returns the \c CallGraphNode which is used to represent 125 /// undetermined calls into the callgraph. 126 CallGraphNode *getExternalCallingNode() const { return ExternalCallingNode; } 127 128 CallGraphNode *getCallsExternalNode() const { 129 return CallsExternalNode.get(); 130 } 131 132 /// Old node has been deleted, and New is to be used in its place, update the 133 /// ExternalCallingNode. 134 void ReplaceExternalCallEdge(CallGraphNode *Old, CallGraphNode *New); 135 136 //===--------------------------------------------------------------------- 137 // Functions to keep a call graph up to date with a function that has been 138 // modified. 139 // 140 141 /// Unlink the function from this module, returning it. 142 /// 143 /// Because this removes the function from the module, the call graph node is 144 /// destroyed. This is only valid if the function does not call any other 145 /// functions (ie, there are no edges in it's CGN). The easiest way to do 146 /// this is to dropAllReferences before calling this. 147 Function *removeFunctionFromModule(CallGraphNode *CGN); 148 149 /// Similar to operator[], but this will insert a new CallGraphNode for 150 /// \c F if one does not already exist. 151 CallGraphNode *getOrInsertFunction(const Function *F); 152 153 /// Populate \p CGN based on the calls inside the associated function. 154 void populateCallGraphNode(CallGraphNode *CGN); 155 156 /// Add a function to the call graph, and link the node to all of the 157 /// functions that it calls. 158 void addToCallGraph(Function *F); 159 }; 160 161 /// A node in the call graph for a module. 162 /// 163 /// Typically represents a function in the call graph. There are also special 164 /// "null" nodes used to represent theoretical entries in the call graph. 165 class CallGraphNode { 166 public: 167 /// A pair of the calling instruction (a call or invoke) 168 /// and the call graph node being called. 169 /// Call graph node may have two types of call records which represent an edge 170 /// in the call graph - reference or a call edge. Reference edges are not 171 /// associated with any call instruction and are created with the first field 172 /// set to `None`, while real call edges have instruction address in this 173 /// field. Therefore, all real call edges are expected to have a value in the 174 /// first field and it is not supposed to be `nullptr`. 175 /// Reference edges, for example, are used for connecting broker function 176 /// caller to the callback function for callback call sites. 177 using CallRecord = std::pair<std::optional<WeakTrackingVH>, CallGraphNode *>; 178 179 public: 180 using CalledFunctionsVector = std::vector<CallRecord>; 181 182 /// Creates a node for the specified function. 183 inline CallGraphNode(CallGraph *CG, Function *F) : CG(CG), F(F) {} 184 185 CallGraphNode(const CallGraphNode &) = delete; 186 CallGraphNode &operator=(const CallGraphNode &) = delete; 187 188 ~CallGraphNode() { 189 assert(NumReferences == 0 && "Node deleted while references remain"); 190 } 191 192 using iterator = std::vector<CallRecord>::iterator; 193 using const_iterator = std::vector<CallRecord>::const_iterator; 194 195 /// Returns the function that this call graph node represents. 196 Function *getFunction() const { return F; } 197 198 inline iterator begin() { return CalledFunctions.begin(); } 199 inline iterator end() { return CalledFunctions.end(); } 200 inline const_iterator begin() const { return CalledFunctions.begin(); } 201 inline const_iterator end() const { return CalledFunctions.end(); } 202 inline bool empty() const { return CalledFunctions.empty(); } 203 inline unsigned size() const { return (unsigned)CalledFunctions.size(); } 204 205 /// Returns the number of other CallGraphNodes in this CallGraph that 206 /// reference this node in their callee list. 207 unsigned getNumReferences() const { return NumReferences; } 208 209 /// Returns the i'th called function. 210 CallGraphNode *operator[](unsigned i) const { 211 assert(i < CalledFunctions.size() && "Invalid index"); 212 return CalledFunctions[i].second; 213 } 214 215 /// Print out this call graph node. 216 void dump() const; 217 void print(raw_ostream &OS) const; 218 219 //===--------------------------------------------------------------------- 220 // Methods to keep a call graph up to date with a function that has been 221 // modified 222 // 223 224 /// Removes all edges from this CallGraphNode to any functions it 225 /// calls. 226 void removeAllCalledFunctions() { 227 while (!CalledFunctions.empty()) { 228 CalledFunctions.back().second->DropRef(); 229 CalledFunctions.pop_back(); 230 } 231 } 232 233 /// Moves all the callee information from N to this node. 234 void stealCalledFunctionsFrom(CallGraphNode *N) { 235 assert(CalledFunctions.empty() && 236 "Cannot steal callsite information if I already have some"); 237 std::swap(CalledFunctions, N->CalledFunctions); 238 } 239 240 /// Adds a function to the list of functions called by this one. 241 void addCalledFunction(CallBase *Call, CallGraphNode *M) { 242 CalledFunctions.emplace_back(Call ? std::optional<WeakTrackingVH>(Call) 243 : std::optional<WeakTrackingVH>(), 244 M); 245 M->AddRef(); 246 } 247 248 void removeCallEdge(iterator I) { 249 I->second->DropRef(); 250 *I = CalledFunctions.back(); 251 CalledFunctions.pop_back(); 252 } 253 254 /// Removes the edge in the node for the specified call site. 255 /// 256 /// Note that this method takes linear time, so it should be used sparingly. 257 void removeCallEdgeFor(CallBase &Call); 258 259 /// Removes all call edges from this node to the specified callee 260 /// function. 261 /// 262 /// This takes more time to execute than removeCallEdgeTo, so it should not 263 /// be used unless necessary. 264 void removeAnyCallEdgeTo(CallGraphNode *Callee); 265 266 /// Removes one edge associated with a null callsite from this node to 267 /// the specified callee function. 268 void removeOneAbstractEdgeTo(CallGraphNode *Callee); 269 270 /// Replaces the edge in the node for the specified call site with a 271 /// new one. 272 /// 273 /// Note that this method takes linear time, so it should be used sparingly. 274 void replaceCallEdge(CallBase &Call, CallBase &NewCall, 275 CallGraphNode *NewNode); 276 277 private: 278 friend class CallGraph; 279 280 CallGraph *CG; 281 Function *F; 282 283 std::vector<CallRecord> CalledFunctions; 284 285 /// The number of times that this CallGraphNode occurs in the 286 /// CalledFunctions array of this or other CallGraphNodes. 287 unsigned NumReferences = 0; 288 289 void DropRef() { --NumReferences; } 290 void AddRef() { ++NumReferences; } 291 292 /// A special function that should only be used by the CallGraph class. 293 void allReferencesDropped() { NumReferences = 0; } 294 }; 295 296 /// An analysis pass to compute the \c CallGraph for a \c Module. 297 /// 298 /// This class implements the concept of an analysis pass used by the \c 299 /// ModuleAnalysisManager to run an analysis over a module and cache the 300 /// resulting data. 301 class CallGraphAnalysis : public AnalysisInfoMixin<CallGraphAnalysis> { 302 friend AnalysisInfoMixin<CallGraphAnalysis>; 303 304 static AnalysisKey Key; 305 306 public: 307 /// A formulaic type to inform clients of the result type. 308 using Result = CallGraph; 309 310 /// Compute the \c CallGraph for the module \c M. 311 /// 312 /// The real work here is done in the \c CallGraph constructor. 313 CallGraph run(Module &M, ModuleAnalysisManager &) { return CallGraph(M); } 314 }; 315 316 /// Printer pass for the \c CallGraphAnalysis results. 317 class CallGraphPrinterPass : public PassInfoMixin<CallGraphPrinterPass> { 318 raw_ostream &OS; 319 320 public: 321 explicit CallGraphPrinterPass(raw_ostream &OS) : OS(OS) {} 322 323 PreservedAnalyses run(Module &M, ModuleAnalysisManager &AM); 324 325 static bool isRequired() { return true; } 326 }; 327 328 /// Printer pass for the summarized \c CallGraphAnalysis results. 329 class CallGraphSCCsPrinterPass 330 : public PassInfoMixin<CallGraphSCCsPrinterPass> { 331 raw_ostream &OS; 332 333 public: 334 explicit CallGraphSCCsPrinterPass(raw_ostream &OS) : OS(OS) {} 335 336 PreservedAnalyses run(Module &M, ModuleAnalysisManager &AM); 337 338 static bool isRequired() { return true; } 339 }; 340 341 /// The \c ModulePass which wraps up a \c CallGraph and the logic to 342 /// build it. 343 /// 344 /// This class exposes both the interface to the call graph container and the 345 /// module pass which runs over a module of IR and produces the call graph. The 346 /// call graph interface is entirelly a wrapper around a \c CallGraph object 347 /// which is stored internally for each module. 348 class CallGraphWrapperPass : public ModulePass { 349 std::unique_ptr<CallGraph> G; 350 351 public: 352 static char ID; // Class identification, replacement for typeinfo 353 354 CallGraphWrapperPass(); 355 ~CallGraphWrapperPass() override; 356 357 /// The internal \c CallGraph around which the rest of this interface 358 /// is wrapped. 359 const CallGraph &getCallGraph() const { return *G; } 360 CallGraph &getCallGraph() { return *G; } 361 362 using iterator = CallGraph::iterator; 363 using const_iterator = CallGraph::const_iterator; 364 365 /// Returns the module the call graph corresponds to. 366 Module &getModule() const { return G->getModule(); } 367 368 inline iterator begin() { return G->begin(); } 369 inline iterator end() { return G->end(); } 370 inline const_iterator begin() const { return G->begin(); } 371 inline const_iterator end() const { return G->end(); } 372 373 /// Returns the call graph node for the provided function. 374 inline const CallGraphNode *operator[](const Function *F) const { 375 return (*G)[F]; 376 } 377 378 /// Returns the call graph node for the provided function. 379 inline CallGraphNode *operator[](const Function *F) { return (*G)[F]; } 380 381 /// Returns the \c CallGraphNode which is used to represent 382 /// undetermined calls into the callgraph. 383 CallGraphNode *getExternalCallingNode() const { 384 return G->getExternalCallingNode(); 385 } 386 387 CallGraphNode *getCallsExternalNode() const { 388 return G->getCallsExternalNode(); 389 } 390 391 //===--------------------------------------------------------------------- 392 // Functions to keep a call graph up to date with a function that has been 393 // modified. 394 // 395 396 /// Unlink the function from this module, returning it. 397 /// 398 /// Because this removes the function from the module, the call graph node is 399 /// destroyed. This is only valid if the function does not call any other 400 /// functions (ie, there are no edges in it's CGN). The easiest way to do 401 /// this is to dropAllReferences before calling this. 402 Function *removeFunctionFromModule(CallGraphNode *CGN) { 403 return G->removeFunctionFromModule(CGN); 404 } 405 406 /// Similar to operator[], but this will insert a new CallGraphNode for 407 /// \c F if one does not already exist. 408 CallGraphNode *getOrInsertFunction(const Function *F) { 409 return G->getOrInsertFunction(F); 410 } 411 412 //===--------------------------------------------------------------------- 413 // Implementation of the ModulePass interface needed here. 414 // 415 416 void getAnalysisUsage(AnalysisUsage &AU) const override; 417 bool runOnModule(Module &M) override; 418 void releaseMemory() override; 419 420 void print(raw_ostream &o, const Module *) const override; 421 void dump() const; 422 }; 423 424 //===----------------------------------------------------------------------===// 425 // GraphTraits specializations for call graphs so that they can be treated as 426 // graphs by the generic graph algorithms. 427 // 428 429 // Provide graph traits for traversing call graphs using standard graph 430 // traversals. 431 template <> struct GraphTraits<CallGraphNode *> { 432 using NodeRef = CallGraphNode *; 433 using CGNPairTy = CallGraphNode::CallRecord; 434 435 static NodeRef getEntryNode(CallGraphNode *CGN) { return CGN; } 436 static CallGraphNode *CGNGetValue(CGNPairTy P) { return P.second; } 437 438 using ChildIteratorType = 439 mapped_iterator<CallGraphNode::iterator, decltype(&CGNGetValue)>; 440 441 static ChildIteratorType child_begin(NodeRef N) { 442 return ChildIteratorType(N->begin(), &CGNGetValue); 443 } 444 445 static ChildIteratorType child_end(NodeRef N) { 446 return ChildIteratorType(N->end(), &CGNGetValue); 447 } 448 }; 449 450 template <> struct GraphTraits<const CallGraphNode *> { 451 using NodeRef = const CallGraphNode *; 452 using CGNPairTy = CallGraphNode::CallRecord; 453 using EdgeRef = const CallGraphNode::CallRecord &; 454 455 static NodeRef getEntryNode(const CallGraphNode *CGN) { return CGN; } 456 static const CallGraphNode *CGNGetValue(CGNPairTy P) { return P.second; } 457 458 using ChildIteratorType = 459 mapped_iterator<CallGraphNode::const_iterator, decltype(&CGNGetValue)>; 460 using ChildEdgeIteratorType = CallGraphNode::const_iterator; 461 462 static ChildIteratorType child_begin(NodeRef N) { 463 return ChildIteratorType(N->begin(), &CGNGetValue); 464 } 465 466 static ChildIteratorType child_end(NodeRef N) { 467 return ChildIteratorType(N->end(), &CGNGetValue); 468 } 469 470 static ChildEdgeIteratorType child_edge_begin(NodeRef N) { 471 return N->begin(); 472 } 473 static ChildEdgeIteratorType child_edge_end(NodeRef N) { return N->end(); } 474 475 static NodeRef edge_dest(EdgeRef E) { return E.second; } 476 }; 477 478 template <> 479 struct GraphTraits<CallGraph *> : public GraphTraits<CallGraphNode *> { 480 using PairTy = 481 std::pair<const Function *const, std::unique_ptr<CallGraphNode>>; 482 483 static NodeRef getEntryNode(CallGraph *CGN) { 484 return CGN->getExternalCallingNode(); // Start at the external node! 485 } 486 487 static CallGraphNode *CGGetValuePtr(const PairTy &P) { 488 return P.second.get(); 489 } 490 491 // nodes_iterator/begin/end - Allow iteration over all nodes in the graph 492 using nodes_iterator = 493 mapped_iterator<CallGraph::iterator, decltype(&CGGetValuePtr)>; 494 495 static nodes_iterator nodes_begin(CallGraph *CG) { 496 return nodes_iterator(CG->begin(), &CGGetValuePtr); 497 } 498 499 static nodes_iterator nodes_end(CallGraph *CG) { 500 return nodes_iterator(CG->end(), &CGGetValuePtr); 501 } 502 }; 503 504 template <> 505 struct GraphTraits<const CallGraph *> : public GraphTraits< 506 const CallGraphNode *> { 507 using PairTy = 508 std::pair<const Function *const, std::unique_ptr<CallGraphNode>>; 509 510 static NodeRef getEntryNode(const CallGraph *CGN) { 511 return CGN->getExternalCallingNode(); // Start at the external node! 512 } 513 514 static const CallGraphNode *CGGetValuePtr(const PairTy &P) { 515 return P.second.get(); 516 } 517 518 // nodes_iterator/begin/end - Allow iteration over all nodes in the graph 519 using nodes_iterator = 520 mapped_iterator<CallGraph::const_iterator, decltype(&CGGetValuePtr)>; 521 522 static nodes_iterator nodes_begin(const CallGraph *CG) { 523 return nodes_iterator(CG->begin(), &CGGetValuePtr); 524 } 525 526 static nodes_iterator nodes_end(const CallGraph *CG) { 527 return nodes_iterator(CG->end(), &CGGetValuePtr); 528 } 529 }; 530 531 } // end namespace llvm 532 533 #endif // LLVM_ANALYSIS_CALLGRAPH_H 534