Home
last modified time | relevance | path

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

/external/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()
100 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.h43 std::unique_ptr<ZoneStats::StatsScope> scope_;
Dpipeline-statistics.cc20 scope_.reset(new ZoneStats::StatsScope(pipeline_stats->zone_stats_)); in Begin()