reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Analysis/CallGraphSCCPass.cpp
  229     for (CallGraphNode::iterator I = CGN->begin(), E = CGN->end(); I != E; ) {
  232       auto *Call = dyn_cast_or_null<CallBase>(I->first);
  233       if (!I->first ||
  237           Calls.count(I->first) ||
  251         if (!I->second->getFunction())
  258         bool WasLast = I + 1 == E;
  259         CGN->removeCallEdge(I);
  270       assert(!Calls.count(I->first) &&
  277           Calls.insert(std::make_pair(I->first, I->second));
  277           Calls.insert(std::make_pair(I->first, I->second));
  279       ++I;