Lines Matching refs:CallGraphNode
49 CallGraphNode *CallerNode;
52 CGBuilder(CallGraph *g, CallGraphNode *N) : G(g), CallerNode(N) {} in CGBuilder()
72 CallGraphNode *CalleeNode = G->getOrInsertNode(D); in addCalledDecl()
148 CallGraphNode *Node = getOrInsertNode(D); in addNodeForDecl()
156 CallGraphNode *CallGraph::getNode(const Decl *F) const { in getNode()
162 CallGraphNode *CallGraph::getOrInsertNode(Decl *F) { in getOrInsertNode()
166 std::unique_ptr<CallGraphNode> &Node = FunctionMap[F]; in getOrInsertNode()
170 Node = llvm::make_unique<CallGraphNode>(F); in getOrInsertNode()
185 const CallGraphNode *N = *I; in print()
194 for (CallGraphNode::const_iterator CI = N->begin(), in print()
213 void CallGraphNode::print(raw_ostream &os) const { in print()
219 LLVM_DUMP_METHOD void CallGraphNode::dump() const { in dump()
229 static std::string getNodeLabel(const CallGraphNode *Node, in getNodeLabel()