Home
last modified time | relevance | path

Searched refs:BestB (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineBlockPlacement.cpp1035 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()
[all …]