/third_party/node/deps/v8/src/heap/ |
D | memory-allocator.cc | 30 size_t MemoryAllocator::commit_page_size_ = 0; 31 size_t MemoryAllocator::commit_page_size_bits_ = 0; 33 MemoryAllocator::MemoryAllocator(Isolate* isolate, in MemoryAllocator() function in v8::internal::MemoryAllocator 48 void MemoryAllocator::TearDown() { in TearDown() 65 class MemoryAllocator::Unmapper::UnmapFreeMemoryJob : public JobTask { 106 void MemoryAllocator::Unmapper::FreeQueuedChunks() { in FreeQueuedChunks() 123 void MemoryAllocator::Unmapper::CancelAndWaitForPendingTasks() { in CancelAndWaitForPendingTasks() 133 void MemoryAllocator::Unmapper::PrepareForGC() { in PrepareForGC() 138 void MemoryAllocator::Unmapper::EnsureUnmappingCompleted() { in EnsureUnmappingCompleted() 143 void MemoryAllocator::Unmapper::PerformFreeMemoryOnQueuedNonRegularChunks( in PerformFreeMemoryOnQueuedNonRegularChunks() [all …]
|
D | memory-allocator.h | 39 class MemoryAllocator { 47 Unmapper(Heap* heap, MemoryAllocator* allocator) in Unmapper() 129 MemoryAllocator* const allocator_; 134 friend class MemoryAllocator; variable 177 V8_EXPORT_PRIVATE MemoryAllocator(Isolate* isolate, 187 MemoryAllocator::AllocationMode alloc_mode, Space* space, 199 V8_EXPORT_PRIVATE void Free(MemoryAllocator::FreeMode mode, 417 DISALLOW_IMPLICIT_CONSTRUCTORS(MemoryAllocator);
|
D | memory-chunk-layout.cc | 19 MemoryAllocator::GetCommitPageSize()); in CodePageGuardStartOffset() 23 return MemoryAllocator::GetCommitPageSize(); in CodePageGuardSize() 36 static_cast<int>(MemoryAllocator::GetCommitPageSize()); in ObjectEndOffsetInCodePage()
|
D | memory-chunk.cc | 23 MemoryAllocator::ComputeDiscardMemoryArea(addr, size); in DiscardUnusedMemory() 25 MemoryAllocator* memory_allocator = heap_->memory_allocator(); in DiscardUnusedMemory() 65 size_t page_size = MemoryAllocator::GetCommitPageSize(); in DecrementWriteUnprotectCounterAndMaybeSetPermissions() 93 size_t page_size = MemoryAllocator::GetCommitPageSize(); in SetCodeModificationPermissions() 164 size_t page_size = MemoryAllocator::GetCommitPageSize(); in MemoryChunk() 182 MemoryAllocator::GetCommitPageSizeBits(), size()); in MemoryChunk() 202 return active_system_pages_.Size(MemoryAllocator::GetCommitPageSizeBits()); in CommittedPhysicalMemory()
|
D | read-only-spaces.h | 23 class MemoryAllocator; variable 185 V8_EXPORT_PRIVATE virtual void TearDown(MemoryAllocator* memory_allocator); 240 void SetPermissionsForPages(MemoryAllocator* memory_allocator, 293 void TearDown(MemoryAllocator* memory_allocator) override;
|
D | new-spaces.cc | 74 MemoryAllocator::FreeMode::kConcurrentlyAndPool, current_page); in EnsureCurrentCapacity() 84 MemoryAllocator::AllocationMode::kUsePool, this, NOT_EXECUTABLE); in EnsureCurrentCapacity() 129 MemoryAllocator::AllocationMode::kUsePool, this, NOT_EXECUTABLE); in Commit() 156 MemoryAllocator::FreeMode::kConcurrentlyAndPool, chunk); in Uncommit() 191 MemoryAllocator::AllocationMode::kUsePool, this, NOT_EXECUTABLE); in GrowTo() 215 MemoryAllocator::FreeMode::kConcurrentlyAndPool, last); in RewindPages() 340 MemoryAllocator::GetCommitPageSizeBits()); in AddRangeToActiveSystemPages() 342 MemoryAllocator::GetCommitPageSize()); in AddRangeToActiveSystemPages()
|
D | paged-spaces.cc | 110 heap()->memory_allocator()->Free(MemoryAllocator::FreeMode::kImmediately, in TearDown() 347 MemoryAllocator::AllocationMode::kRegular, this, executable()); in Expand() 359 MemoryAllocator::AllocationMode::kRegular, this, executable()); in ExpandBackground() 519 heap()->memory_allocator()->Free(MemoryAllocator::FreeMode::kConcurrently, in ReleasePage() 1019 MemoryAllocator::GetCommitPageSizeBits()); in AddRangeToActiveSystemPages() 1022 MemoryAllocator::GetCommitPageSize()); in AddRangeToActiveSystemPages() 1030 MemoryAllocator::GetCommitPageSize()); in ReduceActiveSystemPages()
|
D | read-only-spaces.cc | 301 void SharedReadOnlySpace::TearDown(MemoryAllocator* memory_allocator) { in TearDown() 310 void ReadOnlySpace::TearDown(MemoryAllocator* memory_allocator) { in TearDown() 351 void ReadOnlySpace::SetPermissionsForPages(MemoryAllocator* memory_allocator, in SetPermissionsForPages() 731 MemoryAllocator::GetCommitPageSize()); in ShrinkToHighWaterMark() 733 DCHECK_EQ(0u, unused % MemoryAllocator::GetCommitPageSize()); in ShrinkToHighWaterMark()
|
D | large-spaces.cc | 75 MemoryAllocator::GetCommitPageSize()); in GetAddressToShrink() 124 heap()->memory_allocator()->Free(MemoryAllocator::FreeMode::kImmediately, in TearDown() 342 heap()->memory_allocator()->Free(MemoryAllocator::FreeMode::kConcurrently, in FreeUnmarkedObjects() 566 heap()->memory_allocator()->Free(MemoryAllocator::FreeMode::kConcurrently, in FreeDeadObjects()
|
D | spaces.cc | 149 MemoryAllocator::GetCommitPageSize()); in ShrinkToHighWaterMark() 151 DCHECK_EQ(0u, unused % MemoryAllocator::GetCommitPageSize()); in ShrinkToHighWaterMark()
|
D | large-spaces.h | 60 friend class MemoryAllocator; variable
|
D | code-range.cc | 96 return kReservedCodeRangePages * MemoryAllocator::GetCommitPageSize(); in GetWritableReservedAreaSize()
|
D | memory-chunk.h | 299 friend class MemoryAllocator; variable
|
D | sweeper.cc | 356 MemoryAllocator::GetCommitPageSizeBits(), Page::kPageSize); in RawSweep() 416 MemoryAllocator::GetCommitPageSizeBits()); in RawSweep()
|
D | basic-memory-chunk.h | 373 friend class MemoryAllocator; variable
|
D | heap.h | 94 class MemoryAllocator; variable 864 MemoryAllocator* memory_allocator() { return memory_allocator_.get(); } in memory_allocator() 865 const MemoryAllocator* memory_allocator() const { in memory_allocator() 2298 std::unique_ptr<MemoryAllocator> memory_allocator_;
|
D | spaces.h | 333 friend class MemoryAllocator;
|
D | heap.cc | 5737 new MemoryAllocator(isolate_, code_page_allocator, MaxReserved())); in SetUp() 5921 MemoryAllocator::InitializeOncePerProcess(); in InitializeOncePerProcess()
|
/third_party/vk-gl-cts/modules/egl/ |
D | teglMemoryStressTests.cpp | 69 class MemoryAllocator class 72 …MemoryAllocator (EglTestContext& eglTestCtx, EGLDisplay display, EGLConfig config, int seed, Obj… 73 ~MemoryAllocator (void); 105 MemoryAllocator::MemoryAllocator (EglTestContext& eglTestCtx, EGLDisplay display, EGLConfig config,… in MemoryAllocator() function in deqp::egl::__anon168852920111::MemoryAllocator 123 MemoryAllocator::~MemoryAllocator (void) in ~MemoryAllocator() 138 bool MemoryAllocator::allocateUntilFailure (void) in allocateUntilFailure() 182 void MemoryAllocator::allocatePBuffer (void) in allocatePBuffer() 248 void MemoryAllocator::allocateContext (void) in allocateContext() 335 MemoryAllocator* m_allocator; 401 …m_allocator = new MemoryAllocator(m_eglTestCtx, m_display, m_config, m_seed, m_spec.types, m_spec.… in iterate()
|
/third_party/mindspore/patches/ |
D | 0005-micro-for-ohos.patch | 14725 + auto packed_weight_str = MemoryAllocator::GetInstance()->GetRuntimeAddr(static_cast<float16 *>(p… 14743 + auto bias_data_str = MemoryAllocator::GetInstance()->GetRuntimeAddr(static_cast<float16 *>(bia… 15244 + auto weight_i_str = MemoryAllocator::GetInstance()->GetRuntimeAddr(static_cast<float16 *>(weight… 15245 + auto weight_h_str = MemoryAllocator::GetInstance()->GetRuntimeAddr(static_cast<float16 *>(weight… 15246 + auto weight_pro_str = MemoryAllocator::GetInstance()->GetRuntimeAddr(static_cast<float16 *>(weig… 15247 + auto input_bias_str = MemoryAllocator::GetInstance()->GetRuntimeAddr(static_cast<float16 *>(inpu… 15248 + auto state_bias_str = MemoryAllocator::GetInstance()->GetRuntimeAddr(static_cast<float16 *>(hh_b… 15249 + auto pro_bias_str = MemoryAllocator::GetInstance()->GetRuntimeAddr(static_cast<float16 *>(projec… 15322 + auto weight_i_str = MemoryAllocator::GetInstance()->GetRuntimeAddr(input_tensors_[FOURTH_INPUT]); 15324 + auto packed_weight_i_str = MemoryAllocator::GetInstance()->GetRuntimeAddr(reinterpret_cast<float… [all …]
|