Lines Matching full:space
19 #include "ecmascript/mem/space.h"
23 Space::Space(BaseHeap* heap, HeapRegionAllocator *heapRegionAllocator, in Space() function in panda::ecmascript::Space
35 void Space::AddAllocationInspector(AllocationInspector* inspector) in AddAllocationInspector()
40 void Space::ClearAllocationInspector() in ClearAllocationInspector()
45 void Space::SwapAllocationCounter(Space *space) in SwapAllocationCounter() argument
47 std::swap(allocationCounter_, space->allocationCounter_); in SwapAllocationCounter()
50 void Space::Destroy() in Destroy()
55 void Space::ReclaimRegions(size_t cachedSize) in ReclaimRegions()
62 void Space::ClearAndFreeRegion(Region *region, size_t cachedSize) in ClearAndFreeRegion()
87 …: Space(heap, heapRegionAllocator, MemSpaceType::HUGE_OBJECT_SPACE, initialCapacity, maximumCapaci… in HugeObjectSpace()
93 : Space(heap, heapRegionAllocator, spaceType, initialCapacity, maximumCapacity) in HugeObjectSpace()
128 // by a page aligned immutable (JitFort space) area for JIT generated native instructions code. in AllocateFort()
145 … LOG_ECMA_MEM(INFO) << "Committed size " << committedSize_ << " of huge object space is too big."; in AllocateFort()
215 … LOG_ECMA_MEM(INFO) << "Committed size " << committedSize_ << " of huge object space is too big."; in Allocate()