OLD | NEW |
1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef V8_COMPILER_PIPELINE_STATISTICS_H_ | 5 #ifndef V8_COMPILER_PIPELINE_STATISTICS_H_ |
6 #define V8_COMPILER_PIPELINE_STATISTICS_H_ | 6 #define V8_COMPILER_PIPELINE_STATISTICS_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "src/compilation-statistics.h" | 10 #include "src/compilation-statistics.h" |
(...skipping 18 matching lines...) Expand all Loading... |
29 } | 29 } |
30 | 30 |
31 class CommonStats { | 31 class CommonStats { |
32 public: | 32 public: |
33 CommonStats() : outer_zone_initial_size_(0) {} | 33 CommonStats() : outer_zone_initial_size_(0) {} |
34 | 34 |
35 void Begin(PipelineStatistics* pipeline_stats); | 35 void Begin(PipelineStatistics* pipeline_stats); |
36 void End(PipelineStatistics* pipeline_stats, | 36 void End(PipelineStatistics* pipeline_stats, |
37 CompilationStatistics::BasicStats* diff); | 37 CompilationStatistics::BasicStats* diff); |
38 | 38 |
39 SmartPointer<ZonePool::StatsScope> scope_; | 39 base::SmartPointer<ZonePool::StatsScope> scope_; |
40 base::ElapsedTimer timer_; | 40 base::ElapsedTimer timer_; |
41 size_t outer_zone_initial_size_; | 41 size_t outer_zone_initial_size_; |
42 size_t allocated_bytes_at_start_; | 42 size_t allocated_bytes_at_start_; |
43 }; | 43 }; |
44 | 44 |
45 bool InPhaseKind() { return !phase_kind_stats_.scope_.is_empty(); } | 45 bool InPhaseKind() { return !phase_kind_stats_.scope_.is_empty(); } |
46 void EndPhaseKind(); | 46 void EndPhaseKind(); |
47 | 47 |
48 friend class PhaseScope; | 48 friend class PhaseScope; |
49 bool InPhase() { return !phase_stats_.scope_.is_empty(); } | 49 bool InPhase() { return !phase_stats_.scope_.is_empty(); } |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
86 PipelineStatistics* const pipeline_stats_; | 86 PipelineStatistics* const pipeline_stats_; |
87 | 87 |
88 DISALLOW_COPY_AND_ASSIGN(PhaseScope); | 88 DISALLOW_COPY_AND_ASSIGN(PhaseScope); |
89 }; | 89 }; |
90 | 90 |
91 } // namespace compiler | 91 } // namespace compiler |
92 } // namespace internal | 92 } // namespace internal |
93 } // namespace v8 | 93 } // namespace v8 |
94 | 94 |
95 #endif | 95 #endif |
OLD | NEW |