Home
last modified time | relevance | path

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

/arkcompiler/ets_runtime/ecmascript/mem/
Dheap_region_allocator.h28 class HeapRegionAllocator {
30 HeapRegionAllocator() = default;
31 virtual ~HeapRegionAllocator() = default;
60 NO_COPY_SEMANTIC(HeapRegionAllocator);
61 NO_MOVE_SEMANTIC(HeapRegionAllocator);
Dspace.h79 …Space(Heap* heap, HeapRegionAllocator *regionAllocator, MemSpaceType spaceType, size_t initialCapa…
225 HeapRegionAllocator *heapRegionAllocator_ {nullptr};
239 HugeObjectSpace(Heap* heap, HeapRegionAllocator *regionAllocator, size_t initialCapacity,
241 HugeObjectSpace(Heap* heap, HeapRegionAllocator *regionAllocator, size_t initialCapacity,
262 HugeMachineCodeSpace(Heap* heap, HeapRegionAllocator *regionAllocator, size_t initialCapacity,
Dspace.cpp25 Space::Space(Heap* heap, HeapRegionAllocator *heapRegionAllocator, in Space()
80 HugeObjectSpace::HugeObjectSpace(Heap *heap, HeapRegionAllocator *heapRegionAllocator, in HugeObjectSpace()
86 HugeObjectSpace::HugeObjectSpace(Heap *heap, HeapRegionAllocator *heapRegionAllocator, in HugeObjectSpace()
92 HugeMachineCodeSpace::HugeMachineCodeSpace(Heap *heap, HeapRegionAllocator *heapRegionAllocator, in HugeMachineCodeSpace()
Dheap_region_allocator.cpp30 Region *HeapRegionAllocator::AllocateAlignedRegion(Space *space, size_t capacity, JSThread* thread) in AllocateAlignedRegion()
72 void HeapRegionAllocator::FreeRegion(Region *region, size_t cachedSize) in FreeRegion()
Dheap.h33 class HeapRegionAllocator; variable
335 HeapRegionAllocator *GetHeapRegionAllocator() const in GetHeapRegionAllocator()
844 HeapRegionAllocator *heapRegionAllocator_ {nullptr};
Dgc_stats.cpp94 HeapRegionAllocator *heapRegionAllocator = heap_->GetHeapRegionAllocator(); in PrintGCMemoryStatistic()
/arkcompiler/ets_runtime/ecmascript/
Decma_vm.h234 HeapRegionAllocator *GetHeapRegionAllocator() const in GetHeapRegionAllocator()
616 std::unique_ptr<HeapRegionAllocator> heapRegionAllocator_;
Djs_thread.h38 class HeapRegionAllocator; variable
162 HeapRegionAllocator *GetHeapRegionAllocator() const in GetHeapRegionAllocator()
1102 HeapRegionAllocator *heapRegionAllocator_ {nullptr};
Decma_vm.cpp169 heapRegionAllocator_(std::make_unique<HeapRegionAllocator>()), in EcmaVM()