Lines Matching defs:page
127 /* never in new space and never on a page that is being compacted. */ \
226 Page* page = Page::FromHeapObject(string);
227 page->DecrementExternalBackingStoreBytes(
326 Page* page = Page::FromAddress(old_address);
328 return page->IsFlagSet(MemoryChunk::NEW_SPACE_BELOW_AGE_MARK) &&
329 (!page->ContainsLimit(age_mark) || old_address < age_mark);
342 // If the memento would be on another page, bail out immediately.
358 // mementos survived because a page got moved within new space.
366 // Do an exact check in the case where the age mark is on the same page.
606 LargePage* page = heap_->code_lo_space()->first_page();
607 while (page != nullptr) {
608 DCHECK(page->IsFlagSet(MemoryChunk::IS_EXECUTABLE));
609 DCHECK(heap_->memory_allocator()->IsMemoryChunkExecutable(page));
610 page->SetCodeModificationPermissions();
611 page = page->next_page();
620 LargePage* page = heap_->code_lo_space()->first_page();
621 while (page != nullptr) {
622 DCHECK(page->IsFlagSet(MemoryChunk::IS_EXECUTABLE));
623 DCHECK(heap_->memory_allocator()->IsMemoryChunkExecutable(page));
624 page->SetDefaultCodePermissions();
625 page = page->next_page();