Home
last modified time | relevance | path

Searched refs:OLD_POINTER_SPACE (Results 1 – 23 of 23) sorted by relevance

/external/v8/test/cctest/
Dtest-mark-compact.cc99 CHECK(heap->InSpace(*array, OLD_POINTER_SPACE)); in TEST()
124 heap->CollectGarbage(OLD_POINTER_SPACE); in TEST()
139 heap->CollectGarbage(OLD_POINTER_SPACE, "trigger 1"); in TEST()
166 heap->CollectGarbage(OLD_POINTER_SPACE, "trigger 4"); in TEST()
186 heap->CollectGarbage(OLD_POINTER_SPACE, "trigger 5"); in TEST()
313 heap->CollectGarbage(OLD_POINTER_SPACE); in TEST()
340 heap->CollectGarbage(OLD_POINTER_SPACE); in TEST()
353 heap->CollectGarbage(OLD_POINTER_SPACE); in TEST()
Dtest-serialize.cc186 ser.CurrentAllocationAddress(OLD_POINTER_SPACE), in WriteToFile()
267 deserializer->set_reservation(OLD_POINTER_SPACE, pointer_size); in ReserveSpaceForSnapshot()
454 p_ser.CurrentAllocationAddress(OLD_POINTER_SPACE), in UNINITIALIZED_TEST()
463 startup_serializer.CurrentAllocationAddress(OLD_POINTER_SPACE), in UNINITIALIZED_TEST()
577 p_ser.CurrentAllocationAddress(OLD_POINTER_SPACE), in UNINITIALIZED_TEST()
586 startup_serializer.CurrentAllocationAddress(OLD_POINTER_SPACE), in UNINITIALIZED_TEST()
Dtest-spaces.cc305 OLD_POINTER_SPACE, in TEST()
377 OLD_POINTER_SPACE, in TEST()
Dtest-heap.cc449 heap->CollectGarbage(OLD_POINTER_SPACE); in TEST()
502 heap->CollectGarbage(OLD_POINTER_SPACE); in TEST()
2022 CcTest::heap()->CollectGarbage(OLD_POINTER_SPACE); in TEST()
2861 CcTest::i_isolate()->heap()->CollectGarbage(OLD_POINTER_SPACE); in TEST()
/external/v8/src/
Dsnapshot-common.cc19 deserializer->set_reservation(OLD_POINTER_SPACE, pointer_space_used_); in ReserveSpaceForLinkedInSnapshot()
63 deserializer.set_reservation(OLD_POINTER_SPACE, context_pointer_space_used_); in NewContextFromSnapshot()
Dsnapshot-external.cc60 deserializer.set_reservation(OLD_POINTER_SPACE, in Initialize()
87 deserializer.set_reservation(OLD_POINTER_SPACE, in NewContextFromSnapshot()
Dglobals.h360 OLD_POINTER_SPACE, // May contain pointers to new space. enumerator
371 FIRST_PAGED_SPACE = OLD_POINTER_SPACE,
Dmksnapshot.cc88 i::NEW_SPACE, i::OLD_POINTER_SPACE, i::OLD_DATA_SPACE, i::CODE_SPACE, in MaybeWriteStartupBlob()
194 WriteSizeVar(ser, prefix, "pointer", i::OLD_POINTER_SPACE); in WriteMeta()
Dfactory.cc58 Handle<Oddball> oddball = New<Oddball>(map, OLD_POINTER_SPACE); in NewOddball()
936 Handle<AllocationSite> site = New<AllocationSite>(map, OLD_POINTER_SPACE); in NewAllocationSite()
1247 AllocationSpace space = pretenure == TENURED ? OLD_POINTER_SPACE : NEW_SPACE; in NewFunction()
1580 Handle<GlobalObject> global = New<GlobalObject>(map, OLD_POINTER_SPACE); in NewGlobalObject()
1958 OLD_POINTER_SPACE); in NewSharedFunctionInfo()
Dserialize.cc932 CASE_STATEMENT(where, how, within, OLD_POINTER_SPACE) \ in ReadChunk()
Dhydrogen-instructions.h5643 ? (Heap::TargetSpaceId(instance_type) == OLD_POINTER_SPACE in ComputeFlags()
/external/v8/src/heap/
Dheap-inl.h194 if (OLD_POINTER_SPACE == space) { in AllocateRaw()
395 return (space == OLD_POINTER_SPACE) ? old_pointer_space_ : old_data_space_; in TargetSpace()
413 if (type == SYMBOL_TYPE) return OLD_POINTER_SPACE; in TargetSpaceId()
419 ? OLD_POINTER_SPACE in TargetSpaceId()
422 return (type <= LAST_DATA_TYPE) ? OLD_DATA_SPACE : OLD_POINTER_SPACE; in TargetSpaceId()
449 case OLD_POINTER_SPACE: in AllowedToBeMigrated()
Dheap.cc730 CollectGarbage(OLD_POINTER_SPACE, gc_reason, gc_callback_flags); in CollectAllGarbage()
2004 DCHECK(heap->AllowedToBeMigrated(object, OLD_POINTER_SPACE)); in PromoteObject()
2403 AllocationResult allocation = Allocate(null_map(), OLD_POINTER_SPACE); in CreateInitialMaps()
2410 AllocationResult allocation = Allocate(undefined_map(), OLD_POINTER_SPACE); in CreateInitialMaps()
3653 AllocationSpace space = SelectSpace(size, OLD_POINTER_SPACE, pretenure); in AllocateJSObjectFromMap()
3702 AllocateRaw(object_size, NEW_SPACE, OLD_POINTER_SPACE); in CopyJSObject()
4040 AllocationSpace space = SelectSpace(size, OLD_POINTER_SPACE, pretenure); in AllocateRawFixedArray()
4042 return AllocateRaw(size, space, OLD_POINTER_SPACE); in AllocateRawFixedArray()
4130 AllocationSpace space = SelectSpace(size, OLD_POINTER_SPACE, TENURED); in AllocateConstantPoolArray()
4134 AllocationResult allocation = AllocateRaw(size, space, OLD_POINTER_SPACE); in AllocateConstantPoolArray()
[all …]
Dheap.h603 case OLD_POINTER_SPACE: in paged_space()
1652 DCHECK(preferred_old_space == OLD_POINTER_SPACE || in SelectSpace()
2147 explicit OldSpaces(Heap* heap) : heap_(heap), counter_(OLD_POINTER_SPACE) {} in OldSpaces()
2161 explicit PagedSpaces(Heap* heap) : heap_(heap), counter_(OLD_POINTER_SPACE) {} in PagedSpaces()
Dmark-compact.cc582 SweepInParallel(heap()->paged_space(OLD_POINTER_SPACE), 0); in EnsureSweepingCompleted()
596 RefillFreeList(heap()->paged_space(OLD_POINTER_SPACE)); in EnsureSweepingCompleted()
598 heap()->paged_space(OLD_POINTER_SPACE)->ResetUnsweptFreeBytes(); in EnsureSweepingCompleted()
695 case OLD_POINTER_SPACE: in AllocationSpaceName()
769 DCHECK(space->identity() == OLD_POINTER_SPACE || in CollectEvacuationCandidates()
2891 if (dest == OLD_POINTER_SPACE) { in MigrateObject()
3622 case OLD_POINTER_SPACE: in EvacuateNewSpaceAndCandidates()
Dspaces.cc992 case OLD_POINTER_SPACE: in SizeOfFirstPage()
/external/v8/src/arm64/
Dlithium-codegen-arm64.cc1627 flags = AllocateTargetSpace::update(flags, OLD_POINTER_SPACE); in DoDeferredAllocate()
/external/v8/src/x64/
Dlithium-codegen-x64.cc5389 flags = AllocateTargetSpace::update(flags, OLD_POINTER_SPACE); in DoDeferredAllocate()
/external/v8/src/ia32/
Dlithium-codegen-ia32.cc5217 flags = AllocateTargetSpace::update(flags, OLD_POINTER_SPACE); in DoDeferredAllocate()
/external/v8/src/arm/
Dlithium-codegen-arm.cc5418 flags = AllocateTargetSpace::update(flags, OLD_POINTER_SPACE); in DoDeferredAllocate()
/external/v8/src/mips64/
Dlithium-codegen-mips64.cc5415 flags = AllocateTargetSpace::update(flags, OLD_POINTER_SPACE); in DoDeferredAllocate()
/external/v8/src/x87/
Dlithium-codegen-x87.cc5811 flags = AllocateTargetSpace::update(flags, OLD_POINTER_SPACE); in DoDeferredAllocate()
/external/v8/src/mips/
Dlithium-codegen-mips.cc5383 flags = AllocateTargetSpace::update(flags, OLD_POINTER_SPACE); in DoDeferredAllocate()