Lines Matching refs:CallGraphNode
47 CallGraphNode *CallerNode;
50 CGBuilder(CallGraph *g, CallGraphNode *N) : G(g), CallerNode(N) {} in CGBuilder()
70 CallGraphNode *CalleeNode = G->getOrInsertNode(D); in addCalledDecl()
184 CallGraphNode *Node = getOrInsertNode(D); in addNodeForDecl()
199 CallGraphNode *CallGraph::getNode(const Decl *F) const { in getNode()
205 CallGraphNode *CallGraph::getOrInsertNode(Decl *F) { in getOrInsertNode()
209 std::unique_ptr<CallGraphNode> &Node = FunctionMap[F]; in getOrInsertNode()
213 Node = std::make_unique<CallGraphNode>(F); in getOrInsertNode()
226 for (const CallGraphNode *N : RPOT) { in print()
234 for (CallGraphNode::const_iterator CI = N->begin(), in print()
253 void CallGraphNode::print(raw_ostream &os) const { in print()
259 LLVM_DUMP_METHOD void CallGraphNode::dump() const { in dump()
269 static std::string getNodeLabel(const CallGraphNode *Node, in getNodeLabel()