Searched refs:MemStats (Results 1 – 5 of 5) sorted by relevance
/art/compiler/utils/ |
D | arena_allocator.h | 36 class MemStats; variable 188 MemStats GetMemStats() const; 206 class MemStats { 208 MemStats(const char* name, const ArenaAllocatorStats* stats, const Arena* first_arena,
|
D | arena_allocator.cc | 255 MemStats::MemStats(const char* name, const ArenaAllocatorStats* stats, const Arena* first_arena, in MemStats() function in art::MemStats 263 void MemStats::Dump(std::ostream& os) const { in Dump() 269 MemStats ArenaAllocator::GetMemStats() const { in GetMemStats() 272 return MemStats("ArenaAllocator", this, arena_head_, lost_bytes_adjustment); in GetMemStats()
|
D | scoped_arena_allocator.cc | 50 MemStats ArenaStack::GetPeakStats() const { in GetPeakStats() 52 return MemStats("ArenaStack peak", static_cast<const TaggedStats<Peak>*>(&stats_and_pool_), in GetPeakStats()
|
D | scoped_arena_allocator.h | 46 MemStats GetPeakStats() const;
|
/art/compiler/dex/ |
D | frontend.cc | 762 MemStats stack_stats(cu.arena_stack.GetPeakStats()); in CompileMethod() 763 LOG(INFO) << PrettyMethod(method_idx, dex_file) << " " << Dumpable<MemStats>(stack_stats); in CompileMethod() 790 MemStats mem_stats(cu.arena.GetMemStats()); in CompileMethod() 791 LOG(INFO) << PrettyMethod(method_idx, dex_file) << " " << Dumpable<MemStats>(mem_stats); in CompileMethod()
|