Home
last modified time | relevance | path

Searched refs:StatsScope (Results 1 – 4 of 4) sorted by relevance

/third_party/node/deps/v8/src/compiler/
Dzone-stats.cc13 ZoneStats::StatsScope::StatsScope(ZoneStats* zone_stats) in StatsScope() function in v8::internal::compiler::ZoneStats::StatsScope
27 ZoneStats::StatsScope::~StatsScope() { in ~StatsScope()
32 size_t ZoneStats::StatsScope::GetMaxAllocatedBytes() { in GetMaxAllocatedBytes()
36 size_t ZoneStats::StatsScope::GetCurrentAllocatedBytes() { in GetCurrentAllocatedBytes()
49 size_t ZoneStats::StatsScope::GetTotalAllocatedBytes() { in GetTotalAllocatedBytes()
54 void ZoneStats::StatsScope::ZoneReturned(Zone* zone) { in ZoneReturned()
101 for (StatsScope* stat_scope : stats_) { in ReturnZone()
Dzone-stats.h53 class V8_EXPORT_PRIVATE V8_NODISCARD StatsScope final {
55 explicit StatsScope(ZoneStats* zone_stats);
56 ~StatsScope();
57 StatsScope(const StatsScope&) = delete;
58 StatsScope& operator=(const StatsScope&) = delete;
91 using Stats = std::vector<StatsScope*>;
Dpipeline-statistics.h55 std::unique_ptr<ZoneStats::StatsScope> scope_;
Dpipeline-statistics.cc23 scope_.reset(new ZoneStats::StatsScope(pipeline_stats->zone_stats_)); in Begin()