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

  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
SyncDependenceAnalysis.cpp 286 auto SuccIdx = LoopPOT.getIndexOf(SuccBlock);
289 const auto *OldLabel = BlockLabels[SuccIdx];
291 BlockLabels[SuccIdx] = &PushedLabel;
296 BlockLabels[SuccIdx] = &SuccBlock;
345 auto SuccIdx = LoopPOT.getIndexOf(*SuccBlock);
346 BlockLabels[SuccIdx] = SuccBlock;
349 BlockIdx = std::max<int>(BlockIdx, SuccIdx);
350 FloorIdx = std::min<int>(FloorIdx, SuccIdx);
BranchProbabilityInfo.cpp 1179 for (unsigned SuccIdx = 0; SuccIdx < Probs.size(); ++SuccIdx) {
1180 this->Probs[std::make_pair(Src, SuccIdx)] = Probs[SuccIdx];
1181 LLVM_DEBUG(dbgs() << "set edge " << Src->getName() << " -> " << SuccIdx
1182 << " successor probability to " << Probs[SuccIdx]
1184 TotalNumerator += Probs[SuccIdx].getNumerator();
1207 for (unsigned SuccIdx = 0; SuccIdx < NumSuccessors; ++SuccIdx)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
HardwareLoops.cpp 371 unsigned SuccIdx = ICmp->getPredicate() == ICmpInst::ICMP_NE ? 0 : 1;
372 if (BI->getSuccessor(SuccIdx) != Preheader)
LiveVariables.cpp 743 unsigned SuccIdx = SuccMBB->getNumber();
744 if (VI.AliveBlocks.test(SuccIdx))
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/
VPlan.h 1837 /// Templated helper to dereference successor \p SuccIdx of \p Block. Used by
1839 template <typename T1> static T1 deref(T1 Block, unsigned SuccIdx) {
1841 if (SuccIdx == 0)
1843 SuccIdx--;
1847 return getBlockWithSuccs(Block)->getSuccessors()[SuccIdx];

Completed in 20 milliseconds