Home | History | Annotate | Download | only in IPA

Lines Matching refs:CGN

145   for (CallGraphNode *CGN : CurSCC) {
146 if (Function *F = CGN->getFunction()) {
183 for (CallGraphNode *CGN : CurSCC)
184 CGN->dump();
194 CallGraphNode *CGN = *SCCIdx;
195 Function *F = CGN->getFunction();
199 // CGN with those actually in the function.
206 for (CallGraphNode::iterator I = CGN->begin(), E = CGN->end(); I != E; ) {
234 CGN->removeCallEdge(I);
241 E = CGN->end();
311 // Update the edge target in CGN.
312 CGN->replaceCallEdge(CS, CS, CalleeNode);
320 // If the call site didn't exist in the CGN yet, add it.
330 CGN->addCalledFunction(CS, CalleeNode);
361 for (CallGraphNode *CGN : CurSCC)
362 CGN->dump();
612 for (CallGraphNode *CGN : SCC) {
613 if (CGN->getFunction())
614 CGN->getFunction()->print(Out);