Lines Matching defs:BestA
1049 auto BestA = Edges[0].begin();
1051 // Arrange for the correct answer to be in BestA and BestB
1053 if (BestA->Src == BestB->Src) {
1055 auto SecondBestA = std::next(BestA);
1057 BlockFrequency BestAScore = BestA->Weight + SecondBestB->Weight;
1060 BestA = SecondBestA;
1064 // Arrange for the BB edge to be in BestA if it exists.
1066 std::swap(BestA, BestB);
1067 return std::make_pair(*BestA, *BestB);
1113 WeightedEdge BestA, BestB;
1114 std::tie(BestA, BestB) = getBestNonConflictingEdges(BB, Edges);
1116 if (BestA.Src != BB) {
1127 if (BestA.Dest == BestB.Src) {
1130 MachineBasicBlock *Succ1 = BestA.Dest;
1151 auto TrellisSucc = BestA.Dest;