Lines Matching full:space
19 #include "ecmascript/mem/space.h"
23 Space::Space(BaseHeap* heap, HeapRegionAllocator *heapRegionAllocator, in Space() function in panda::ecmascript::Space
37 void Space::AddAllocationInspector(AllocationInspector* inspector) in AddAllocationInspector()
43 void Space::ClearAllocationInspector() in ClearAllocationInspector()
48 void Space::SwapAllocationCounter(Space *space) in SwapAllocationCounter() argument
50 ASSERT(space != nullptr); in SwapAllocationCounter()
51 std::swap(allocationCounter_, space->allocationCounter_); in SwapAllocationCounter()
54 void Space::Destroy() in Destroy()
59 void Space::ReclaimRegions(size_t cachedSize) in ReclaimRegions()
67 void Space::ClearAndFreeRegion(Region *region, size_t cachedSize) in ClearAndFreeRegion()
89 …: Space(heap, heapRegionAllocator, MemSpaceType::HUGE_OBJECT_SPACE, initialCapacity, maximumCapaci… in HugeObjectSpace()
95 : Space(heap, heapRegionAllocator, spaceType, initialCapacity, maximumCapacity) in HugeObjectSpace()
130 // by a page aligned immutable (JitFort space) area for JIT generated native instructions code. in AllocateFort()
149 … LOG_ECMA_MEM(INFO) << "Committed size " << committedSize_ << " of huge object space is too big."; in AllocateFort()
221 … LOG_ECMA_MEM(INFO) << "Committed size " << committedSize_ << " of huge object space is too big."; in Allocate()