Home
last modified time | relevance | path

Searched refs:RecordData (Results 1 - 5 of 5) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/mem/
H A Dgc_stats.cpp47 << sizeToMB(recordData_[(uint8_t)RecordData::START_OBJ_SIZE]) << " (" in PrintGCStatistic()
48 << sizeToMB(recordData_[(uint8_t)RecordData::START_COMMIT_SIZE]) << ") -> " in PrintGCStatistic()
49 << sizeToMB(recordData_[(uint8_t)RecordData::END_OBJ_SIZE]) << " (" in PrintGCStatistic()
50 << sizeToMB(recordData_[(uint8_t)RecordData::END_COMMIT_SIZE]) << ") MB, " in PrintGCStatistic()
172 size_t commitSize = GetRecordData(RecordData::EDEN_COMMIT_SIZE); in PrintGCMemoryStatistic()
173 double copiedRate = commitSize == 0 ? 0 : (double(GetRecordData(RecordData::EDEN_ALIVE_SIZE)) / commitSize); in PrintGCMemoryStatistic()
175 commitSize == 0 ? 0 : (double(GetRecordData(RecordData::EDEN_PROMOTE_SIZE)) / commitSize); in PrintGCMemoryStatistic()
183 double copiedRate = double(GetRecordData(RecordData::YOUNG_ALIVE_SIZE)) / in PrintGCMemoryStatistic()
184 GetRecordData(RecordData::YOUNG_COMMIT_SIZE); in PrintGCMemoryStatistic()
185 double premotedRate = double(GetRecordData(RecordData in PrintGCMemoryStatistic()
[all...]
H A Dgc_stats.h43 enum class RecordData : uint8_t { class
89 void SetRecordData(RecordData dataIdx, size_t value) in SetRecordData()
94 size_t GetRecordData(RecordData dataIdx) in GetRecordData()
135 size_t commitSize = GetRecordData(RecordData::EDEN_TOTAL_COMMIT); in GetAvgSurvivalRate()
139 double copiedRate = double(GetRecordData(RecordData::EDEN_TOTAL_ALIVE)) / commitSize; in GetAvgSurvivalRate()
140 double promotedRate = double(GetRecordData(RecordData::EDEN_TOTAL_PROMOTE)) / commitSize; in GetAvgSurvivalRate()
143 double copiedRate = double(GetRecordData(RecordData::YOUNG_TOTAL_ALIVE)) / in GetAvgSurvivalRate()
144 GetRecordData(RecordData::YOUNG_TOTAL_COMMIT); in GetAvgSurvivalRate()
145 double promotedRate = double(GetRecordData(RecordData::YOUNG_TOTAL_PROMOTE)) / in GetAvgSurvivalRate()
146 GetRecordData(RecordData in GetAvgSurvivalRate()
[all...]
H A Dgc_key_stats.cpp56 SizeToIntKB(gcStats_->GetRecordData(RecordData::END_OBJ_SIZE))); in AddGCStatsToKey()
58 SizeToIntKB(gcStats_->GetRecordData(RecordData::END_COMMIT_SIZE))); in AddGCStatsToKey()
60 SizeToIntKB(gcStats_->GetRecordData(RecordData::YOUNG_ALIVE_SIZE))); in AddGCStatsToKey()
62 SizeToIntKB(gcStats_->GetRecordData(RecordData::YOUNG_COMMIT_SIZE))); in AddGCStatsToKey()
64 SizeToIntKB(gcStats_->GetRecordData(RecordData::OLD_ALIVE_SIZE))); in AddGCStatsToKey()
66 SizeToIntKB(gcStats_->GetRecordData(RecordData::OLD_COMMIT_SIZE))); in AddGCStatsToKey()
H A Dsparse_space.cpp493 RecordData::COLLECT_REGION_SET_SIZE, collectRegionSet_.size() * Region::AVERAGE_REGION_EVACUATE_SIZE); in SelectCSet()
H A Dheap.cpp1825 RecordData::COLLECT_REGION_SET_SIZE); in CalculateIdleDuration()

Completed in 8 milliseconds