Lines Matching refs:Counts
412 uint64_t CntNum = Record->Counts.size(); in InstrProfileEntry()
415 MaxCount = std::max(MaxCount, Record->Counts[I]); in InstrProfileEntry()
416 ZeroCntNum += !Record->Counts[I]; in InstrProfileEntry()
437 for (size_t I = 0; I < ProfRecord->Counts.size(); ++I) in updateInstrProfileEntry()
438 ProfRecord->Counts[I] = -1; in updateInstrProfileEntry()
2127 assert(Func.Counts.size() > 0 && "function missing entry counter"); in showInstrProfile()
2132 for (size_t I = 0, E = Func.Counts.size(); I < E; ++I) { in showInstrProfile()
2133 if (Func.Counts[I] == (uint64_t)-1) in showInstrProfile()
2135 FuncMax = std::max(FuncMax, Func.Counts[I]); in showInstrProfile()
2136 FuncSum += Func.Counts[I]; in showInstrProfile()
2167 << " Counters: " << Func.Counts.size() << "\n"; in showInstrProfile()
2169 OS << " Function count: " << Func.Counts[0] << "\n"; in showInstrProfile()
2183 for (size_t I = Start, E = Func.Counts.size(); I < E; ++I) { in showInstrProfile()
2184 OS << (I == Start ? "" : ", ") << Func.Counts[I]; in showInstrProfile()