Searched refs:RecordData (Results 1 – 5 of 5) sorted by relevance
47 << 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()154 double copiedRate = double(GetRecordData(RecordData::SEMI_ALIVE_SIZE)) / in PrintGCMemoryStatistic()155 GetRecordData(RecordData::SEMI_COMMIT_SIZE); in PrintGCMemoryStatistic()156 double premotedRate = double(GetRecordData(RecordData::SEMI_PROMOTE_SIZE)) / in PrintGCMemoryStatistic()157 GetRecordData(RecordData::SEMI_COMMIT_SIZE); in PrintGCMemoryStatistic()165 double copiedRate = double(GetRecordData(RecordData::YOUNG_ALIVE_SIZE)) / in PrintGCMemoryStatistic()166 GetRecordData(RecordData::YOUNG_COMMIT_SIZE); in PrintGCMemoryStatistic()[all …]
40 enum class RecordData : uint8_t { enum86 void SetRecordData(RecordData dataIdx, size_t value) in SetRecordData()91 size_t GetRecordData(RecordData dataIdx) in GetRecordData()108 double copiedRate = double(GetRecordData(RecordData::YOUNG_TOTAL_ALIVE)) / in GetAvgSurvivalRate()109 GetRecordData(RecordData::YOUNG_TOTAL_COMMIT); in GetAvgSurvivalRate()110 double promotedRate = double(GetRecordData(RecordData::YOUNG_TOTAL_PROMOTE)) / in GetAvgSurvivalRate()111 GetRecordData(RecordData::YOUNG_TOTAL_COMMIT); in GetAvgSurvivalRate()176 int GetRecordDataIndex(RecordData dataIdx) in GetRecordDataIndex()178 return (int)dataIdx - (int)RecordData::FIRST_DATA; in GetRecordDataIndex()181 void IncreaseRecordData(RecordData dataIdx, size_t value = 1)[all …]
475 …RecordData::COLLECT_REGION_SET_SIZE, collectRegionSet_.size() * Region::AVERAGE_REGION_EVACUATE_SI… in SelectCSet()
790 RecordData::COLLECT_REGION_SET_SIZE); in CalculateIdleDuration()
705 using RecordData = std::vector<std::pair<uint32_t, uint32_t>>; variable707 SnapshotData() : recordInfo_(RecordType::RECORD_TYPE_NUM, RecordData{}) {} in SnapshotData()735 const RecordData& GetRecordInfo(RecordType type) in GetRecordInfo()748 std::vector<RecordData> recordInfo_ {};