Lines Matching refs:Func
144 for (const auto &Func : *Reader) { in showInstrProfile()
147 Func.Name.find(ShowFunction) != Func.Name.npos); in showInstrProfile()
150 assert(Func.Counts.size() > 0 && "function missing entry counter"); in showInstrProfile()
151 if (Func.Counts[0] > MaxFunctionCount) in showInstrProfile()
152 MaxFunctionCount = Func.Counts[0]; in showInstrProfile()
159 OS << " " << Func.Name << ":\n" in showInstrProfile()
160 << " Hash: " << format("0x%016" PRIx64, Func.Hash) << "\n" in showInstrProfile()
161 << " Counters: " << Func.Counts.size() << "\n" in showInstrProfile()
162 << " Function count: " << Func.Counts[0] << "\n"; in showInstrProfile()
167 for (size_t I = 1, E = Func.Counts.size(); I < E; ++I) { in showInstrProfile()
168 if (Func.Counts[I] > MaxBlockCount) in showInstrProfile()
169 MaxBlockCount = Func.Counts[I]; in showInstrProfile()
171 OS << (I == 1 ? "" : ", ") << Func.Counts[I]; in showInstrProfile()