Home
last modified time | relevance | path

Searched refs:OLD_SPACE (Results 1 – 20 of 20) sorted by relevance

/external/v8/src/heap/
Dlocal-allocator-inl.h21 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()
Dsweeper.h55 &sweeper_->sweeping_list_[GetSweepSpaceIndex(OLD_SPACE)]; in FilterOldSpaceSweepingPages()
133 callback(OLD_SPACE); in ForAllSweepingSpaces()
Dlocal-allocator.h31 heap_->old_space()->MergeCompactionSpace(compaction_spaces_.Get(OLD_SPACE)); in Finalize()
Dscavenger-inl.h105 allocator_.Allocate(OLD_SPACE, object_size, alignment); in PromoteObject()
113 allocator_.FreeLast(OLD_SPACE, target, object_size); in PromoteObject()
Dsweeper.cc51 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()
Dheap.cc689 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 …]
Dscavenger.cc111 if ((space == OLD_SPACE) && !page->SweepingDone()) { in AddPageToSweeperIfNecessary()
Dmark-compact.cc603 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()
Dspaces.h2328 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()
Dspaces-inl.h334 DCHECK(identity() == OLD_SPACE || identity() == RO_SPACE); in AllocateRawAligned()
Dheap-inl.h157 if (OLD_SPACE == space) { in AllocateRaw()
Dheap.h1600 return OLD_SPACE; in SelectSpace()
2428 : OLD_SPACE) {} in heap_()
Dsetup-heap-internal.cc425 AllocationResult alloc = AllocateRaw(Cell::kSize, OLD_SPACE); in CreateInitialMaps()
Dspaces.cc806 return owner()->identity() == OLD_SPACE; in InOldSpace()
1556 if (identity() != OLD_SPACE && identity() != CODE_SPACE && in AllocateChunk()
/external/v8/src/
Dglobals.h557 OLD_SPACE, // Old generation regular object space. enumerator
565 FIRST_GROWABLE_PAGED_SPACE = OLD_SPACE,
Dobjects-printer.cc78 if (chunk->owner()->identity() == OLD_SPACE) os << " in OldSpace"; in PrintHeader()
Dcode-stub-assembler.cc1202 AllocateTargetSpace::encode(AllocationSpace::OLD_SPACE))); in AllocateRaw()
/external/v8/src/snapshot/
Ddeserializer.cc420 CASE_STATEMENT(where, how, within, OLD_SPACE) \ in ReadData()
Dserializer.cc552 (allocation_size > kMaxRegularHeapObjectSize) ? LO_SPACE : OLD_SPACE; in SerializeExternalStringAsSequentialString()
/external/v8/src/builtins/
Dbuiltins-internal-gen.cc1113 int flags = AllocateTargetSpace::encode(OLD_SPACE); in TF_BUILTIN()