Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/tools/llvm-profdata/
H A Dllvm-profdata.cpp2874 HottestFuncs(MinCmp); in showInstrProfile() local
2950 if (HottestFuncs.size() == TopNFunctions) { in showInstrProfile()
2951 if (HottestFuncs.top().second < FuncMax) { in showInstrProfile()
2952 HottestFuncs.pop(); in showInstrProfile()
2953 HottestFuncs.emplace(std::make_pair(std::string(Func.Name), FuncMax)); in showInstrProfile()
2956 HottestFuncs.emplace(std::make_pair(std::string(Func.Name), FuncMax)); in showInstrProfile()
3039 while (!HottestFuncs.empty()) { in showInstrProfile()
3040 SortedHottestFuncs.emplace_back(HottestFuncs.top()); in showInstrProfile()
3041 HottestFuncs.pop(); in showInstrProfile()