Lines Matching refs:CGN
146 for (CallGraphNode *CGN : CurSCC) { in RunPassOnSCC()
147 if (Function *F = CGN->getFunction()) { in RunPassOnSCC()
184 for (CallGraphNode *CGN : CurSCC) in RefreshCallGraph()
185 CGN->dump(); in RefreshCallGraph()
195 CallGraphNode *CGN = *SCCIdx; in RefreshCallGraph() local
196 Function *F = CGN->getFunction(); in RefreshCallGraph()
207 for (CallGraphNode::iterator I = CGN->begin(), E = CGN->end(); I != E; ) { in RefreshCallGraph()
237 CGN->removeCallEdge(I); in RefreshCallGraph()
244 E = CGN->end(); in RefreshCallGraph()
315 CGN->replaceCallEdge(CS, CS, CalleeNode); in RefreshCallGraph()
333 CGN->addCalledFunction(CS, CalleeNode); in RefreshCallGraph()
364 for (CallGraphNode *CGN : CurSCC) in RefreshCallGraph()
365 CGN->dump(); in RefreshCallGraph()
615 for (CallGraphNode *CGN : SCC) { in runOnSCC()
616 if (CGN->getFunction()) { in runOnSCC()
617 if (isFunctionInPrintList(CGN->getFunction()->getName())) in runOnSCC()
618 CGN->getFunction()->print(Out); in runOnSCC()