Searched refs:statistic (Results 1 - 5 of 5) sorted by relevance
/arkcompiler/runtime_core/static_core/runtime/mem/gc/ |
H A D | gc_stats.cpp | 27 PandaStringStream statistic; in GetStatistics() local 28 statistic << time::GetCurrentTimeString() << " "; in GetStatistics() 30 statistic << GC_NAMES[ToIndex(gcType_)] << " "; in GetStatistics() 31 statistic << "freed " << objectsFreed_ << "(" << helpers::MemoryConverter(objectsFreedBytes_) << "), "; in GetStatistics() 32 statistic << largeObjectsFreed_ << "(" << helpers::MemoryConverter(largeObjectsFreedBytes_) << ") LOS objects, "; in GetStatistics() 40 statistic << percent << "% free, " << helpers::MemoryConverter(allocatedNow) << "/" in GetStatistics() 44 statistic << GetPhasePauseStat(PauseTypeStats::COMMON_PAUSE) in GetStatistics() 48 return statistic.str(); in GetStatistics() 71 PandaStringStream statistic; in GetFinalStatistics() local 73 statistic << heapManage in GetFinalStatistics() 113 PandaStringStream statistic; GetPhasePauseStat() local 278 PandaStringStream statistic; GetDump() local 314 PandaStringStream statistic; GetYoungSpaceDump() local 338 PandaStringStream statistic; GetAllSpacesDump() local [all...] |
H A D | generational-gc-base.cpp | 34 PandaStringStream statistic; in Dump() local 35 statistic << "Young freed " << youngFreeObjectCount_ << " objects (" in Dump() 40 statistic << " Tenured freed " << tenuredFreeObjectSize_ << "(" in Dump() 43 return statistic.str(); in Dump()
|
/arkcompiler/runtime_core/static_core/runtime/include/ |
H A D | histogram-inl.h | 38 PandaStringStream statistic; in GetGeneralStatistic() local 39 statistic << "Sum: " << helpers::ValueConverter(sum_, typeOfValue_) << " "; in GetGeneralStatistic() 40 statistic << "Avg: " << helpers::ValueConverter(GetAvg(), typeOfValue_) << " "; in GetGeneralStatistic() 41 statistic << "Max: " << helpers::ValueConverter(max_, typeOfValue_); 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()
|
/arkcompiler/runtime_core/static_core/runtime/mem/ |
H A D | mem_stats.cpp | 103 PandaStringStream statistic; in GetStatistics() local 104 statistic << "memory statistics:" << std::endl; in GetStatistics() 105 statistic << "heap: allocated - " << GetAllocatedHeap() << ", freed - " << GetFreedHeap() << std::endl; in GetStatistics() 106 statistic << "raw memory: allocated - " << GetAllocated(SpaceType::SPACE_TYPE_INTERNAL) << ", freed - " in GetStatistics() 108 statistic << "compiler: allocated - " << GetAllocated(SpaceType::SPACE_TYPE_CODE) << std::endl; in GetStatistics() 109 statistic << "ArenaAllocator: allocated - " << GetAllocated(SpaceType::SPACE_TYPE_COMPILER) << std::endl; in GetStatistics() 110 statistic << "total footprint now - " << GetTotalFootprint() << std::endl; in GetStatistics() 111 statistic << "total allocated object - " << GetTotalObjectsAllocated() << std::endl; in GetStatistics() 113 return statistic.str() + additionalStatistics; in GetStatistics()
|
/arkcompiler/runtime_core/static_core/runtime/ |
H A D | panda_vm.cpp | 156 PandaStringStream statistic; in GetClassesFootprint() local 163 statistic << "class: " << clazz->GetName() << ", footprint - " << rit->first << std::endl; in GetClassesFootprint() 165 return statistic.str(); in GetClassesFootprint()
|
Completed in 3 milliseconds