/third_party/node/deps/v8/src/heap/ |
D | heap-allocator-inl.h | 56 V8_WARN_UNUSED_RESULT V8_INLINE AllocationResult HeapAllocator::AllocateRaw( in AllocateRaw() function 63 return AllocateRaw(size_in_bytes, AllocationType::kOld, origin, alignment); in AllocateRaw() 99 new_space()->AllocateRaw(size_in_bytes, alignment, origin); in AllocateRaw() 103 old_space()->AllocateRaw(size_in_bytes, alignment, origin); in AllocateRaw() 117 allocation = read_only_space()->AllocateRaw(size_in_bytes, alignment); in AllocateRaw() 120 allocation = shared_map_allocator_->AllocateRaw(size_in_bytes, in AllocateRaw() 124 allocation = shared_old_allocator_->AllocateRaw(size_in_bytes, in AllocateRaw() 161 AllocationResult HeapAllocator::AllocateRaw(int size_in_bytes, in AllocateRaw() function 167 return AllocateRaw<AllocationType::kYoung>(size_in_bytes, origin, in AllocateRaw() 170 return AllocateRaw<AllocationType::kOld>(size_in_bytes, origin, in AllocateRaw() [all …]
|
D | heap-allocator.cc | 46 return new_lo_space()->AllocateRaw(size_in_bytes); in AllocateRawLargeInternal() 48 return lo_space()->AllocateRaw(size_in_bytes); in AllocateRawLargeInternal() 50 return code_lo_space()->AllocateRaw(size_in_bytes); in AllocateRawLargeInternal() 82 AllocationResult result = AllocateRaw(size, allocation, origin, alignment); in AllocateRawWithLightRetrySlowPath() 95 result = AllocateRaw(size, allocation, origin, alignment); in AllocateRawWithLightRetrySlowPath() 119 result = AllocateRaw(size, allocation, origin, alignment); in AllocateRawWithRetryOrFailSlowPath() 124 result = AllocateRaw(size, allocation, origin, alignment); in AllocateRawWithRetryOrFailSlowPath()
|
D | local-heap-inl.h | 19 AllocationResult LocalHeap::AllocateRaw(int size_in_bytes, AllocationType type, in AllocateRaw() function 46 code_space_allocator()->AllocateRaw(size_in_bytes, alignment, origin); in AllocateRaw() 61 return old_space_allocator()->AllocateRaw(size_in_bytes, alignment, in AllocateRaw() 66 return shared_old_space_allocator()->AllocateRaw(size_in_bytes, alignment, in AllocateRaw() 74 AllocationResult result = AllocateRaw(object_size, type, origin, alignment); in AllocateRawOrFail()
|
D | evacuation-allocator-inl.h | 23 return compaction_spaces_.Get(OLD_SPACE)->AllocateRaw(object_size, in Allocate() 26 return compaction_spaces_.Get(MAP_SPACE)->AllocateRaw(object_size, in Allocate() 30 ->AllocateRaw(object_size, alignment, origin); in Allocate()
|
D | large-spaces.h | 174 AllocateRaw(int object_size); 186 V8_WARN_UNUSED_RESULT AllocationResult AllocateRaw(int object_size, 197 AllocateRaw(int object_size); 217 AllocateRaw(int object_size);
|
D | setup-heap-internal.cc | 146 AllocateRaw(Map::kSize, is_mutable ? AllocationType::kMap in AllocateMap() 163 AllocateRaw(Map::kSize, AllocationType::kReadOnly); in AllocatePartialMap() 204 AllocationResult allocation = AllocateRaw(size, allocation_type); in Allocate() 255 AllocateRaw(FixedArray::SizeFor(0), AllocationType::kReadOnly); in CreateInitialMaps() 264 AllocateRaw(WeakFixedArray::SizeFor(0), AllocationType::kReadOnly); in CreateInitialMaps() 273 AllocationResult allocation = AllocateRaw(WeakArrayList::SizeForCapacity(0), in CreateInitialMaps() 331 if (!AllocateRaw(size, AllocationType::kReadOnly).To(&obj)) return false; in CreateInitialMaps() 444 AllocationResult alloc = AllocateRaw(Cell::kSize, AllocationType::kOld); in CreateInitialMaps() 538 AllocationResult alloc = AllocateRaw( in CreateInitialMaps() 549 AllocateRaw(ScopeInfo::SizeFor(ScopeInfo::kVariablePartIndex), in CreateInitialMaps() [all …]
|
D | concurrent-allocator.cc | 37 AllocationResult result = local_heap.AllocateRaw( in RunInternal() 48 result = local_heap.AllocateRaw(kMediumObjectSize, AllocationType::kOld, in RunInternal() 59 result = local_heap.AllocateRaw(kLargeObjectSize, AllocationType::kOld, in RunInternal()
|
D | heap-allocator.h | 39 AllocateRaw(int size_in_bytes, AllocationType allocation, 47 V8_WARN_UNUSED_RESULT V8_INLINE AllocationResult AllocateRaw(
|
D | large-spaces.cc | 142 AllocationResult OldLargeObjectSpace::AllocateRaw(int object_size) { in AllocateRaw() function in v8::internal::OldLargeObjectSpace 143 return AllocateRaw(object_size, NOT_EXECUTABLE); in AllocateRaw() 146 AllocationResult OldLargeObjectSpace::AllocateRaw(int object_size, in AllocateRaw() function in v8::internal::OldLargeObjectSpace 502 AllocationResult NewLargeObjectSpace::AllocateRaw(int object_size) { in AllocateRaw() function in v8::internal::NewLargeObjectSpace 591 AllocationResult CodeLargeObjectSpace::AllocateRaw(int object_size) { in AllocateRaw() function in v8::internal::CodeLargeObjectSpace 593 return OldLargeObjectSpace::AllocateRaw(object_size, EXECUTABLE); in AllocateRaw()
|
D | concurrent-allocator-inl.h | 21 AllocationResult ConcurrentAllocator::AllocateRaw(int object_size, in AllocateRaw() function
|
D | local-factory.cc | 46 HeapObject LocalFactory::AllocateRaw(int size, AllocationType allocation, in AllocateRaw() function in v8::internal::LocalFactory
|
D | local-factory.h | 56 HeapObject AllocateRaw(int size, AllocationType allocation,
|
D | concurrent-allocator.h | 45 inline AllocationResult AllocateRaw(int object_size,
|
D | new-spaces-inl.h | 91 return AllocateRaw(size_in_bytes, alignment, origin); in AllocateRawSynchronized()
|
D | factory-base.cc | 937 HeapObject result = AllocateRaw(size, allocation); in AllocateRawArray() 981 HeapObject result = AllocateRaw(size, allocation, alignment); in AllocateRawWithImmortalMap() 988 HeapObject FactoryBase<Impl>::AllocateRaw(int size, AllocationType allocation, in AllocateRaw() function in v8::internal::FactoryBase 990 return impl()->AllocateRaw(size, allocation, alignment); in AllocateRaw()
|
D | read-only-spaces.h | 195 AllocationResult AllocateRaw(int size_in_bytes,
|
D | heap-inl.h | 200 AllocationResult Heap::AllocateRaw(int size_in_bytes, AllocationType type, in AllocateRaw() function 203 return heap_allocator_.AllocateRaw(size_in_bytes, type, origin, alignment); in AllocateRaw()
|
D | local-heap.h | 137 V8_WARN_UNUSED_RESULT inline AllocationResult AllocateRaw(
|
D | spaces-inl.h | 240 AllocationResult SpaceWithLinearArea::AllocateRaw(int size_in_bytes, in AllocateRaw() function
|
D | local-heap.cc | 398 AllocationResult result = AllocateRaw(object_size, type, origin, alignment); in PerformCollectionAndAllocateAgain()
|
D | factory-base.h | 315 HeapObject AllocateRaw(int size, AllocationType allocation, in EXPORT_TEMPLATE_DECLARE()
|
D | spaces.h | 518 AllocateRaw(int size_in_bytes, AllocationAlignment alignment,
|
D | factory.cc | 310 if (!heap->AllocateRaw(object_size, allocation_type).To(&result)) { in AllocateConcurrentSparkplugCode() 333 HeapObject Factory::AllocateRaw(int size, AllocationType allocation, in AllocateRaw() function in v8::internal::Factory 469 AllocationResult allocation = heap->AllocateRaw(size, allocation_type); in TryNewFixedArray() 1546 HeapObject raw = AllocateRaw(rtt->instance_size(), AllocationType::kOld); in NewWasmInternalFunction() 1645 AllocateRaw(WasmArray::SizeFor(*map, length), AllocationType::kYoung); in NewWasmArrayFromElements() 1675 AllocateRaw(WasmArray::SizeFor(*map, length), AllocationType::kYoung); in NewWasmArrayFromMemory() 1692 HeapObject raw = AllocateRaw(WasmStruct::Size(type), AllocationType::kYoung); in NewWasmStruct()
|
D | scavenger-inl.h | 168 allocation = shared_old_allocator_->AllocateRaw(object_size, alignment, in PromoteObject()
|
D | read-only-spaces.cc | 709 AllocationResult ReadOnlySpace::AllocateRaw(int size_in_bytes, in AllocateRaw() function in v8::internal::ReadOnlySpace
|