Searched refs:SuccIt (Results 1 - 3 of 3) sorted by relevance

/freebsd-current/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DIntervalIterator.h143 Interval::succ_iterator &SuccIt = IntStack.back().second, local
145 while (SuccIt != EndIt) { // Loop over all interval succs
146 bool Done = ProcessInterval(getSourceGraphNode(OrigContainer, *SuccIt));
147 ++SuccIt; // Increment iterator
/freebsd-current/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DHotColdSplitting.cpp550 auto SuccIt = ++df_begin(&SinkBB); local
552 while (SuccIt != SuccEnd) {
553 BasicBlock &SuccBB = **SuccIt;
562 SuccIt.skipChildren();
573 ++SuccIt;
/freebsd-current/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineBlockPlacement.cpp3247 auto SuccIt = Succs.begin(); local
3248 if (SuccIt != Succs.end()) {
3249 DefaultBranchProb = MBPI->getEdgeProbability(BB, *SuccIt).getCompl();
3301 if (SuccIt != Succs.end())
3302 SuccIt++;
3309 if (SuccIt == Succs.end()) {
3314 // Fallthrough to *SuccIt, jump to all other successors;
3316 DupCost -= PredFreq * MBPI->getEdgeProbability(BB, *SuccIt);
3323 if (SuccIt != Succs.end())
3324 SuccIt
[all...]

Completed in 86 milliseconds