Lines Matching refs:NumCalls

944     const std::vector<Callsite> &Targets, uint64_t NumCalls) {  in canPromoteCallsite()  argument
962 if (Targets.empty() || !NumCalls) { in canPromoteCallsite()
966 << BB.getName() << ", calls = " << NumCalls in canPromoteCallsite()
994 Threshold -= (100.0 * Targets[I].Mispreds) / NumCalls; in canPromoteCallsite()
1002 const double TopNFrequency = (100.0 * TotalMispredictsTopN) / NumCalls; in canPromoteCallsite()
1007 << " in " << BB.getName() << ", calls = " << NumCalls in canPromoteCallsite()
1025 uint64_t NumRemainingCalls = NumCalls; in canPromoteCallsite()
1027 if (100 * Targets[I].Branches < NumCalls * TotalThreshold) in canPromoteCallsite()
1047 (100.0 * TotalMispredictsTopN) / NumCalls; in canPromoteCallsite()
1053 << " in " << BB.getName() << ", calls = " << NumCalls in canPromoteCallsite()
1091 uint64_t NumCalls) const { in printCallsiteInfo()
1099 << " -> calls = " << NumCalls in printCallsiteInfo()
1103 const double Frequency = 100.0 * Targets[I].Branches / NumCalls; in printCallsiteInfo()
1104 const double MisFrequency = 100.0 * Targets[I].Mispreds / NumCalls; in printCallsiteInfo()
1181 uint64_t NumCalls = 0; in runOnFunctions() local
1183 NumCalls += BInfo.Branches; in runOnFunctions()
1185 std::make_tuple(NumCalls, &Inst, &Function)); in runOnFunctions()
1186 TotalIndirectCalls += NumCalls; in runOnFunctions()
1278 uint64_t NumCalls = 0; in runOnFunctions() local
1280 NumCalls += BInfo.Branches; in runOnFunctions()
1282 FuncTotalIndirectCalls += NumCalls; in runOnFunctions()
1284 FuncTotalIndirectJmps += NumCalls; in runOnFunctions()
1295 << ", calls = " << NumCalls in runOnFunctions()
1305 size_t N = canPromoteCallsite(*BB, Inst, Targets, NumCalls); in runOnFunctions()
1314 printCallsiteInfo(*BB, Inst, Targets, N, NumCalls); in runOnFunctions()
1335 << ", calls = " << NumCalls in runOnFunctions()
1368 << ", calls = " << NumCalls in runOnFunctions()
1404 << " -> calls = " << NumCalls << "\n"; in runOnFunctions()