Lines Matching full:space
16 #include "ecmascript/mem/space-inl.h"
22 #include "ecmascript/mem/space.h"
25 Space::Space(Heap* heap, HeapRegionAllocator *heapRegionAllocator, in Space() function in panda::ecmascript::Space
37 void Space::AddAllocationInspector(AllocationInspector* inspector) in AddAllocationInspector()
42 void Space::ClearAllocationInspector() in ClearAllocationInspector()
47 void Space::SwapAllocationCounter(Space *space) in SwapAllocationCounter() argument
49 std::swap(allocationCounter_, space->allocationCounter_); in SwapAllocationCounter()
52 void Space::Destroy() in Destroy()
57 void Space::ReclaimRegions(size_t cachedSize) in ReclaimRegions()
64 void Space::ClearAndFreeRegion(Region *region, size_t cachedSize) in ClearAndFreeRegion()
82 …: Space(heap, heapRegionAllocator, MemSpaceType::HUGE_OBJECT_SPACE, initialCapacity, maximumCapaci… in HugeObjectSpace()
88 : Space(heap, heapRegionAllocator, spaceType, initialCapacity, maximumCapacity) in HugeObjectSpace()
105 … LOG_ECMA_MEM(INFO) << "Committed size " << committedSize_ << " of huge object space is too big."; in Allocate()