lin
2025-07-30 fcd736bf35fd93b563e9bbf594f2aa7b62028cc9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
// Copyright 2014 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
 
#ifndef V8_COMPILER_PIPELINE_STATISTICS_H_
#define V8_COMPILER_PIPELINE_STATISTICS_H_
 
#include <memory>
#include <string>
 
#include "src/base/platform/elapsed-timer.h"
#include "src/compilation-statistics.h"
#include "src/compiler/zone-stats.h"
 
namespace v8 {
namespace internal {
namespace compiler {
 
class PhaseScope;
 
class PipelineStatistics : public Malloced {
 public:
  PipelineStatistics(OptimizedCompilationInfo* info,
                     CompilationStatistics* turbo_stats, ZoneStats* zone_stats);
  ~PipelineStatistics();
 
  void BeginPhaseKind(const char* phase_kind_name);
  void EndPhaseKind();
 
 private:
  size_t OuterZoneSize() {
    return static_cast<size_t>(outer_zone_->allocation_size());
  }
 
  class CommonStats {
   public:
    CommonStats() : outer_zone_initial_size_(0) {}
 
    void Begin(PipelineStatistics* pipeline_stats);
    void End(PipelineStatistics* pipeline_stats,
             CompilationStatistics::BasicStats* diff);
 
    std::unique_ptr<ZoneStats::StatsScope> scope_;
    base::ElapsedTimer timer_;
    size_t outer_zone_initial_size_;
    size_t allocated_bytes_at_start_;
 
   private:
    DISALLOW_COPY_AND_ASSIGN(CommonStats);
  };
 
  bool InPhaseKind() { return !!phase_kind_stats_.scope_; }
 
  friend class PhaseScope;
  bool InPhase() { return !!phase_stats_.scope_; }
  void BeginPhase(const char* name);
  void EndPhase();
 
  Zone* outer_zone_;
  ZoneStats* zone_stats_;
  CompilationStatistics* compilation_stats_;
  std::string function_name_;
 
  // Stats for the entire compilation.
  CommonStats total_stats_;
  size_t source_size_;
 
  // Stats for phase kind.
  const char* phase_kind_name_;
  CommonStats phase_kind_stats_;
 
  // Stats for phase.
  const char* phase_name_;
  CommonStats phase_stats_;
 
  DISALLOW_COPY_AND_ASSIGN(PipelineStatistics);
};
 
 
class PhaseScope {
 public:
  PhaseScope(PipelineStatistics* pipeline_stats, const char* name)
      : pipeline_stats_(pipeline_stats) {
    if (pipeline_stats_ != nullptr) pipeline_stats_->BeginPhase(name);
  }
  ~PhaseScope() {
    if (pipeline_stats_ != nullptr) pipeline_stats_->EndPhase();
  }
 
 private:
  PipelineStatistics* const pipeline_stats_;
 
  DISALLOW_COPY_AND_ASSIGN(PhaseScope);
};
 
}  // namespace compiler
}  // namespace internal
}  // namespace v8
 
#endif  // V8_COMPILER_PIPELINE_STATISTICS_H_