Home
last modified time | relevance | path

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

/external/v8/src/heap/
Dheap-inl.h97 AllocationResult allocation = AllocateRaw(size, space, OLD_DATA_SPACE); in AllocateOneByteInternalizedString()
129 AllocationResult allocation = AllocateRaw(size, space, OLD_DATA_SPACE); in AllocateTwoByteInternalizedString()
166 AllocationResult Heap::AllocateRaw(int size_in_bytes, AllocationSpace space, in AllocateRaw() function
183 allocation = new_space_.AllocateRaw(size_in_bytes); in AllocateRaw()
195 allocation = old_pointer_space_->AllocateRaw(size_in_bytes); in AllocateRaw()
197 allocation = old_data_space_->AllocateRaw(size_in_bytes); in AllocateRaw()
200 allocation = code_space_->AllocateRaw(size_in_bytes); in AllocateRaw()
203 allocation = lo_space_->AllocateRaw(size_in_bytes, EXECUTABLE); in AllocateRaw()
206 allocation = lo_space_->AllocateRaw(size_in_bytes, NOT_EXECUTABLE); in AllocateRaw()
208 allocation = cell_space_->AllocateRaw(size_in_bytes); in AllocateRaw()
[all …]
Dheap.cc931 allocation = new_space()->AllocateRaw(sizes[space]); in ReserveSpace()
933 allocation = paged_space(space)->AllocateRaw(sizes[space]); in ReserveSpace()
1961 heap->new_space()->AllocateRaw(allocation_size); in SemiSpaceCopyObject()
2002 allocation = heap->old_data_space()->AllocateRaw(allocation_size); in PromoteObject()
2005 allocation = heap->old_pointer_space()->AllocateRaw(allocation_size); in PromoteObject()
2269 AllocationResult allocation = AllocateRaw(Map::kSize, MAP_SPACE, MAP_SPACE); in AllocatePartialMap()
2294 AllocationResult allocation = AllocateRaw(Map::kSize, MAP_SPACE, MAP_SPACE); in AllocateMap()
2328 AllocationResult allocation = AllocateRaw(size, space, space); in AllocateFillerObject()
2630 AllocationResult allocation = AllocateRaw(size, space, OLD_DATA_SPACE); in AllocateHeapNumber()
2647 AllocationResult allocation = AllocateRaw(size, CELL_SPACE, CELL_SPACE); in AllocateCell()
[all …]
Dspaces-inl.h248 AllocationResult PagedSpace::AllocateRaw(int size_in_bytes) { in AllocateRaw() function
274 AllocationResult NewSpace::AllocateRaw(int size_in_bytes) { in AllocateRaw() function
Dspaces.h1760 MUST_USE_RESULT inline AllocationResult AllocateRaw(int size_in_bytes);
2463 MUST_USE_RESULT INLINE(AllocationResult AllocateRaw(int size_in_bytes));
2729 AllocateRaw(int object_size, Executability executable);
Dmark-compact.cc1986 AllocationResult allocation = new_space->AllocateRaw(size); in DiscoverAndEvacuateBlackObjectsOnPage()
1994 allocation = new_space->AllocateRaw(size); in DiscoverAndEvacuateBlackObjectsOnPage()
3077 AllocationResult allocation = target_space->AllocateRaw(object_size); in TryPromoteObject()
3145 AllocationResult allocation = space->AllocateRaw(size); in EvacuateLiveObjectsFromPage()
3150 allocation = space->AllocateRaw(size); in EvacuateLiveObjectsFromPage()
Dspaces.cc1387 return AllocateRaw(size_in_bytes); in SlowAllocateRaw()
1394 return AllocateRaw(size_in_bytes); in SlowAllocateRaw()
2834 AllocationResult LargeObjectSpace::AllocateRaw(int object_size, in AllocateRaw() function in v8::internal::LargeObjectSpace
Dheap.h1662 MUST_USE_RESULT inline AllocationResult AllocateRaw(
/external/v8/test/cctest/
Dtest-spaces.cc356 Object* obj = new_space.AllocateRaw( in TEST()
384 s->AllocateRaw(Page::kMaxRegularHeapObjectSize).ToObjectChecked(); in TEST()
402 Object* obj = lo->AllocateRaw(lo_size, NOT_EXECUTABLE).ToObjectChecked(); in TEST()
415 { AllocationResult allocation = lo->AllocateRaw(lo_size, NOT_EXECUTABLE); in TEST()
423 CHECK(lo->AllocateRaw(lo_size, NOT_EXECUTABLE).IsRetry()); in TEST()
Dcctest.h489 space->AllocateRaw(new_linear_size); in SimulateFullSpace()
Dtest-heap.cc3584 space->AllocateRaw(new_linear_size); in AllocateAllButNBytes()
3645 AllocationResult allocation = CcTest::heap()->new_space()->AllocateRaw( in TEST()