Home | History | Annotate | Download | only in IPO

Lines Matching refs:SCC

154   // When processing our SCC, check to see if CS was inlined from some other
166 if (InlineHistory != -1) // Only do merging for top-level call sites in SCC.
203 // function in this SCC.
397 bool Inliner::runOnSCC(CallGraphSCC &SCC) {
403 DEBUG(dbgs() << "Inliner visiting SCC:");
404 for (CallGraphSCC::iterator I = SCC.begin(), E = SCC.end(); I != E; ++I) {
421 for (CallGraphSCC::iterator I = SCC.begin(), E = SCC.end(); I != E; ++I) {
450 // current SCC to the end of the list.
531 // TODO: Can remove if in SCC now.
552 // move a call site to a function in this SCC before the
554 if (SCC.isSingular()) {
571 // processing to avoid breaking the SCC traversal.