reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Transforms/Vectorize/LoopVectorize.cpp
 6966   assert(VPBB->getSuccessors().empty() &&
lib/Transforms/Vectorize/VPlan.cpp
  125     auto &PredVPSuccessors = PredVPBB->getSuccessors();
lib/Transforms/Vectorize/VPlan.h
  464     return getEnclosingBlockWithSuccessors()->getSuccessors();
 1089     assert(Exit->getSuccessors().empty() && "Exit block has successors.");
 1131     assert(ExitBlock->getSuccessors().empty() &&
 1346     return N->getSuccessors().begin();
 1350     return N->getSuccessors().end();
 1466     assert(NewBlock->getSuccessors().empty() &&
 1484     assert(IfTrue->getSuccessors().empty() &&
 1486     assert(IfFalse->getSuccessors().empty() &&
 1544     for (VPBlockBase *SuccBlock : PredBlock->getSuccessors()) {
lib/Transforms/Vectorize/VPlanPredicator.cpp
  120   for (VPBlockBase *SuccBlock : FromBlock->getSuccessors()) {
unittests/Transforms/Vectorize/VPlanDominatorTreeTest.cpp
   51   VPBlockBase *IfThen = H->getSuccessors()[0];
   52   VPBlockBase *IfElse = H->getSuccessors()[1];
   54   VPBlockBase *Exit = Latch->getSuccessors()[0] != H
   55                           ? Latch->getSuccessors()[0]
   56                           : Latch->getSuccessors()[1];
unittests/Transforms/Vectorize/VPlanLoopInfoTest.cpp
   53   VPBlockBase *IfThen = H->getSuccessors()[0];
   54   VPBlockBase *IfElse = H->getSuccessors()[1];
   56   VPBlockBase *Exit = Latch->getSuccessors()[0] != H
   57                           ? Latch->getSuccessors()[0]
   58                           : Latch->getSuccessors()[1];
unittests/Transforms/Vectorize/VPlanPredicatorTest.cpp
   73   VPBlockBase *OuterIf = InnerLoopH->getSuccessors()[0];
   74   VPBlockBase *InnerLoopLatch = InnerLoopH->getSuccessors()[1];
   75   VPBlockBase *InnerIf = OuterIf->getSuccessors()[0];
  167   VPBlockBase *InnerIfCmpBlk = OuterIfCmpBlk->getSuccessors()[0];
  168   VPBlockBase *InnerIfTSucc = InnerIfCmpBlk->getSuccessors()[0];
  169   VPBlockBase *InnerIfFSucc = InnerIfCmpBlk->getSuccessors()[1];