Home
last modified time | relevance | path

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

/external/chromium_org/v8/test/cctest/
Dtest-spaces.cc155 MemoryAllocator* memory_allocator = new MemoryAllocator(isolate); in VerifyMemoryChunk() local
156 CHECK(memory_allocator->SetUp(heap->MaxReserved(), in VerifyMemoryChunk()
158 TestMemoryAllocatorScope test_allocator_scope(isolate, memory_allocator); in VerifyMemoryChunk()
168 MemoryChunk* memory_chunk = memory_allocator->AllocateChunk(reserve_area_size, in VerifyMemoryChunk()
196 memory_allocator->Free(memory_chunk); in VerifyMemoryChunk()
197 memory_allocator->TearDown(); in VerifyMemoryChunk()
198 delete memory_allocator; in VerifyMemoryChunk()
271 MemoryAllocator* memory_allocator = new MemoryAllocator(isolate); in TEST() local
272 CHECK(memory_allocator->SetUp(heap->MaxReserved(), in TEST()
280 Page* first_page = memory_allocator->AllocatePage( in TEST()
[all …]
/external/chromium_org/courgette/
DBUILD.gn39 "memory_allocator.cc",
40 "memory_allocator.h",
Dcourgette.gyp41 'memory_allocator.cc',
42 'memory_allocator.h',
Dcourgette_lib.target.darwin-arm64.mk44 courgette/memory_allocator.cc \
Dcourgette_lib.target.linux-arm64.mk44 courgette/memory_allocator.cc \
Dcourgette_lib.target.darwin-x86_64.mk44 courgette/memory_allocator.cc \
Dcourgette_lib.target.darwin-x86.mk44 courgette/memory_allocator.cc \
Dcourgette_lib.target.linux-x86_64.mk44 courgette/memory_allocator.cc \
Dcourgette_lib.target.linux-x86.mk44 courgette/memory_allocator.cc \
Dcourgette_lib.target.linux-mips.mk44 courgette/memory_allocator.cc \
Dcourgette_lib.target.darwin-mips.mk44 courgette/memory_allocator.cc \
Dcourgette_lib.target.darwin-arm.mk44 courgette/memory_allocator.cc \
Dcourgette_lib.target.linux-arm.mk44 courgette/memory_allocator.cc \
/external/chromium_org/v8/src/
Dspaces.cc222 if (!isolate_->memory_allocator()->CommitExecutableMemory(code_range_, in AllocateRawMemory()
240 return isolate_->memory_allocator()->CommitMemory(start, length, EXECUTABLE); in CommitRawMemory()
527 if (!heap()->isolate()->memory_allocator()->CommitMemory( in CommitArea()
539 heap_->isolate()->memory_allocator()->ZapBlock(start, length); in CommitArea()
942 area_size_ = heap->isolate()->memory_allocator()-> in PagedSpace()
971 heap()->isolate()->memory_allocator()->Free(iterator.next()); in TearDown()
1033 Page* p = heap()->isolate()->memory_allocator()->AllocatePage( in Expand()
1143 heap()->isolate()->memory_allocator()->Free(page); in ReleasePage()
1221 heap()->isolate()->memory_allocator()->ReserveAlignedMemory( in SetUp()
1288 heap()->isolate()->memory_allocator()->FreeMemory(&reservation_, in TearDown()
[all …]
Dheap.cc199 return isolate()->memory_allocator()->SizeExecutable(); in CommittedMemoryExecutable()
283 if (isolate_->memory_allocator()->MaxAvailable() <= new_space_.Size()) { in SelectGarbageCollector()
324 isolate_->memory_allocator()->Size() / KB, in PrintShortHeapStatistics()
325 isolate_->memory_allocator()->Available() / KB); in PrintShortHeapStatistics()
4450 isolate_->memory_allocator()->ReportStatistics(); in ReportHeapStatistics()
4478 if (isolate_->memory_allocator()->IsOutsideAllocatedSpace(addr)) return false; in Contains()
4497 if (isolate_->memory_allocator()->IsOutsideAllocatedSpace(addr)) return false; in InSpace()
4998 *stats->memory_allocator_size = isolate()->memory_allocator()->Size(); in RecordStats()
5000 isolate()->memory_allocator()->Size() + in RecordStats()
5001 isolate()->memory_allocator()->Available(); in RecordStats()
[all …]
Dspaces-inl.h313 return ObjectSizeFor(heap()->isolate()->memory_allocator()->Available()); in Available()
Disolate.h848 MemoryAllocator* memory_allocator() { in memory_allocator() function
Dserialize.cc1812 return isolate_->memory_allocator()->CodePageAreaSize(); in SpaceAreaSize()
Dapi.cc6485 isolate->memory_allocator()->AddMemoryAllocationCallback( in AddMemoryAllocationCallback()
6492 isolate->memory_allocator()->RemoveMemoryAllocationCallback( in RemoveMemoryAllocationCallback()
Djsregexp.cc1103 heap->isolate()->memory_allocator()->SizeExecutable() > in Assemble()
/external/chromium_org/v8/src/extensions/
Dstatistics-extension.cc97 AddNumber(args.GetIsolate(), result, isolate->memory_allocator()->Size(), in GetCounters()