Home | History | Annotate | Download | only in heap

Lines Matching defs:new_space

142   VerifyMarking(heap->new_space());
223 VerifyEvacuation(heap->new_space());
465 VerifyMarkbitsAreClean(heap_->new_space());
523 ClearMarkbitsInNewSpace(heap_->new_space());
693 case NEW_SPACE:
694 return "NEW_SPACE";
1948 NewSpace* new_space, NewSpacePage* p) {
1986 AllocationResult allocation = new_space->AllocateRaw(size);
1988 if (!new_space->AddFreshPage()) {
1994 allocation = new_space->AllocateRaw(size);
1999 MigrateObject(HeapObject::cast(target), object, size, NEW_SPACE);
2021 NewSpace* space = heap->new_space();
2271 Address marking_deque_start = heap()->new_space()->FromSpacePageLow();
2272 Address marking_deque_end = heap()->new_space()->FromSpacePageHigh();
2951 DCHECK(dest == OLD_DATA_SPACE || dest == NEW_SPACE);
3094 NewSpace* new_space = heap()->new_space();
3097 Address from_bottom = new_space->bottom();
3098 Address from_top = new_space->top();
3102 new_space->Flip();
3103 new_space->ResetAllocationInfo();
3114 survivors_size += DiscoverAndEvacuateBlackObjectsOnPage(new_space, p);
3118 new_space->set_age_mark(new_space->top());
3532 SemiSpaceIterator to_it(heap()->new_space()->bottom(),
3533 heap()->new_space()->top());