• Home
  • Raw
  • Download

Lines Matching full:stats

17                                              const BasicStats& stats) {  in RecordPhaseStats()  argument
26 it->second.Accumulate(stats); in RecordPhaseStats()
30 const BasicStats& stats) { in RecordPhaseKindStats() argument
41 it->second.Accumulate(stats); in RecordPhaseKindStats()
44 void CompilationStatistics::RecordTotalStats(const BasicStats& stats) { in RecordTotalStats() argument
46 total_stats_.Accumulate(stats); in RecordTotalStats()
49 void CompilationStatistics::BasicStats::Accumulate(const BasicStats& stats) { in Accumulate() argument
50 delta_ += stats.delta_; in Accumulate()
51 total_allocated_bytes_ += stats.total_allocated_bytes_; in Accumulate()
52 if (stats.absolute_max_allocated_bytes_ > absolute_max_allocated_bytes_) { in Accumulate()
53 absolute_max_allocated_bytes_ = stats.absolute_max_allocated_bytes_; in Accumulate()
54 max_allocated_bytes_ = stats.max_allocated_bytes_; in Accumulate()
55 function_name_ = stats.function_name_; in Accumulate()
83 const CompilationStatistics::BasicStats& stats, in WriteLine() argument
88 double ms = stats.delta_.InMillisecondsF(); in WriteLine()
89 double percent = stats.delta_.PercentOf(total_stats.delta_); in WriteLine()
91 static_cast<double>(stats.total_allocated_bytes_ * 100) / in WriteLine()
96 stats.total_allocated_bytes_); in WriteLine()
101 name, ms, percent, stats.total_allocated_bytes_, in WriteLine()
102 size_percent, stats.max_allocated_bytes_, in WriteLine()
103 stats.absolute_max_allocated_bytes_); in WriteLine()
106 if (!stats.function_name_.empty()) { in WriteLine()
107 os << " " << stats.function_name_.c_str(); in WriteLine()