Home
last modified time | relevance | path

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

/arkcompiler/ets_runtime/ecmascript/mem/
Dheap.cpp57 size_t maxHeapSize = config.GetMaxHeapSize(); in Initialize() local
71 appSpawnSpace_ = new AppSpawnSpace(this, maxHeapSize); in Initialize()
85 if (maxHeapSize < capacities || maxHeapSize - capacities < MIN_OLD_SPACE_LIMIT) { in Initialize()
86 … LOG_ECMA_MEM(FATAL) << "HeapSize is too small to initialize oldspace, heapSize = " << maxHeapSize; in Initialize()
88 size_t oldSpaceCapacity = maxHeapSize - capacities; in Initialize()
89 globalSpaceAllocLimit_ = maxHeapSize - minSemiSpaceCapacity; in Initialize()
100 LOG_GC(DEBUG) << "heap initialize: heap size = " << (maxHeapSize / 1_MB) << "MB" in Initialize()