Lines Matching refs:Counts
1019 uint64_t CntNum = Record->Counts.size(); in InstrProfileEntry()
1022 MaxCount = std::max(MaxCount, Record->Counts[I]); in InstrProfileEntry()
1023 ZeroCntNum += !Record->Counts[I]; in InstrProfileEntry()
2807 assert(Func.Counts.size() > 0 && "function missing entry counter"); in showInstrProfile()
2811 if (llvm::any_of(Func.Counts, [](uint64_t C) { return C; })) in showInstrProfile()
2827 << " Counters: " << Func.Counts.size(); in showInstrProfile()
2838 for (size_t I = 0, E = Func.Counts.size(); I < E; ++I) { in showInstrProfile()
2839 FuncMax = std::max(FuncMax, Func.Counts[I]); in showInstrProfile()
2840 FuncSum += Func.Counts[I]; in showInstrProfile()
2871 << " Counters: " << Func.Counts.size() << "\n"; in showInstrProfile()
2873 OS << " Function count: " << Func.Counts[0] << "\n"; in showInstrProfile()
2891 for (size_t I = Start, E = Func.Counts.size(); I < E; ++I) { in showInstrProfile()
2892 OS << (I == Start ? "" : ", ") << Func.Counts[I]; in showInstrProfile()