/third_party/node/deps/v8/src/base/sanitizer/ |
D | lsan-page-allocator.h | 31 void* GetRandomMmapAddr() override { in GetRandomMmapAddr() function 32 return page_allocator_->GetRandomMmapAddr(); in GetRandomMmapAddr()
|
/third_party/node/deps/v8/src/base/ |
D | bounded-page-allocator.h | 66 void* GetRandomMmapAddr() override { in GetRandomMmapAddr() function 67 return page_allocator_->GetRandomMmapAddr(); in GetRandomMmapAddr()
|
D | page-allocator.cc | 42 void* PageAllocator::GetRandomMmapAddr() { in GetRandomMmapAddr() function in v8::base::PageAllocator 43 return base::OS::GetRandomMmapAddr(); in GetRandomMmapAddr()
|
D | virtual-address-space-page-allocator.h | 38 void* GetRandomMmapAddr() override { in GetRandomMmapAddr() function
|
D | page-allocator.h | 31 void* GetRandomMmapAddr() override; in NON_EXPORTED_BASE()
|
D | virtual-address-space.cc | 73 return reinterpret_cast<Address>(OS::GetRandomMmapAddr()); in RandomPageAddress()
|
/third_party/node/deps/v8/src/utils/ |
D | allocation.cc | 194 void* GetRandomMmapAddr() { in GetRandomMmapAddr() function 195 return GetPlatformPageAllocator()->GetRandomMmapAddr(); in GetRandomMmapAddr() 204 hint = AlignedAddress(page_allocator->GetRandomMmapAddr(), alignment); in AllocatePages()
|
D | allocation.h | 146 V8_EXPORT_PRIVATE void* GetRandomMmapAddr();
|
/third_party/node/deps/v8/src/heap/cppgc/ |
D | caged-heap.cc | 37 reinterpret_cast<uintptr_t>(platform_allocator.GetRandomMmapAddr()), in ReserveCagedHeap()
|
/third_party/node/deps/v8/src/zone/ |
D | accounting-allocator.cc | 34 reinterpret_cast<uintptr_t>(platform_allocator->GetRandomMmapAddr()), in ReserveAddressSpace()
|
/third_party/node/deps/v8/src/base/platform/ |
D | platform-linux.cc | 138 void* addr = mmap(OS::GetRandomMmapAddr(), size, PROT_READ | PROT_EXEC, in SignalCodeMovingGC()
|
D | platform-posix.cc | 298 void* OS::GetRandomMmapAddr() { in GetRandomMmapAddr() function in v8::base::OS 687 mmap(OS::GetRandomMmapAddr(), size, prot, flags, fileno(file), 0); in open() 706 void* memory = mmap(OS::GetRandomMmapAddr(), result, in create()
|
D | platform-starboard.cc | 131 void* OS::GetRandomMmapAddr() { return nullptr; } in GetRandomMmapAddr() function in v8::base::OS
|
D | platform.h | 355 static void* GetRandomMmapAddr();
|
D | platform-win32.cc | 805 void* OS::GetRandomMmapAddr() { in GetRandomMmapAddr() function in v8::base::OS
|
/third_party/node/deps/v8/src/init/ |
D | isolate-allocator.cc | 53 reinterpret_cast<Address>(page_allocator->GetRandomMmapAddr()); in PtrComprCageReservationParams()
|
/third_party/node/deps/v8/src/snapshot/embedded/ |
D | embedded-data.cc | 132 AlignedAddress(isolate->heap()->GetRandomMmapAddr(), alignment); in CreateOffHeapOffHeapInstructionStream() 140 AlignedAddress(isolate->heap()->GetRandomMmapAddr(), alignment); in CreateOffHeapOffHeapInstructionStream()
|
/third_party/node/deps/v8/include/ |
D | v8-platform.h | 388 virtual void* GetRandomMmapAddr() = 0;
|
/third_party/node/deps/v8/src/heap/ |
D | memory-allocator.cc | 349 void* address_hint = AlignedAddress(isolate_->heap()->GetRandomMmapAddr(), in AllocateUninitializedChunk()
|
D | heap.h | 1602 void* GetRandomMmapAddr() { in GetRandomMmapAddr() function 1603 void* result = v8::internal::GetRandomMmapAddr(); in GetRandomMmapAddr()
|
D | heap.cc | 5698 reinterpret_cast<uintptr_t>(v8::internal::GetRandomMmapAddr()) & in SetUp()
|
/third_party/node/deps/v8/src/wasm/ |
D | wasm-code-manager.cc | 1996 if (hint == nullptr) hint = page_allocator->GetRandomMmapAddr(); in TryAllocate()
|