HomeSort by: relevance | last modified time | path
    Searched refs:SuccIt (Results 1 - 4 of 4) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
IntervalIterator.h 144 Interval::succ_iterator &SuccIt = IntStack.back().second,
146 while (SuccIt != EndIt) { // Loop over all interval succs
147 bool Done = ProcessInterval(getSourceGraphNode(OrigContainer, *SuccIt));
148 ++SuccIt; // Increment iterator
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
HotColdSplitting.cpp 520 auto SuccIt = ++df_begin(&SinkBB);
522 while (SuccIt != SuccEnd) {
523 BasicBlock &SuccBB = **SuccIt;
532 SuccIt.skipChildren();
543 ++SuccIt;
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
MachineBlockPlacement.cpp 3178 auto SuccIt = Succs.begin();
3179 if (SuccIt != Succs.end()) {
3180 DefaultBranchProb = MBPI->getEdgeProbability(BB, *SuccIt).getCompl();
3232 if (SuccIt != Succs.end())
3233 SuccIt++;
3240 if (SuccIt == Succs.end()) {
3245 // Fallthrough to *SuccIt, jump to all other successors;
3247 DupCost -= PredFreq * MBPI->getEdgeProbability(BB, *SuccIt);
3254 if (SuccIt != Succs.end())
3255 SuccIt++
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
LoopUnswitch.cpp 1736 auto SuccIt = Succ->begin();
1737 while (PHINode *PN = dyn_cast<PHINode>(SuccIt++)) {

Completed in 18 milliseconds