Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/tools/llvm-profdata/
H A Dllvm-profdata.cpp2170 HottestFuncs(MinCmp); in showInstrProfile() local
2228 if (HottestFuncs.size() == TopN) { in showInstrProfile()
2229 if (HottestFuncs.top().second < FuncMax) { in showInstrProfile()
2230 HottestFuncs.pop(); in showInstrProfile()
2231 HottestFuncs.emplace(std::make_pair(std::string(Func.Name), FuncMax)); in showInstrProfile()
2234 HottestFuncs.emplace(std::make_pair(std::string(Func.Name), FuncMax)); in showInstrProfile()
2306 while (!HottestFuncs.empty()) { in showInstrProfile()
2307 SortedHottestFuncs.emplace_back(HottestFuncs.top()); in showInstrProfile()
2308 HottestFuncs.pop(); in showInstrProfile()