Lines Matching defs:BestB
1050 auto BestB = Edges[1].begin();
1051 // Arrange for the correct answer to be in BestA and BestB
1053 if (BestA->Src == BestB->Src) {
1056 auto SecondBestB = std::next(BestB);
1058 BlockFrequency BestBScore = BestB->Weight + SecondBestA->Weight;
1062 BestB = SecondBestB;
1065 if (BestB->Src == BB)
1066 std::swap(BestA, BestB);
1067 return std::make_pair(*BestA, *BestB);
1113 WeightedEdge BestA, BestB;
1114 std::tie(BestA, BestB) = getBestNonConflictingEdges(BB, Edges);
1127 if (BestA.Dest == BestB.Src) {
1131 MachineBasicBlock *Succ2 = BestB.Dest;
1149 ComputedEdges[BestB.Src] = {BestB.Dest, false};