Home | History | Annotate | Download | only in Analysis

Lines Matching defs:CGN

146   for (CallGraphNode *CGN : CurSCC) {
147 if (Function *F = CGN->getFunction()) {
184 for (CallGraphNode *CGN : CurSCC)
185 CGN->dump();
195 CallGraphNode *CGN = *SCCIdx;
196 Function *F = CGN->getFunction();
200 // CGN with those actually in the function.
207 for (CallGraphNode::iterator I = CGN->begin(), E = CGN->end(); I != E; ) {
237 CGN->removeCallEdge(I);
244 E = CGN->end();
314 // Update the edge target in CGN.
315 CGN->replaceCallEdge(CS, CS, CalleeNode);
323 // If the call site didn't exist in the CGN yet, add it.
333 CGN->addCalledFunction(CS, CalleeNode);
364 for (CallGraphNode *CGN : CurSCC)
365 CGN->dump();
615 for (CallGraphNode *CGN : SCC) {
616 if (CGN->getFunction()) {
617 if (isFunctionInPrintList(CGN->getFunction()->getName()))
618 CGN->getFunction()->print(Out);