Home
last modified time | relevance | path

Searched refs:AllocateRaw (Results 1 – 25 of 36) sorted by relevance

12

/third_party/node/deps/v8/src/heap/
Dheap-allocator-inl.h56 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 …]
Dheap-allocator.cc46 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()
Dlocal-heap-inl.h19 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()
Devacuation-allocator-inl.h23 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()
Dlarge-spaces.h174 AllocateRaw(int object_size);
186 V8_WARN_UNUSED_RESULT AllocationResult AllocateRaw(int object_size,
197 AllocateRaw(int object_size);
217 AllocateRaw(int object_size);
Dsetup-heap-internal.cc146 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 …]
Dconcurrent-allocator.cc37 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()
Dheap-allocator.h39 AllocateRaw(int size_in_bytes, AllocationType allocation,
47 V8_WARN_UNUSED_RESULT V8_INLINE AllocationResult AllocateRaw(
Dlarge-spaces.cc142 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()
Dconcurrent-allocator-inl.h21 AllocationResult ConcurrentAllocator::AllocateRaw(int object_size, in AllocateRaw() function
Dlocal-factory.cc46 HeapObject LocalFactory::AllocateRaw(int size, AllocationType allocation, in AllocateRaw() function in v8::internal::LocalFactory
Dlocal-factory.h56 HeapObject AllocateRaw(int size, AllocationType allocation,
Dconcurrent-allocator.h45 inline AllocationResult AllocateRaw(int object_size,
Dnew-spaces-inl.h91 return AllocateRaw(size_in_bytes, alignment, origin); in AllocateRawSynchronized()
Dfactory-base.cc937 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()
Dread-only-spaces.h195 AllocationResult AllocateRaw(int size_in_bytes,
Dheap-inl.h200 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()
Dlocal-heap.h137 V8_WARN_UNUSED_RESULT inline AllocationResult AllocateRaw(
Dspaces-inl.h240 AllocationResult SpaceWithLinearArea::AllocateRaw(int size_in_bytes, in AllocateRaw() function
Dlocal-heap.cc398 AllocationResult result = AllocateRaw(object_size, type, origin, alignment); in PerformCollectionAndAllocateAgain()
Dfactory-base.h315 HeapObject AllocateRaw(int size, AllocationType allocation, in EXPORT_TEMPLATE_DECLARE()
Dspaces.h518 AllocateRaw(int size_in_bytes, AllocationAlignment alignment,
Dfactory.cc310 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()
Dscavenger-inl.h168 allocation = shared_old_allocator_->AllocateRaw(object_size, alignment, in PromoteObject()
Dread-only-spaces.cc709 AllocationResult ReadOnlySpace::AllocateRaw(int size_in_bytes, in AllocateRaw() function in v8::internal::ReadOnlySpace

12