Home
last modified time | relevance | path

Searched refs:GetRecordData (Results 1 - 4 of 4) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/mem/
H A Dgc_stats.cpp172 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::YOUNG_PROMOTE_SIZE)) / in PrintGCMemoryStatistic()
186 GetRecordData(RecordData::YOUNG_COMMIT_SIZE); in PrintGCMemoryStatistic()
195 << STATS_DATA_FORMAT(double(GetRecordData(RecordData::OLD_ALIVE_SIZE)) / in PrintGCMemoryStatistic()
196 GetRecordData(RecordData::OLD_COMMIT_SIZE)); in PrintGCMemoryStatistic()
201 << STATS_DATA_FORMAT(double(GetRecordData(RecordDat in PrintGCMemoryStatistic()
[all...]
H A Dgc_stats.h94 size_t GetRecordData(RecordData dataIdx) in GetRecordData() function in panda::ecmascript::GCStats
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::YOUNG_TOTAL_COMMIT); in GetAvgSurvivalRate()
192 return GetRecordData(RecordData::SEMI_COUNT) + GetRecordData(RecordDat in GetGCCount()
[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 Dheap.cpp1824 size_t collectRegionSetSize = GetEcmaGCStats()->GetRecordData( in CalculateIdleDuration()

Completed in 6 milliseconds