Home
last modified time | relevance | path

Searched refs:MemStats (Results 1 – 6 of 6) sorted by relevance

/art/runtime/base/
Darena_allocator.h37 class MemStats; variable
370 MemStats GetMemStats() const;
410 class MemStats {
412 MemStats(const char* name,
Dscoped_arena_allocator.cc49 MemStats ArenaStack::GetPeakStats() const { in GetPeakStats()
51 return MemStats("ArenaStack peak", static_cast<const TaggedStats<Peak>*>(&stats_and_pool_), in GetPeakStats()
Darena_allocator.cc507 MemStats::MemStats(const char* name, in MemStats() function in art::MemStats
517 void MemStats::Dump(std::ostream& os) const { in Dump()
523 MemStats ArenaAllocator::GetMemStats() const { in GetMemStats()
526 return MemStats("ArenaAllocator", this, arena_head_, lost_bytes_adjustment); in GetMemStats()
Dscoped_arena_allocator.h60 MemStats GetPeakStats() const;
/art/compiler/optimizing/
Doptimizing_compiler.cc1080 MemStats mem_stats(arena.GetMemStats()); in Compile()
1081 LOG(INFO) << dex_file.PrettyMethod(method_idx) << " " << Dumpable<MemStats>(mem_stats); in Compile()
1187 MemStats mem_stats(arena.GetMemStats()); in JitCompile()
1188 LOG(INFO) << dex_file->PrettyMethod(method_idx) << " " << Dumpable<MemStats>(mem_stats); in JitCompile()
/art/runtime/jit/
Dprofile_compilation_info.cc89 VLOG(profiler) << Dumpable<MemStats>(arena_.GetMemStats()); in ~ProfileCompilationInfo()