Lines Matching defs:BestA
1034 auto BestA = Edges[0].begin();
1036 // Arrange for the correct answer to be in BestA and BestB
1038 if (BestA->Src == BestB->Src) {
1040 auto SecondBestA = std::next(BestA);
1042 BlockFrequency BestAScore = BestA->Weight + SecondBestB->Weight;
1045 BestA = SecondBestA;
1049 // Arrange for the BB edge to be in BestA if it exists.
1051 std::swap(BestA, BestB);
1052 return std::make_pair(*BestA, *BestB);
1098 WeightedEdge BestA, BestB;
1099 std::tie(BestA, BestB) = getBestNonConflictingEdges(BB, Edges);
1101 if (BestA.Src != BB) {
1112 if (BestA.Dest == BestB.Src) {
1115 MachineBasicBlock *Succ1 = BestA.Dest;
1136 auto TrellisSucc = BestA.Dest;