Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DMachineBlockPlacement.cpp964 auto BestB = Edges[1].begin(); in getBestNonConflictingEdges() local
967 if (BestA->Src == BestB->Src) { in getBestNonConflictingEdges()
970 auto SecondBestB = std::next(BestB); in getBestNonConflictingEdges()
972 BlockFrequency BestBScore = BestB->Weight + SecondBestA->Weight; in getBestNonConflictingEdges()
976 BestB = SecondBestB; in getBestNonConflictingEdges()
979 if (BestB->Src == BB) in getBestNonConflictingEdges()
980 std::swap(BestA, BestB); in getBestNonConflictingEdges()
981 return std::make_pair(*BestA, *BestB); in getBestNonConflictingEdges()
1027 WeightedEdge BestA, BestB; in getBestTrellisSuccessor() local
1028 std::tie(BestA, BestB) = getBestNonConflictingEdges(BB, Edges); in getBestTrellisSuccessor()
[all …]