Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/Transforms/IPO/
H A DSampleProfile.cpp2178 SmallVector<std::pair<StringRef, uint64_t>> ProfStatsVec; in detectProfileMismatch() local
2180 ProfStatsVec.emplace_back("NumMismatchedFuncHash", NumMismatchedFuncHash); in detectProfileMismatch()
2181 ProfStatsVec.emplace_back("TotalProfiledFunc", TotalProfiledFunc); in detectProfileMismatch()
2182 ProfStatsVec.emplace_back("MismatchedFuncHashSamples", in detectProfileMismatch()
2184 ProfStatsVec.emplace_back("TotalFuncHashSamples", TotalFuncHashSamples); in detectProfileMismatch()
2187 ProfStatsVec.emplace_back("NumMismatchedCallsites", NumMismatchedCallsites); in detectProfileMismatch()
2188 ProfStatsVec.emplace_back("TotalProfiledCallsites", TotalProfiledCallsites); in detectProfileMismatch()
2189 ProfStatsVec.emplace_back("MismatchedCallsiteSamples", in detectProfileMismatch()
2191 ProfStatsVec.emplace_back("TotalCallsiteSamples", TotalCallsiteSamples); in detectProfileMismatch()
2193 auto *MD = MDB.createLLVMStats(ProfStatsVec); in detectProfileMismatch()