HomeSort by relevance Sort by last modified time
    Searched defs:SCC (Results 1 - 2 of 2) sorted by null

  /external/llvm/lib/Analysis/IPA/
GlobalsModRef.cpp 370 // We do a bottom-up SCC traversal of the call graph. In other words, we
374 std::vector<CallGraphNode *> &SCC = *I;
375 assert(!SCC.empty() && "SCC with no functions?");
377 if (!SCC[0]->getFunction()) {
380 for (unsigned i = 0, e = SCC.size(); i != e; ++i)
381 FunctionInfo.erase(SCC[i]->getFunction());
385 FunctionRecord &FR = FunctionInfo[SCC[0]->getFunction()];
392 for (unsigned i = 0, e = SCC.size(); i != e && !KnowNothing; ++i) {
393 Function *F = SCC[i]->getFunction()
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
DAGCombiner.cpp     [all...]

Completed in 77 milliseconds