Lines Matching defs:Succs
3334 SmallVector<MachineBasicBlock *, 8> Succs(BB->successors());
3343 llvm::stable_sort(Succs, CmpSucc);
3346 auto SuccIt = Succs.begin();
3347 if (SuccIt != Succs.end()) {
3400 if (SuccIt != Succs.end())
3408 if (SuccIt == Succs.end()) {
3410 if (Succs.size() > 0)
3422 if (SuccIt != Succs.end())
3622 SmallVector<const MachineBasicBlock *, 4> Succs;
3646 // Succs is a collection of distinct destinations of the block reachable
3649 Succs.clear();
3651 Succs.push_back(TBB);
3653 Succs.push_back(FBB);
3655 Succs.push_back(FTB);
3659 const uint64_t Freq = Succs.size() == 1 ? 110 : 100;
3660 for (const MachineBasicBlock *Succ : Succs)