Home
last modified time | relevance | path

Searched refs:getSuccessors (Results 1 – 8 of 8) sorted by relevance

/openbsd/gnu/llvm/llvm/lib/Transforms/Vectorize/
H A DVPlanCFG.h59 return getBlockWithSuccs(Block)->getSuccessors()[SuccIdx]; in deref()
182 return N->getSuccessors().begin();
186 return N->getSuccessors().end();
201 return N->getSuccessors().begin();
205 return N->getSuccessors().end();
H A DVPlanVerifier.cpp61 const auto &Successors = VPB->getSuccessors(); in verifyBlocksInRegion()
88 const auto &PredSuccs = Pred->getSuccessors(); in verifyBlocksInRegion()
H A DVPlanTransforms.cpp117 if (!VPR->isReplicator() || EntryVPBB->getSuccessors().size() != 2) in sinkScalarOperands()
119 VPBasicBlock *VPBB = dyn_cast<VPBasicBlock>(EntryVPBB->getSuccessors()[0]); in sinkScalarOperands()
213 auto *Succ0 = dyn_cast<VPBasicBlock>(EntryBB->getSuccessors()[0]); in getPredicatedThenBlock()
214 auto *Succ1 = dyn_cast<VPBasicBlock>(EntryBB->getSuccessors()[1]); in getPredicatedThenBlock()
H A DVPlan.h487 const VPBlocksTy &getSuccessors() const { return Successors; } in getSuccessors() function
488 VPBlocksTy &getSuccessors() { return Successors; } in getSuccessors() function
528 return getEnclosingBlockWithSuccessors()->getSuccessors(); in getHierarchicalSuccessors()
2081 assert(Exiting->getSuccessors().empty() && "Exit block has successors."); in VPBlockBase()
2120 assert(ExitingBlock->getSuccessors().empty() && in setExiting()
2483 assert(NewBlock->getSuccessors().empty() && in insertBlockAfter()
2503 assert(IfTrue->getSuccessors().empty() && in insertTwoBlocksAfter()
2505 assert(IfFalse->getSuccessors().empty() && in insertTwoBlocksAfter()
H A DVPlan.cpp481 if (getSuccessors().empty()) { in printSuccessors()
486 for (auto *Succ : getSuccessors()) in printSuccessors()
918 auto &Successors = Block->getSuccessors(); in dumpEdges()
H A DLoopVectorize.cpp9031 cast<VPBasicBlock>(TargetRegion->getSuccessors().front()); in buildVPlanWithVPRecipes()
/openbsd/gnu/llvm/llvm/include/llvm/Transforms/Utils/
H A DSampleProfileLoaderBaseImpl.h73 static succ_range getSuccessors(BasicBlock *BB) { return successors(BB); }
127 SuccRangeT getSuccessors(BasicBlockT *BB) {
128 return afdo_detail::IRTraits<BT>::getSuccessors(BB);
730 for (auto *B2 : getSuccessors(B1))
/openbsd/gnu/llvm/llvm/lib/CodeGen/
H A DMIRSampleProfile.cpp114 static SuccRangeT getSuccessors(MachineBasicBlock *BB) { in getSuccessors() function