Lines Matching +full:second +full:- +full:order
1 //===--- SyntheticCountsUtils.cpp - synthetic counts propagation utils ---===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
11 //===----------------------------------------------------------------------===//
48 // This ensures that the order of in propagateFromSCC()
53 auto OptProfCount = GetProfCount(E.first, E.second); in propagateFromSCC()
56 auto Callee = CGT::edge_dest(E.second); in propagateFromSCC()
62 AddCount(Entry.first, Entry.second); in propagateFromSCC()
66 auto OptProfCount = GetProfCount(E.first, E.second); in propagateFromSCC()
69 auto Callee = CGT::edge_dest(E.second); in propagateFromSCC()
76 /// This performs a reverse post-order traversal of the callgraph SCC. For each
92 // The callgraph-scc needs to be visited in top-down order for propagation. in propagate()
93 // The scc iterator returns the scc in bottom-up order, so reverse the SCCs in propagate()