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 371 // We do a bottom-up SCC traversal of the call graph. In other words, we
375 std::vector<CallGraphNode *> &SCC = *I;
376 assert(!SCC.empty() && "SCC with no functions?");
378 if (!SCC[0]->getFunction()) {
381 for (unsigned i = 0, e = SCC.size(); i != e; ++i)
382 FunctionInfo.erase(SCC[i]->getFunction());
386 FunctionRecord &FR = FunctionInfo[SCC[0]->getFunction()];
393 for (unsigned i = 0, e = SCC.size(); i != e && !KnowNothing; ++i) {
394 Function *F = SCC[i]->getFunction()
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
DAGCombiner.cpp     [all...]

Completed in 37 milliseconds