Lines Matching refs:Counts
961 uint64_t CntNum = Record->Counts.size(); in InstrProfileEntry()
964 MaxCount = std::max(MaxCount, Record->Counts[I]); in InstrProfileEntry()
965 ZeroCntNum += !Record->Counts[I]; in InstrProfileEntry()
2748 assert(Func.Counts.size() > 0 && "function missing entry counter"); in showInstrProfile()
2752 if (llvm::any_of(Func.Counts, [](uint64_t C) { return C; })) in showInstrProfile()
2768 << " Counters: " << Func.Counts.size(); in showInstrProfile()
2779 for (size_t I = 0, E = Func.Counts.size(); I < E; ++I) { in showInstrProfile()
2780 FuncMax = std::max(FuncMax, Func.Counts[I]); in showInstrProfile()
2781 FuncSum += Func.Counts[I]; in showInstrProfile()
2812 << " Counters: " << Func.Counts.size() << "\n"; in showInstrProfile()
2814 OS << " Function count: " << Func.Counts[0] << "\n"; in showInstrProfile()
2828 for (size_t I = Start, E = Func.Counts.size(); I < E; ++I) { in showInstrProfile()
2829 OS << (I == Start ? "" : ", ") << Func.Counts[I]; in showInstrProfile()