Lines Matching refs:BestA
1034 auto BestA = Edges[0].begin(); in getBestNonConflictingEdges() local
1038 if (BestA->Src == BestB->Src) { in getBestNonConflictingEdges()
1040 auto SecondBestA = std::next(BestA); in getBestNonConflictingEdges()
1042 BlockFrequency BestAScore = BestA->Weight + SecondBestB->Weight; in getBestNonConflictingEdges()
1045 BestA = SecondBestA; in getBestNonConflictingEdges()
1051 std::swap(BestA, BestB); in getBestNonConflictingEdges()
1052 return std::make_pair(*BestA, *BestB); in getBestNonConflictingEdges()
1098 WeightedEdge BestA, BestB; in getBestTrellisSuccessor() local
1099 std::tie(BestA, BestB) = getBestNonConflictingEdges(BB, Edges); in getBestTrellisSuccessor()
1101 if (BestA.Src != BB) { in getBestTrellisSuccessor()
1112 if (BestA.Dest == BestB.Src) { in getBestTrellisSuccessor()
1115 MachineBasicBlock *Succ1 = BestA.Dest; in getBestTrellisSuccessor()
1136 auto TrellisSucc = BestA.Dest; in getBestTrellisSuccessor()