/external/v8/test/cctest/ |
D | test-mark-compact.cc | 99 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()
|
D | test-serialize.cc | 186 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()
|
D | test-spaces.cc | 305 OLD_POINTER_SPACE, in TEST() 377 OLD_POINTER_SPACE, in TEST()
|
D | test-heap.cc | 449 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/ |
D | snapshot-common.cc | 19 deserializer->set_reservation(OLD_POINTER_SPACE, pointer_space_used_); in ReserveSpaceForLinkedInSnapshot() 63 deserializer.set_reservation(OLD_POINTER_SPACE, context_pointer_space_used_); in NewContextFromSnapshot()
|
D | snapshot-external.cc | 60 deserializer.set_reservation(OLD_POINTER_SPACE, in Initialize() 87 deserializer.set_reservation(OLD_POINTER_SPACE, in NewContextFromSnapshot()
|
D | globals.h | 360 OLD_POINTER_SPACE, // May contain pointers to new space. enumerator 371 FIRST_PAGED_SPACE = OLD_POINTER_SPACE,
|
D | mksnapshot.cc | 88 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()
|
D | factory.cc | 58 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()
|
D | serialize.cc | 932 CASE_STATEMENT(where, how, within, OLD_POINTER_SPACE) \ in ReadChunk()
|
D | hydrogen-instructions.h | 5643 ? (Heap::TargetSpaceId(instance_type) == OLD_POINTER_SPACE in ComputeFlags()
|
/external/v8/src/heap/ |
D | heap-inl.h | 194 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()
|
D | heap.cc | 730 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 …]
|
D | heap.h | 603 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()
|
D | mark-compact.cc | 582 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()
|
D | spaces.cc | 992 case OLD_POINTER_SPACE: in SizeOfFirstPage()
|
/external/v8/src/arm64/ |
D | lithium-codegen-arm64.cc | 1627 flags = AllocateTargetSpace::update(flags, OLD_POINTER_SPACE); in DoDeferredAllocate()
|
/external/v8/src/x64/ |
D | lithium-codegen-x64.cc | 5389 flags = AllocateTargetSpace::update(flags, OLD_POINTER_SPACE); in DoDeferredAllocate()
|
/external/v8/src/ia32/ |
D | lithium-codegen-ia32.cc | 5217 flags = AllocateTargetSpace::update(flags, OLD_POINTER_SPACE); in DoDeferredAllocate()
|
/external/v8/src/arm/ |
D | lithium-codegen-arm.cc | 5418 flags = AllocateTargetSpace::update(flags, OLD_POINTER_SPACE); in DoDeferredAllocate()
|
/external/v8/src/mips64/ |
D | lithium-codegen-mips64.cc | 5415 flags = AllocateTargetSpace::update(flags, OLD_POINTER_SPACE); in DoDeferredAllocate()
|
/external/v8/src/x87/ |
D | lithium-codegen-x87.cc | 5811 flags = AllocateTargetSpace::update(flags, OLD_POINTER_SPACE); in DoDeferredAllocate()
|
/external/v8/src/mips/ |
D | lithium-codegen-mips.cc | 5383 flags = AllocateTargetSpace::update(flags, OLD_POINTER_SPACE); in DoDeferredAllocate()
|