Searched refs:memory_allocator (Results 1 – 21 of 21) sorted by relevance
/external/chromium_org/v8/test/cctest/ |
D | test-spaces.cc | 155 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/ |
D | BUILD.gn | 39 "memory_allocator.cc", 40 "memory_allocator.h",
|
D | courgette.gyp | 41 'memory_allocator.cc', 42 'memory_allocator.h',
|
D | courgette_lib.target.darwin-arm64.mk | 44 courgette/memory_allocator.cc \
|
D | courgette_lib.target.linux-arm64.mk | 44 courgette/memory_allocator.cc \
|
D | courgette_lib.target.darwin-x86_64.mk | 44 courgette/memory_allocator.cc \
|
D | courgette_lib.target.darwin-x86.mk | 44 courgette/memory_allocator.cc \
|
D | courgette_lib.target.linux-x86_64.mk | 44 courgette/memory_allocator.cc \
|
D | courgette_lib.target.linux-x86.mk | 44 courgette/memory_allocator.cc \
|
D | courgette_lib.target.linux-mips.mk | 44 courgette/memory_allocator.cc \
|
D | courgette_lib.target.darwin-mips.mk | 44 courgette/memory_allocator.cc \
|
D | courgette_lib.target.darwin-arm.mk | 44 courgette/memory_allocator.cc \
|
D | courgette_lib.target.linux-arm.mk | 44 courgette/memory_allocator.cc \
|
/external/chromium_org/v8/src/ |
D | spaces.cc | 222 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 …]
|
D | heap.cc | 199 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 …]
|
D | spaces-inl.h | 313 return ObjectSizeFor(heap()->isolate()->memory_allocator()->Available()); in Available()
|
D | isolate.h | 848 MemoryAllocator* memory_allocator() { in memory_allocator() function
|
D | serialize.cc | 1812 return isolate_->memory_allocator()->CodePageAreaSize(); in SpaceAreaSize()
|
D | api.cc | 6485 isolate->memory_allocator()->AddMemoryAllocationCallback( in AddMemoryAllocationCallback() 6492 isolate->memory_allocator()->RemoveMemoryAllocationCallback( in RemoveMemoryAllocationCallback()
|
D | jsregexp.cc | 1103 heap->isolate()->memory_allocator()->SizeExecutable() > in Assemble()
|
/external/chromium_org/v8/src/extensions/ |
D | statistics-extension.cc | 97 AddNumber(args.GetIsolate(), result, isolate->memory_allocator()->Size(), in GetCounters()
|