mirror of
https://github.com/Atmosphere-NX/Atmosphere
synced 2024-11-10 07:06:34 +00:00
59 lines
2.1 KiB
C++
59 lines
2.1 KiB
C++
|
/*
|
||
|
* Copyright (c) Atmosphère-NX
|
||
|
*
|
||
|
* This program is free software; you can redistribute it and/or modify it
|
||
|
* under the terms and conditions of the GNU General Public License,
|
||
|
* version 2, as published by the Free Software Foundation.
|
||
|
*
|
||
|
* This program is distributed in the hope it will be useful, but WITHOUT
|
||
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
||
|
* more details.
|
||
|
*
|
||
|
* You should have received a copy of the GNU General Public License
|
||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||
|
*/
|
||
|
#pragma once
|
||
|
#include <stratosphere.hpp>
|
||
|
|
||
|
namespace ams::os::impl {
|
||
|
|
||
|
class VammManagerWindowsImpl {
|
||
|
public:
|
||
|
static void GetReservedRegionImpl(uintptr_t *out_start, uintptr_t *out_size) {
|
||
|
/* Reserve a 64 GB region of virtual address space. */
|
||
|
constexpr size_t ReservedRegionSize = 64_GB;
|
||
|
const auto reserved = ::VirtualAlloc(nullptr, ReservedRegionSize, MEM_RESERVE, PAGE_READWRITE);
|
||
|
AMS_ABORT_UNLESS(reserved != nullptr);
|
||
|
|
||
|
*out_start = reinterpret_cast<uintptr_t>(reserved);
|
||
|
*out_size = ReservedRegionSize;
|
||
|
}
|
||
|
|
||
|
static Result AllocatePhysicalMemoryImpl(uintptr_t address, size_t size) {
|
||
|
R_UNLESS(::VirtualAlloc(reinterpret_cast<LPVOID>(address), size, MEM_COMMIT, PAGE_READWRITE) != nullptr, os::ResultOutOfMemory());
|
||
|
R_SUCCEED();
|
||
|
}
|
||
|
|
||
|
static Result FreePhysicalMemoryImpl(uintptr_t address, size_t size) {
|
||
|
R_UNLESS(::VirtualFree(reinterpret_cast<LPVOID>(address), size, MEM_DECOMMIT), os::ResultBusy());
|
||
|
R_SUCCEED();
|
||
|
}
|
||
|
|
||
|
static consteval size_t GetExtraSystemResourceAssignedSize() {
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
static consteval size_t GetExtraSystemResourceUsedSize() {
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
static consteval bool IsVirtualAddressMemoryEnabled() {
|
||
|
return true;
|
||
|
}
|
||
|
};
|
||
|
|
||
|
using VammManagerImpl = VammManagerWindowsImpl;
|
||
|
|
||
|
}
|