Home
last modified time | relevance | path

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

/external/v8/src/compiler/
Dzone-stats.cc11 ZoneStats::StatsScope::StatsScope(ZoneStats* zone_stats) in StatsScope() function in v8::internal::compiler::ZoneStats::StatsScope
25 ZoneStats::StatsScope::~StatsScope() { in ~StatsScope()
30 size_t ZoneStats::StatsScope::GetMaxAllocatedBytes() { in GetMaxAllocatedBytes()
34 size_t ZoneStats::StatsScope::GetCurrentAllocatedBytes() { in GetCurrentAllocatedBytes()
47 size_t ZoneStats::StatsScope::GetTotalAllocatedBytes() { in GetTotalAllocatedBytes()
52 void ZoneStats::StatsScope::ZoneReturned(Zone* zone) { in ZoneReturned()
98 for (StatsScope* stat_scope : stats_) { in ReturnZone()
Dzone-stats.h43 class V8_EXPORT_PRIVATE StatsScope final {
45 explicit StatsScope(ZoneStats* zone_stats);
46 ~StatsScope();
63 DISALLOW_COPY_AND_ASSIGN(StatsScope);
79 typedef std::vector<StatsScope*> Stats;
Dpipeline-statistics.h42 std::unique_ptr<ZoneStats::StatsScope> scope_;
Dpipeline-statistics.cc19 scope_.reset(new ZoneStats::StatsScope(pipeline_stats->zone_stats_)); in Begin()