reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

include/llvm/Analysis/CallGraph.h
  335   const CallGraph &getCallGraph() const { return *G; }
  336   CallGraph &getCallGraph() { return *G; }
  342   Module &getModule() const { return G->getModule(); }
  344   inline iterator begin() { return G->begin(); }
  345   inline iterator end() { return G->end(); }
  346   inline const_iterator begin() const { return G->begin(); }
  347   inline const_iterator end() const { return G->end(); }
  351     return (*G)[F];
  355   inline CallGraphNode *operator[](const Function *F) { return (*G)[F]; }
  360     return G->getExternalCallingNode();
  364     return G->getCallsExternalNode();
  379     return G->removeFunctionFromModule(CGN);
  385     return G->getOrInsertFunction(F);
lib/Analysis/CallGraph.cpp
  272   G.reset(new CallGraph(M));
  281 void CallGraphWrapperPass::releaseMemory() { G.reset(); }
  284   if (!G) {
  290   G->print(OS);