Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-profdata/
H A Dllvm-profdata.cpp2719 HottestFuncs(MinCmp); in showInstrProfile() local
2795 if (HottestFuncs.size() == TopNFunctions) { in showInstrProfile()
2796 if (HottestFuncs.top().second < FuncMax) { in showInstrProfile()
2797 HottestFuncs.pop(); in showInstrProfile()
2798 HottestFuncs.emplace(std::make_pair(std::string(Func.Name), FuncMax)); in showInstrProfile()
2801 HottestFuncs.emplace(std::make_pair(std::string(Func.Name), FuncMax)); in showInstrProfile()
2873 while (!HottestFuncs.empty()) { in showInstrProfile()
2874 SortedHottestFuncs.emplace_back(HottestFuncs.top()); in showInstrProfile()
2875 HottestFuncs.pop(); in showInstrProfile()