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

Declarations

include/llvm/Analysis/CallGraph.h
  157   CallGraphNode *getOrInsertFunction(const Function *F);

References

include/llvm/Analysis/CallGraph.h
  385     return G->getOrInsertFunction(F);
lib/Analysis/CallGraph.cpp
   31     : M(M), ExternalCallingNode(getOrInsertFunction(nullptr)),
   60   CallGraphNode *Node = getOrInsertFunction(F);
   83           Node->addCalledFunction(Call, getOrInsertFunction(Callee));
lib/Analysis/CallGraphSCCPass.cpp
  325             CalleeNode = CG.getOrInsertFunction(Callee);
  349           CalleeNode = CG.getOrInsertFunction(Callee);
lib/Transforms/Coroutines/CoroSplit.cpp
 1428   auto *Node = CG.getOrInsertFunction(DevirtFn);
lib/Transforms/Coroutines/Coroutines.cpp
  201         Node->addCalledFunction(Call, CG.getOrInsertFunction(Callee));
  217     CallGraphNode *Callee = CG.getOrInsertFunction(F);
lib/Transforms/IPO/ArgumentPromotion.cpp
 1140             CG.getOrInsertFunction(NewCS.getCalledFunction());
 1154         CallGraphNode *NewNode = CG.getOrInsertFunction(NewF);