Home
last modified time | relevance | path

Searched refs:LOG_GC (Results 1 – 15 of 15) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/mem/
Dverification.cpp55 LOG_GC(ERROR) << "Heap verify detected a dead weak object " << value.GetTaggedObject() in VisitObject()
61 LOG_GC(ERROR) << "Heap verify detected a dead object at " << value.GetTaggedObject() in VisitObject()
72 LOG_GC(DEBUG) << "Heap object(" << slot.SlotAddress() << ") old to new rset fail: value is " in operator ()()
80 LOG_GC(ERROR) << "Heap object(" << slot.GetTaggedType() << ") old to new rset fail: value(" in operator ()()
105 LOG_GC(ERROR) << "VerifyRoot detects deadObject count is " << failCount; in VerifyRoot()
115 LOG_GC(ERROR) << "VerifyHeap detects deadObject count is " << failCount; in VerifyHeap()
124 LOG_GC(ERROR) << "VerifyOldToNewRSet detects non new space count is " << failCount; in VerifyOldToNewRSet()
Dgc_stats.cpp35 LOG_GC(INFO) << "/******************* GCStats statistic: *******************/"; in PrintStatisticResult()
46 LOG_GC(INFO) << " [ " << GetGCTypeName() << " ] " in PrintGCStatistic()
111 LOG_GC(INFO) << "/****************** GC Memory statistic: *****************/"; in PrintGCMemoryStatistic()
112 LOG_GC(INFO) << "AllSpaces used:" in PrintGCMemoryStatistic()
145 LOG_GC(INFO) << STATS_DESCRIPTION_FORMAT("Anno memory usage size:") in PrintGCMemoryStatistic()
159LOG_GC(INFO) << STATS_DESCRIPTION_FORMAT("Young copied rate:") << STATS_DATA_FORMAT(copiedRate) <<… in PrintGCMemoryStatistic()
170LOG_GC(INFO) << STATS_DESCRIPTION_FORMAT("Young copied rate:") << STATS_DATA_FORMAT(copiedRate) <<… in PrintGCMemoryStatistic()
176 LOG_GC(INFO) << STATS_DESCRIPTION_FORMAT("Heap alive rate:") in PrintGCMemoryStatistic()
182 LOG_GC(INFO) << STATS_DESCRIPTION_FORMAT("Heap alive rate:") in PrintGCMemoryStatistic()
194 LOG_GC(INFO) << "/***************** GC Duration statistic: ****************/"; in PrintGCDurationStatistic()
[all …]
Dincremental_marker.cpp69 LOG_GC(DEBUG) << "IncrementalMarker: Incremental Marking Begin"; in Mark()
104 LOG_GC(DEBUG) << "IncrementalMarker: Process Incremental Marking"; in ProcessIncrementalMark()
161 LOG_GC(INFO) << "/************* GCStats Idle usage statistic: *************/"; in PrintGCIdleUsageStatistic()
162 LOG_GC(INFO) << "Receive idle time: " << receiveIdleTime_ << "ms\n" in PrintGCIdleUsageStatistic()
Dparallel_marker.h39 LOG_GC(DEBUG) << "Marker::Initialize do nothing"; in Initialize()
51 LOG_GC(FATAL) << "can not call this method"; in ProcessMarkStack()
57 LOG_GC(FATAL) << "can not call this method"; in ProcessIncrementalMarkStack()
64 LOG_GC(FATAL) << "can not call this method"; in MarkObject()
70 LOG_GC(FATAL) << "can not call this method"; in MarkObject()
83 LOG_GC(FATAL) << "can not call this method"; in RecordWeakReference()
Dmem_map_allocator.h146 LOG_GC(ERROR) << "Freelist pool oom: overflow(" << freeListPoolSize_ << ")"; in GetMemFromList()
157 LOG_GC(ERROR) << "Freeset pool oom: overflow(" << freeSetPoolSize_ << ")"; in GetMemFromList()
236 LOG_GC(ERROR) << "pool is empty, reserved = " << reserved_ << ", capacity_ = " << in IncreaseAndCheckReserved()
240LOG_GC(DEBUG) << "Ark IncreaseAndCheckReserved reserved = " << reserved_ << ", capacity_ = " << ca… in IncreaseAndCheckReserved()
246LOG_GC(DEBUG) << "Ark DecreaseReserved reserved = " << reserved_ << ", capacity_ = " << capacity_; in DecreaseReserved()
Dmem_map_allocator.cpp30 LOG_GC(ERROR) << "memory map overflow"; in Allocate()
85 LOG_GC(INFO) << "Ark Auto adapter memory pool capacity:" << capacity_; in AdapterSuitablePoolCapacity()
Dpartial_gc.cpp45 LOG_GC(DEBUG) << "markingInProgress_" << markingInProgress_; in RunPhases()
64 LOG_GC(DEBUG) << "No ongoing Concurrent marking. Initializing..."; in Initialize()
Dheap.cpp100 LOG_GC(DEBUG) << "heap initialize: heap size = " << (maxHeapSize / 1_MB) << "MB" in Initialize()
358 LOG_GC(FATAL) << "Before gc heap corrupted and " << failCount << " corruptions"; in CollectGarbage()
454 LOG_GC(FATAL) << "After gc heap corrupted and " << failCount << " corruptions"; in CollectGarbage()
1026 LOG_GC(INFO) << "app is inBackground"; in ChangeGCParams()
1032 LOG_GC(INFO) << "Heap Growing Type CONSERVATIVE"; in ChangeGCParams()
1039 LOG_GC(INFO) << "app is not inBackground"; in ChangeGCParams()
1042 LOG_GC(INFO) << "Heap Growing Type HIGH_THROUGHPUT"; in ChangeGCParams()
1099 LOG_GC(INFO) << "app is inHighMemoryPressure"; in NotifyMemoryPressure()
1102 LOG_GC(INFO) << "app is not inHighMemoryPressure"; in NotifyMemoryPressure()
1174 LOG_GC(ERROR) << "The region is already free"; in IsAlive()
[all …]
Dconcurrent_marker.cpp61 LOG_GC(DEBUG) << "ConcurrentMarker: Concurrent Marking Begin"; in Mark()
76 LOG_GC(DEBUG) << "ConcurrentMarker: Remarking Begin"; in ReMark()
Dmem.h27 #define LOG_ECMA_MEM(level) LOG_GC(level) << __func__ << ":" << __LINE__ << " "
Dstw_young_gc.cpp45 LOG_GC(DEBUG) << "STWYoungGC after ConcurrentMarking"; in RunPhases()
Dfull_gc.cpp40 LOG_GC(DEBUG) << "FullGC after ConcurrentMarking"; in RunPhases()
Dparallel_evacuator.cpp176 LOG_GC(FATAL) << "Miss mark value: " << value.GetTaggedObject() in VerifyValue()
210 LOG_GC(DEBUG) << "UpdatePointers statistic: younge space region compact moving count:" in UpdateReference()
Dsparse_space.cpp495 LOG_GC(DEBUG) << "Actual live object size:" << GetHeapObjectSize() in CheckRegionSize()
/arkcompiler/ets_runtime/ecmascript/
Dlog_wrapper.h25 #define LOG_GC(level) ARK_LOG(level, Component::GC) macro