Searched defs:new_space (Results 1 - 8 of 8) sorted by relevance

/external/v8/test/cctest/
H A Dtest-mementos.cc36 NewSpace* new_space = heap->new_space(); local
49 reinterpret_cast<AllocationMemento*>(new_space->top() + kHeapObjectTag);
78 Address top = CcTest::i_isolate()->heap()->new_space()->top();
79 *(CcTest::i_isolate()->heap()->new_space()->allocation_limit_address()) = top;
/external/v8/test/cctest/heap/
H A Dtest-spaces.cc359 NewSpace new_space(heap);
361 CHECK(new_space.SetUp(CcTest::heap()->InitialSemiSpaceSize(),
363 CHECK(new_space.HasBeenSetUp());
365 while (new_space.Available() >= Page::kMaxRegularHeapObjectSize) {
367 new_space.AllocateRawUnaligned(Page::kMaxRegularHeapObjectSize)
369 CHECK(new_space.Contains(HeapObject::cast(obj)));
372 new_space.TearDown();
641 testAllocationObserver<NewSpace>(i_isolate, i_isolate->heap()->new_space());
664 NewSpace* new_space = i_isolate->heap()->new_space(); local
[all...]
H A Dtest-heap.cc2059 heap->new_space()->AllocateRawAligned(size, alignment);
2069 Address* top_addr = CcTest::heap()->new_space()->allocation_top_address();
2081 Address* top_addr = CcTest::heap()->new_space()->allocation_top_address();
2311 static void FillUpNewSpace(NewSpace* new_space) { argument
2314 Heap* heap = new_space->heap();
2319 intptr_t available = new_space->Capacity() - new_space->Size();
2330 NewSpace* new_space = heap->new_space(); local
2338 old_capacity = new_space
2382 NewSpace* new_space = heap->new_space(); local
5563 NewSpace* new_space = heap->new_space(); local
[all...]
/external/v8/src/
H A Dstring-stream.cc574 char* new_space = NewArray<char>(new_bytes); local
575 if (new_space == NULL) {
578 MemCopy(new_space, space_, *bytes);
581 space_ = new_space;
582 return new_space;
H A Dcode-stub-assembler.cc445 bool const new_space = !(flags & kPretenured); local
447 new_space
451 new_space
/external/blktrace/
H A Dblkparse.c326 int new_space, size; local
339 new_space = (new_count - ncpus) * sizeof(struct per_cpu_info);
340 memset(new_start, 0, new_space);
/external/v8/src/heap/
H A Dheap.h927 NewSpace* new_space() { return &new_space_; } function in class:v8::internal::Heap
951 return new_space();
1312 return new_space_allocation_counter_ + new_space()->AllocatedSinceLastGC();
H A Dmark-compact.cc163 VerifyMarking(heap->new_space());
236 VerifyEvacuation(heap->new_space());
376 VerifyMarkbitsAreClean(heap_->new_space());
430 ClearMarkbitsInNewSpace(heap_->new_space());
558 for (Page* p : *heap_->new_space()) {
1820 heap_->new_space()->AllocateRawSynchronized(size_in_bytes, alignment);
1822 if (!heap_->new_space()->AddFreshPageSynchronized()) {
1825 allocation = heap_->new_space()->AllocateRawSynchronized(size_in_bytes,
1892 page->heap()->new_space()->MovePageFromSpaceToSpace(page);
1961 NewSpace* space = heap()->new_space();
3039 NewSpace* new_space = heap()->new_space(); local
[all...]

Completed in 196 milliseconds