Home
last modified time | relevance | path

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

/ark/runtime_core/runtime/mem/gc/
Dgc_stats.cpp27 PandaStringStream statistic; in GetStatistics() local
28 statistic << time::GetCurrentTimeString() << " "; in GetStatistics()
30 statistic << GC_NAMES[ToIndex(gc_type_)] << " "; in GetStatistics()
31statistic << "freed " << objects_freed_ << "(" << helpers::MemoryConverter(objects_freed_bytes_) <… in GetStatistics()
32 statistic << large_objects_freed_ << "(" << helpers::MemoryConverter(large_objects_freed_bytes_) in GetStatistics()
39 statistic << percent << "% free, " << helpers::MemoryConverter(allocated_now) << "/" in GetStatistics()
41 statistic << "paused " << helpers::TimeConverter(last_pause_) << " total " in GetStatistics()
44 return statistic.str(); in GetStatistics()
67 PandaStringStream statistic; in GetFinalStatistics() local
69 statistic << heap_manager->GetGC()->DumpStatistics() << "\n"; in GetFinalStatistics()
[all …]
Dgenerational-gc-base.cpp59 PandaStringStream statistic; in Dump() local
60statistic << "Young freed " << young_free_object_count_ << "(" << helpers::MemoryConverter(young_f… in Dump()
64 statistic << " Tenured freed " << tenured_free_object_size_ << "(" in Dump()
67 return statistic.str(); in Dump()
/ark/runtime_core/runtime/include/
Dhistogram-inl.h38 PandaStringStream statistic; in GetGeneralStatistic() local
39 statistic << "Sum: " << helpers::ValueConverter(sum_, type_of_value_) << " "; in GetGeneralStatistic()
40 statistic << "Avg: " << helpers::ValueConverter(GetAvg(), type_of_value_) << " "; in GetGeneralStatistic()
41 statistic << "Max: " << helpers::ValueConverter(max_, type_of_value_); in GetGeneralStatistic()
42 return statistic.str(); in GetGeneralStatistic()
73 PandaStringStream statistic; in GetTopDump() local
80 statistic << ","; in GetTopDump()
82 statistic << it.first << ":" << it.second; in GetTopDump()
85 return statistic.str(); in GetTopDump()
/ark/runtime_core/runtime/mem/
Dmem_stats.cpp78 PandaStringStream statistic; in GetStatistics() local
79 statistic << "memory statistics:" << std::endl; in GetStatistics()
80statistic << "heap: allocated - " << GetAllocatedHeap() << ", freed - " << GetFreedHeap() << std::… in GetStatistics()
81statistic << "raw memory: allocated - " << GetAllocated(SpaceType::SPACE_TYPE_INTERNAL) << ", free… in GetStatistics()
83 statistic << "compiler: allocated - " << GetAllocated(SpaceType::SPACE_TYPE_CODE) << std::endl; in GetStatistics()
84statistic << "ArenaAllocator: allocated - " << GetAllocated(SpaceType::SPACE_TYPE_COMPILER) << std… in GetStatistics()
85 statistic << "total footprint now - " << GetTotalFootprint() << std::endl; in GetStatistics()
86 statistic << "total allocated object - " << GetTotalObjectsAllocated() << std::endl; in GetStatistics()
87 statistic << "min GC pause time - " << GetMinGCPause() << std::endl; in GetStatistics()
88 statistic << "max GC pause time - " << GetMaxGCPause() << std::endl; in GetStatistics()
[all …]
Dmem_stats_additional_info.cpp41 PandaStringStream statistic; in GetAdditionalStatistics() local
48 statistic << "class: " << clazz->GetName() << ", footprint - " << rit->first << std::endl; in GetAdditionalStatistics()
50 return statistic.str(); in GetAdditionalStatistics()
/ark/js_runtime/ecmascript/vmstat/
Druntime_stat.cpp73 CStringStream statistic; in GetAllStats() local
74 statistic << "panda runtime stat:" << std::endl; in GetAllStats()
77statistic << std::right << std::setw(nameRightAdjustment) << "InterPreter && GC && C++ Builtin Fun… in GetAllStats()
82statistic << "====================================================================================… in GetAllStats()
86 statistic << std::right << std::setw(nameRightAdjustment) << runCallerStat.Name() in GetAllStats()
94 return statistic.str(); in GetAllStats()