Home
last modified time | relevance | path

Searched refs:age_mark (Results 1 – 3 of 3) sorted by relevance

/external/v8/src/heap/
Dheap-inl.h425 Address age_mark = new_space_->age_mark(); in ShouldBePromoted() local
427 (!page->ContainsLimit(age_mark) || old_address < age_mark); in ShouldBePromoted()
458 Address age_mark = in FindAllocationMemento() local
459 reinterpret_cast<SemiSpace*>(object_page->owner())->age_mark(); in FindAllocationMemento()
460 if (!object_page->Contains(age_mark)) { in FindAllocationMemento()
464 if (object_address < age_mark) { in FindAllocationMemento()
Dspaces.h2488 Address age_mark() { return age_mark_; } in age_mark() function
2680 const Address age_mark = to_space_.age_mark(); in AllocatedSinceLastGC() local
2681 DCHECK_NE(age_mark, kNullAddress); in AllocatedSinceLastGC()
2683 Page* const age_mark_page = Page::FromAllocationAreaAddress(age_mark); in AllocatedSinceLastGC()
2689 DCHECK_GE(age_mark_page->area_end(), age_mark); in AllocatedSinceLastGC()
2690 allocated += age_mark_page->area_end() - age_mark; in AllocatedSinceLastGC()
2693 DCHECK_GE(top(), age_mark); in AllocatedSinceLastGC()
2694 return top() - age_mark; in AllocatedSinceLastGC()
2743 Address age_mark() { return from_space_.age_mark(); } in age_mark() function
Dmark-compact.cc2435 page->Contains(heap()->new_space()->age_mark()), saved_live_bytes, in EvacuatePage()
2601 const Address age_mark = heap()->new_space()->age_mark(); in ShouldMovePage() local
2604 !p->Contains(age_mark) && heap()->CanExpandOldGeneration(live_bytes); in ShouldMovePage()