Home | History | Annotate | Download | only in llvm-profdata

Lines Matching refs:Counts

64               Writer.addFunctionCounts(I.Name, I.Hash, I.Counts))
78 cl::opt<bool> ShowCounts("counts", cl::init(false),
116 assert(Func.Counts.size() > 0 && "function missing entry counter");
117 if (Func.Counts[0] > MaxFunctionCount)
118 MaxFunctionCount = Func.Counts[0];
127 << " Counters: " << Func.Counts.size() << "\n"
128 << " Function count: " << Func.Counts[0] << "\n";
132 OS << " Block counts: [";
133 for (size_t I = 1, E = Func.Counts.size(); I < E; ++I) {
134 if (Func.Counts[I] > MaxBlockCount)
135 MaxBlockCount = Func.Counts[I];
137 OS << (I == 1 ? "" : ", ") << Func.Counts[I];