Searched refs:OLD_SPACE (Results 1 – 20 of 20) sorted by relevance
/external/v8/src/heap/ |
D | local-allocator-inl.h | 21 case OLD_SPACE: in Allocate() 22 return compaction_spaces_.Get(OLD_SPACE)->AllocateRaw(object_size, in Allocate() 39 case OLD_SPACE: in FreeLast() 58 if (!compaction_spaces_.Get(OLD_SPACE)->TryFreeLast(object, object_size)) { in FreeLastInOldSpace() 69 return AllocationResult::Retry(OLD_SPACE); in AllocateInLAB() 74 return AllocationResult::Retry(OLD_SPACE); in AllocateInLAB()
|
D | sweeper.h | 55 &sweeper_->sweeping_list_[GetSweepSpaceIndex(OLD_SPACE)]; in FilterOldSpaceSweepingPages() 133 callback(OLD_SPACE); in ForAllSweepingSpaces()
|
D | local-allocator.h | 31 heap_->old_space()->MergeCompactionSpace(compaction_spaces_.Get(OLD_SPACE)); in Finalize()
|
D | scavenger-inl.h | 105 allocator_.Allocate(OLD_SPACE, object_size, alignment); in PromoteObject() 113 allocator_.FreeLast(OLD_SPACE, target, object_size); in PromoteObject()
|
D | sweeper.cc | 51 int old_space_index = GetSweepSpaceIndex(OLD_SPACE); in FilterSweepingPagesScope() 61 sweeper_->sweeping_list_[GetSweepSpaceIndex(OLD_SPACE)] = in ~FilterSweepingPagesScope() 234 DCHECK(free_list_mode == IGNORE_FREE_LIST || space->identity() == OLD_SPACE || in RawSweep()
|
D | heap.cc | 689 case OLD_SPACE: in GetSpaceName() 1137 CollectGarbage(OLD_SPACE, gc_reason, gc_callback_flags); in CollectAllGarbage() 1227 if (!CollectGarbage(OLD_SPACE, gc_reason, in CollectAllAvailableGarbage() 3305 for (int i = OLD_SPACE; i < Serializer<>::kNumberOfSpaces; i++) { in RegisterDeserializedObjectsForBlackAllocation() 3780 case OLD_SPACE: in InSpace() 3805 case OLD_SPACE: in InSpaceSlow() 3824 case OLD_SPACE: in IsValidAllocationSpace() 4731 space_[OLD_SPACE] = old_space_ = new OldSpace(this); in SetUp() 5266 DCHECK_EQ(page->owner()->identity(), OLD_SPACE); in ClearRecordedSlot() 5277 DCHECK_EQ(page->owner()->identity(), OLD_SPACE); in HasRecordedSlot() [all …]
|
D | scavenger.cc | 111 if ((space == OLD_SPACE) && !page->SweepingDone()) { in AddPageToSweeperIfNecessary()
|
D | mark-compact.cc | 603 DCHECK(space->identity() == OLD_SPACE || space->identity() == CODE_SPACE); in CollectEvacuationCandidates() 1150 if (dest == CODE_SPACE || (dest == OLD_SPACE && dst->IsBytecodeArray())) { in Move() 1186 if (dest == OLD_SPACE) { in RawMigrateObject() 1291 TryEvacuateObject(OLD_SPACE, object, size, &target_object)) { in Visit() 1337 space_allocated_in = OLD_SPACE; in AllocateTargetObject() 1348 local_allocator_->Allocate(OLD_SPACE, size_in_bytes, alignment); in AllocateInOldSpace() 2786 DCHECK_EQ(OLD_SPACE, p->owner()->identity()); in Evacuate() 2787 sweeper()->AddPage(OLD_SPACE, p, Sweeper::REGULAR); in Evacuate()
|
D | spaces.h | 2328 return identity() == OLD_SPACE && !is_local(); in NON_EXPORTED_BASE() 2875 : old_space_(heap, OLD_SPACE, Executability::NOT_EXECUTABLE), in CompactionSpaceCollection() 2880 case OLD_SPACE: in Get() 2902 explicit OldSpace(Heap* heap) : PagedSpace(heap, OLD_SPACE, NOT_EXECUTABLE) {} in OldSpace()
|
D | spaces-inl.h | 334 DCHECK(identity() == OLD_SPACE || identity() == RO_SPACE); in AllocateRawAligned()
|
D | heap-inl.h | 157 if (OLD_SPACE == space) { in AllocateRaw()
|
D | heap.h | 1600 return OLD_SPACE; in SelectSpace() 2428 : OLD_SPACE) {} in heap_()
|
D | setup-heap-internal.cc | 425 AllocationResult alloc = AllocateRaw(Cell::kSize, OLD_SPACE); in CreateInitialMaps()
|
D | spaces.cc | 806 return owner()->identity() == OLD_SPACE; in InOldSpace() 1556 if (identity() != OLD_SPACE && identity() != CODE_SPACE && in AllocateChunk()
|
/external/v8/src/ |
D | globals.h | 557 OLD_SPACE, // Old generation regular object space. enumerator 565 FIRST_GROWABLE_PAGED_SPACE = OLD_SPACE,
|
D | objects-printer.cc | 78 if (chunk->owner()->identity() == OLD_SPACE) os << " in OldSpace"; in PrintHeader()
|
D | code-stub-assembler.cc | 1202 AllocateTargetSpace::encode(AllocationSpace::OLD_SPACE))); in AllocateRaw()
|
/external/v8/src/snapshot/ |
D | deserializer.cc | 420 CASE_STATEMENT(where, how, within, OLD_SPACE) \ in ReadData()
|
D | serializer.cc | 552 (allocation_size > kMaxRegularHeapObjectSize) ? LO_SPACE : OLD_SPACE; in SerializeExternalStringAsSequentialString()
|
/external/v8/src/builtins/ |
D | builtins-internal-gen.cc | 1113 int flags = AllocateTargetSpace::encode(OLD_SPACE); in TF_BUILTIN()
|