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.cpp2778 HottestFuncs(MinCmp); in showInstrProfile() local
2854 if (HottestFuncs.size() == TopNFunctions) { in showInstrProfile()
2855 if (HottestFuncs.top().second < FuncMax) { in showInstrProfile()
2856 HottestFuncs.pop(); in showInstrProfile()
2857 HottestFuncs.emplace(std::make_pair(std::string(Func.Name), FuncMax)); in showInstrProfile()
2860 HottestFuncs.emplace(std::make_pair(std::string(Func.Name), FuncMax)); in showInstrProfile()
2943 while (!HottestFuncs.empty()) { in showInstrProfile()
2944 SortedHottestFuncs.emplace_back(HottestFuncs.top()); in showInstrProfile()
2945 HottestFuncs.pop(); in showInstrProfile()