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 #include "src/compiler.h" | 5 #include "src/compiler.h" |
6 #include "src/compiler/pipeline-statistics.h" | 6 #include "src/compiler/pipeline-statistics.h" |
7 #include "src/compiler/zone-pool.h" | 7 #include "src/compiler/zone-pool.h" |
8 | 8 |
9 namespace v8 { | 9 namespace v8 { |
10 namespace internal { | 10 namespace internal { |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
45 ZonePool* zone_pool) | 45 ZonePool* zone_pool) |
46 : isolate_(info->isolate()), | 46 : isolate_(info->isolate()), |
47 outer_zone_(info->zone()), | 47 outer_zone_(info->zone()), |
48 zone_pool_(zone_pool), | 48 zone_pool_(zone_pool), |
49 compilation_stats_(isolate_->GetTurboStatistics()), | 49 compilation_stats_(isolate_->GetTurboStatistics()), |
50 source_size_(0), | 50 source_size_(0), |
51 phase_kind_name_(NULL), | 51 phase_kind_name_(NULL), |
52 phase_name_(NULL) { | 52 phase_name_(NULL) { |
53 if (info->has_shared_info()) { | 53 if (info->has_shared_info()) { |
54 source_size_ = static_cast<size_t>(info->shared_info()->SourceSize()); | 54 source_size_ = static_cast<size_t>(info->shared_info()->SourceSize()); |
55 SmartArrayPointer<char> name = | 55 base::SmartArrayPointer<char> name = |
56 info->shared_info()->DebugName()->ToCString(); | 56 info->shared_info()->DebugName()->ToCString(); |
57 function_name_ = name.get(); | 57 function_name_ = name.get(); |
58 } | 58 } |
59 total_stats_.Begin(this); | 59 total_stats_.Begin(this); |
60 } | 60 } |
61 | 61 |
62 | 62 |
63 PipelineStatistics::~PipelineStatistics() { | 63 PipelineStatistics::~PipelineStatistics() { |
64 if (InPhaseKind()) EndPhaseKind(); | 64 if (InPhaseKind()) EndPhaseKind(); |
65 CompilationStatistics::BasicStats diff; | 65 CompilationStatistics::BasicStats diff; |
(...skipping 28 matching lines...) Expand all Loading... |
94 void PipelineStatistics::EndPhase() { | 94 void PipelineStatistics::EndPhase() { |
95 DCHECK(InPhaseKind()); | 95 DCHECK(InPhaseKind()); |
96 CompilationStatistics::BasicStats diff; | 96 CompilationStatistics::BasicStats diff; |
97 phase_stats_.End(this, &diff); | 97 phase_stats_.End(this, &diff); |
98 compilation_stats_->RecordPhaseStats(phase_kind_name_, phase_name_, diff); | 98 compilation_stats_->RecordPhaseStats(phase_kind_name_, phase_name_, diff); |
99 } | 99 } |
100 | 100 |
101 } // namespace compiler | 101 } // namespace compiler |
102 } // namespace internal | 102 } // namespace internal |
103 } // namespace v8 | 103 } // namespace v8 |
OLD | NEW |