���� JFIF �� � ( %"1"%)+...383,7(-.-
![]() Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20 System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64 User : apache ( 48) PHP Version : 7.4.20 Disable Function : NONE Directory : /home/real/node-v13.0.1/deps/v8/src/base/ |
// Copyright 2017 the V8 project authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "src/base/page-allocator.h" #include "src/base/platform/platform.h" namespace v8 { namespace base { #define STATIC_ASSERT_ENUM(a, b) \ static_assert(static_cast<int>(a) == static_cast<int>(b), \ "mismatching enum: " #a) STATIC_ASSERT_ENUM(PageAllocator::kNoAccess, base::OS::MemoryPermission::kNoAccess); STATIC_ASSERT_ENUM(PageAllocator::kReadWrite, base::OS::MemoryPermission::kReadWrite); STATIC_ASSERT_ENUM(PageAllocator::kReadWriteExecute, base::OS::MemoryPermission::kReadWriteExecute); STATIC_ASSERT_ENUM(PageAllocator::kReadExecute, base::OS::MemoryPermission::kReadExecute); #undef STATIC_ASSERT_ENUM PageAllocator::PageAllocator() : allocate_page_size_(base::OS::AllocatePageSize()), commit_page_size_(base::OS::CommitPageSize()) {} void PageAllocator::SetRandomMmapSeed(int64_t seed) { base::OS::SetRandomMmapSeed(seed); } void* PageAllocator::GetRandomMmapAddr() { return base::OS::GetRandomMmapAddr(); } void* PageAllocator::AllocatePages(void* hint, size_t size, size_t alignment, PageAllocator::Permission access) { return base::OS::Allocate(hint, size, alignment, static_cast<base::OS::MemoryPermission>(access)); } bool PageAllocator::FreePages(void* address, size_t size) { return base::OS::Free(address, size); } bool PageAllocator::ReleasePages(void* address, size_t size, size_t new_size) { DCHECK_LT(new_size, size); return base::OS::Release(reinterpret_cast<uint8_t*>(address) + new_size, size - new_size); } bool PageAllocator::SetPermissions(void* address, size_t size, PageAllocator::Permission access) { return base::OS::SetPermissions( address, size, static_cast<base::OS::MemoryPermission>(access)); } bool PageAllocator::DiscardSystemPages(void* address, size_t size) { return base::OS::DiscardSystemPages(address, size); } } // namespace base } // namespace v8