Home | History | Annotate | Download | only in cctest

Lines Matching full:heap

68   // Initialized Page has heap pointer, normally set by memory_allocator.
69 p->heap_ = HEAP;
124 Heap* heap = isolate->heap();
125 CHECK(heap->ConfigureHeapDefault());
127 CHECK(memory_allocator->Setup(heap->MaxReserved(),
128 heap->MaxExecutableSize()));
131 OldSpace faked_space(heap,
132 heap->MaxReserved(),
190 Heap* heap = isolate->heap();
191 CHECK(heap->ConfigureHeapDefault());
193 CHECK(memory_allocator->Setup(heap->MaxReserved(),
194 heap->MaxExecutableSize()));
197 NewSpace new_space(heap);
200 memory_allocator->ReserveInitialChunk(4 * heap->ReservedSemiSpaceSize());
203 2 * heap->ReservedSemiSpaceSize());
204 CHECK(new_space.Setup(start, 2 * heap->ReservedSemiSpaceSize()));
223 Heap* heap = isolate->heap();
224 CHECK(heap->ConfigureHeapDefault());
226 CHECK(memory_allocator->Setup(heap->MaxReserved(),
227 heap->MaxExecutableSize()));
230 OldSpace* s = new OldSpace(heap,
231 heap->MaxOldGenerationSize(),
237 4 * heap->ReservedSemiSpaceSize());
240 size_t size = RoundUp(start, 2 * heap->ReservedSemiSpaceSize()) - start;
258 LargeObjectSpace* lo = HEAP->lo_space();