Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-profdata/
H A Dllvm-profdata.cpp2068 HottestFuncs(MinCmp); in showInstrProfile() local
2121 if (HottestFuncs.size() == TopN) { in showInstrProfile()
2122 if (HottestFuncs.top().second < FuncMax) { in showInstrProfile()
2123 HottestFuncs.pop(); in showInstrProfile()
2124 HottestFuncs.emplace(std::make_pair(std::string(Func.Name), FuncMax)); in showInstrProfile()
2127 HottestFuncs.emplace(std::make_pair(std::string(Func.Name), FuncMax)); in showInstrProfile()
2199 while (!HottestFuncs.empty()) { in showInstrProfile()
2200 SortedHottestFuncs.emplace_back(HottestFuncs.top()); in showInstrProfile()
2201 HottestFuncs.pop(); in showInstrProfile()