Lines Matching refs:BestB
1035 auto BestB = Edges[1].begin(); in getBestNonConflictingEdges() local
1038 if (BestA->Src == BestB->Src) { in getBestNonConflictingEdges()
1041 auto SecondBestB = std::next(BestB); in getBestNonConflictingEdges()
1043 BlockFrequency BestBScore = BestB->Weight + SecondBestA->Weight; in getBestNonConflictingEdges()
1047 BestB = SecondBestB; in getBestNonConflictingEdges()
1050 if (BestB->Src == BB) 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()
1112 if (BestA.Dest == BestB.Src) { in getBestTrellisSuccessor()
1116 MachineBasicBlock *Succ2 = BestB.Dest; in getBestTrellisSuccessor()
1134 ComputedEdges[BestB.Src] = { BestB.Dest, false }; in getBestTrellisSuccessor()