• Home
  • Raw
  • Download

Lines Matching full:funcid

66   FUNCID,  enumerator
79 cl::sub(Account), cl::init(SortField::FUNCID),
80 cl::values(clEnumValN(SortField::FUNCID, "funcid", "function id"),
178 ThreadStack.Stack.emplace_back(Record.FuncId, Record.TSC); in accountRecord()
180 ++(*ThreadStack.RecursionDepth)[Record.FuncId]; in accountRecord()
188 if (ThreadStack.Stack.back().first == Record.FuncId) { in accountRecord()
206 return E.first == Record.FuncId; in accountRecord()
314 const auto &FuncId = FT.first; in exportStats() local
316 Results.emplace_back(FuncId, Timings.size(), getStats(Timings)); in exportStats()
328 Row.Function = FuncIdHelper.SymbolOrNumber(FuncId); in exportStats()
329 Row.DebugInfo = FuncIdHelper.FileLineAndColumn(FuncId); in exportStats()
334 case SortField::FUNCID: in exportStats()
379 // - funcid: 32-bit, but we can determine the largest number and be in exportStatsAsText()
398 OS << llvm::formatv(StatsHeaderFormat, "funcid", "count", "min", "med", "90p", in exportStatsAsText()
401 exportStats(Header, [&](int32_t FuncId, size_t Count, const ResultRow &Row) { in exportStatsAsText() argument
402 OS << llvm::formatv(StatsFormat, FuncId, Count, Row.Min, Row.Median, in exportStatsAsText()
410 OS << "funcid,count,min,median,90%ile,99%ile,max,sum,debug,function\n"; in exportStatsAsCSV()
411 exportStats(Header, [&](int32_t FuncId, size_t Count, const ResultRow &Row) { in exportStatsAsCSV() argument
412 OS << FuncId << ',' << Count << ',' << Row.Min << ',' << Row.Median << ',' in exportStatsAsCSV()
489 Record.RecordType, Record.CPU, Record.Type, Record.FuncId, in __anon848c509a0f02()