HomeSort by relevance Sort by last modified time
    Searched refs:ZonePool (Results 1 - 6 of 6) sorted by null

  /external/v8/src/compiler/
zone-pool.h 18 class ZonePool final {
22 explicit Scope(ZonePool* zone_pool)
36 ZonePool* const zone_pool_;
43 explicit StatsScope(ZonePool* zone_pool);
51 friend class ZonePool;
56 ZonePool* const zone_pool_;
64 ZonePool();
65 ~ZonePool();
86 DISALLOW_COPY_AND_ASSIGN(ZonePool);
zone-pool.cc 11 ZonePool::StatsScope::StatsScope(ZonePool* zone_pool)
26 ZonePool::StatsScope::~StatsScope() {
32 size_t ZonePool::StatsScope::GetMaxAllocatedBytes() {
37 size_t ZonePool::StatsScope::GetCurrentAllocatedBytes() {
51 size_t ZonePool::StatsScope::GetTotalAllocatedBytes() {
56 void ZonePool::StatsScope::ZoneReturned(Zone* zone) {
68 ZonePool::ZonePool() : max_allocated_bytes_(0), total_deleted_bytes_(0) {}
71 ZonePool::~ZonePool()
    [all...]
pipeline-statistics.h 21 PipelineStatistics(CompilationInfo* info, ZonePool* zone_pool);
39 base::SmartPointer<ZonePool::StatsScope> scope_;
55 ZonePool* zone_pool_;
pipeline-statistics.cc 16 scope_.Reset(new ZonePool::StatsScope(pipeline_stats->zone_pool_));
45 ZonePool* zone_pool)
pipeline.cc 77 PipelineData(ZonePool* zone_pool, CompilationInfo* info,
117 PipelineData(ZonePool* zone_pool, CompilationInfo* info, Graph* graph,
146 PipelineData(ZonePool* zone_pool, CompilationInfo* info,
181 ZonePool* zone_pool() const { return zone_pool_; }
301 ZonePool* const zone_pool_;
308 ZonePool::Scope graph_zone_scope_;
326 ZonePool::Scope instruction_zone_scope_;
334 ZonePool::Scope register_allocation_zone_scope_;
460 ZonePool::Scope zone_scope_;
    [all...]
  /external/v8/test/unittests/compiler/
zone-pool-unittest.cc 18 ZonePool* zone_pool() { return &zone_pool_; }
26 void Expect(ZonePool::StatsScope* stats, size_t current, size_t max,
41 ZonePool zone_pool_;
49 ZonePool::StatsScope stats(zone_pool());
54 ZonePool::Scope scope(zone_pool());
64 ZonePool::Scope* scopes[kArraySize];
69 scopes[i] = new ZonePool::Scope(zone_pool());
75 ZonePool::StatsScope stats(zone_pool());
89 scopes[i] = new ZonePool::Scope(zone_pool());
123 ZonePool::StatsScope outer_stats(zone_pool())
    [all...]

Completed in 87 milliseconds