blob: 2686ff74edb28d646c23dc03db4fe9220ae717f5 [file] [log] [blame]
Emily Bernierd0a1eb72015-03-24 16:35:39 -04001// Copyright 2014 the V8 project authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include <ostream> // NOLINT(readability/streams)
6#include <vector>
7
8#include "src/base/platform/platform.h"
9#include "src/compilation-statistics.h"
10
11namespace v8 {
12namespace internal {
13
14void CompilationStatistics::RecordPhaseStats(const char* phase_kind_name,
15 const char* phase_name,
16 const BasicStats& stats) {
17 std::string phase_name_str(phase_name);
18 auto it = phase_map_.find(phase_name_str);
19 if (it == phase_map_.end()) {
20 PhaseStats phase_stats(phase_map_.size(), phase_kind_name);
21 it = phase_map_.insert(std::make_pair(phase_name_str, phase_stats)).first;
22 }
23 it->second.Accumulate(stats);
24}
25
26
27void CompilationStatistics::RecordPhaseKindStats(const char* phase_kind_name,
28 const BasicStats& stats) {
29 std::string phase_kind_name_str(phase_kind_name);
30 auto it = phase_kind_map_.find(phase_kind_name_str);
31 if (it == phase_kind_map_.end()) {
32 PhaseKindStats phase_kind_stats(phase_kind_map_.size());
33 it = phase_kind_map_.insert(std::make_pair(phase_kind_name_str,
34 phase_kind_stats)).first;
35 }
36 it->second.Accumulate(stats);
37}
38
39
40void CompilationStatistics::RecordTotalStats(size_t source_size,
41 const BasicStats& stats) {
42 source_size += source_size;
43 total_stats_.Accumulate(stats);
44}
45
46
47void CompilationStatistics::BasicStats::Accumulate(const BasicStats& stats) {
48 delta_ += stats.delta_;
49 total_allocated_bytes_ += stats.total_allocated_bytes_;
50 if (stats.absolute_max_allocated_bytes_ > absolute_max_allocated_bytes_) {
51 absolute_max_allocated_bytes_ = stats.absolute_max_allocated_bytes_;
52 max_allocated_bytes_ = stats.max_allocated_bytes_;
53 function_name_ = stats.function_name_;
54 }
55}
56
57
58static void WriteLine(std::ostream& os, const char* name,
59 const CompilationStatistics::BasicStats& stats,
60 const CompilationStatistics::BasicStats& total_stats) {
61 const size_t kBufferSize = 128;
62 char buffer[kBufferSize];
63
64 double ms = stats.delta_.InMillisecondsF();
65 double percent = stats.delta_.PercentOf(total_stats.delta_);
66 double size_percent =
67 static_cast<double>(stats.total_allocated_bytes_ * 100) /
68 static_cast<double>(total_stats.total_allocated_bytes_);
69 base::OS::SNPrintF(buffer, kBufferSize,
70 "%28s %10.3f ms / %5.1f %%"
71 "%10u total / %5.1f %% "
72 "%10u max %10u abs_max",
73 name, ms, percent, stats.total_allocated_bytes_,
74 size_percent, stats.max_allocated_bytes_,
75 stats.absolute_max_allocated_bytes_);
76
77 os << buffer;
78 if (stats.function_name_.size() > 0) {
79 os << " : " << stats.function_name_.c_str();
80 }
81 os << std::endl;
82}
83
84
85static void WriteFullLine(std::ostream& os) {
86 os << "--------------------------------------------------------"
87 "--------------------------------------------------------\n";
88}
89
90
91static void WriteHeader(std::ostream& os) {
92 WriteFullLine(os);
93 os << " Turbofan timing results:\n";
94 WriteFullLine(os);
95}
96
97
98static void WritePhaseKindBreak(std::ostream& os) {
99 os << " ---------------------------"
100 "--------------------------------------------------------\n";
101}
102
103
104std::ostream& operator<<(std::ostream& os, const CompilationStatistics& s) {
105 // phase_kind_map_ and phase_map_ don't get mutated, so store a bunch of
106 // pointers into them.
107
108 typedef std::vector<CompilationStatistics::PhaseKindMap::const_iterator>
109 SortedPhaseKinds;
110 SortedPhaseKinds sorted_phase_kinds(s.phase_kind_map_.size());
111 for (auto it = s.phase_kind_map_.begin(); it != s.phase_kind_map_.end();
112 ++it) {
113 sorted_phase_kinds[it->second.insert_order_] = it;
114 }
115
116 typedef std::vector<CompilationStatistics::PhaseMap::const_iterator>
117 SortedPhases;
118 SortedPhases sorted_phases(s.phase_map_.size());
119 for (auto it = s.phase_map_.begin(); it != s.phase_map_.end(); ++it) {
120 sorted_phases[it->second.insert_order_] = it;
121 }
122
123 WriteHeader(os);
124 for (auto phase_kind_it : sorted_phase_kinds) {
125 const auto& phase_kind_name = phase_kind_it->first;
126 for (auto phase_it : sorted_phases) {
127 const auto& phase_stats = phase_it->second;
128 if (phase_stats.phase_kind_name_ != phase_kind_name) continue;
129 const auto& phase_name = phase_it->first;
130 WriteLine(os, phase_name.c_str(), phase_stats, s.total_stats_);
131 }
132 WritePhaseKindBreak(os);
133 const auto& phase_kind_stats = phase_kind_it->second;
134 WriteLine(os, phase_kind_name.c_str(), phase_kind_stats, s.total_stats_);
135 os << std::endl;
136 }
137 WriteFullLine(os);
138 WriteLine(os, "totals", s.total_stats_, s.total_stats_);
139
140 return os;
141}
142
143} // namespace internal
144} // namespace v8