• Home
  • Raw
  • Download

Lines Matching full:stats

16                                              const BasicStats& stats) {  in RecordPhaseStats()  argument
25 it->second.Accumulate(stats); in RecordPhaseStats()
30 const BasicStats& stats) { in RecordPhaseKindStats() argument
40 it->second.Accumulate(stats); in RecordPhaseKindStats()
45 const BasicStats& stats) { in RecordTotalStats() argument
49 total_stats_.Accumulate(stats); in RecordTotalStats()
53 void CompilationStatistics::BasicStats::Accumulate(const BasicStats& stats) { in Accumulate() argument
54 delta_ += stats.delta_; in Accumulate()
55 total_allocated_bytes_ += stats.total_allocated_bytes_; in Accumulate()
56 if (stats.absolute_max_allocated_bytes_ > absolute_max_allocated_bytes_) { in Accumulate()
57 absolute_max_allocated_bytes_ = stats.absolute_max_allocated_bytes_; in Accumulate()
58 max_allocated_bytes_ = stats.max_allocated_bytes_; in Accumulate()
59 function_name_ = stats.function_name_; in Accumulate()
64 const CompilationStatistics::BasicStats& stats, in WriteLine() argument
69 double ms = stats.delta_.InMillisecondsF(); in WriteLine()
70 double percent = stats.delta_.PercentOf(total_stats.delta_); in WriteLine()
72 static_cast<double>(stats.total_allocated_bytes_ * 100) / in WriteLine()
77 stats.total_allocated_bytes_); in WriteLine()
82 name, ms, percent, stats.total_allocated_bytes_, in WriteLine()
83 size_percent, stats.max_allocated_bytes_, in WriteLine()
84 stats.absolute_max_allocated_bytes_); in WriteLine()
87 if (stats.function_name_.size() > 0) { in WriteLine()
88 os << " " << stats.function_name_.c_str(); in WriteLine()