Lines Matching full:funcid
68 FUNCID, enumerator
81 cl::sub(Account), cl::init(SortField::FUNCID),
82 cl::values(clEnumValN(SortField::FUNCID, "funcid", "function id"),
180 ThreadStack.Stack.emplace_back(Record.FuncId, Record.TSC); in accountRecord()
182 ++(*ThreadStack.RecursionDepth)[Record.FuncId]; in accountRecord()
190 if (ThreadStack.Stack.back().first == Record.FuncId) { in accountRecord()
208 return E.first == Record.FuncId; in accountRecord()
316 const auto &FuncId = FT.first; in exportStats() local
318 Results.emplace_back(FuncId, Timings.size(), getStats(Timings)); in exportStats()
330 Row.Function = FuncIdHelper.SymbolOrNumber(FuncId); in exportStats()
331 Row.DebugInfo = FuncIdHelper.FileLineAndColumn(FuncId); in exportStats()
336 case SortField::FUNCID: in exportStats()
381 // - funcid: 32-bit, but we can determine the largest number and be in exportStatsAsText()
400 OS << llvm::formatv(StatsHeaderFormat, "funcid", "count", "min", "med", "90p", in exportStatsAsText()
403 exportStats(Header, [&](int32_t FuncId, size_t Count, const ResultRow &Row) { in exportStatsAsText() argument
404 OS << llvm::formatv(StatsFormat, FuncId, Count, Row.Min, Row.Median, in exportStatsAsText()
412 OS << "funcid,count,min,median,90%ile,99%ile,max,sum,debug,function\n"; in exportStatsAsCSV()
413 exportStats(Header, [&](int32_t FuncId, size_t Count, const ResultRow &Row) { in exportStatsAsCSV() argument
414 OS << FuncId << ',' << Count << ',' << Row.Min << ',' << Row.Median << ',' in exportStatsAsCSV()
491 Record.RecordType, Record.CPU, Record.Type, Record.FuncId, in __anon09c816560f02()