5 changed files with 118 additions and 1 deletions
-
2src/core/CMakeLists.txt
-
12src/core/core.cpp
-
7src/core/core.h
-
50src/core/device_memory.cpp
-
48src/core/device_memory.h
@ -0,0 +1,50 @@ |
|||
// Copyright 2020 yuzu Emulator Project
|
|||
// Licensed under GPLv2 or any later version
|
|||
// Refer to the license.txt file included.
|
|||
|
|||
#ifdef _WIN32
|
|||
#include <windows.h>
|
|||
#endif
|
|||
|
|||
#include "common/assert.h"
|
|||
#include "core/core.h"
|
|||
#include "core/device_memory.h"
|
|||
#include "core/memory.h"
|
|||
|
|||
namespace Core { |
|||
|
|||
constexpr u64 DramSize{4ULL * 1024 * 1024 * 1024}; |
|||
|
|||
DeviceMemory::DeviceMemory(System& system) : system{system} { |
|||
#ifdef _WIN32
|
|||
base = static_cast<u8*>( |
|||
VirtualAlloc(nullptr, // System selects address
|
|||
DramSize, // Size of allocation
|
|||
MEM_RESERVE | MEM_COMMIT | MEM_WRITE_WATCH, // Allocate reserved pages
|
|||
PAGE_READWRITE)); // Protection = no access
|
|||
#else
|
|||
physical_memory.resize(DramSize); |
|||
base = physical_memory.data(); |
|||
#endif
|
|||
} |
|||
|
|||
DeviceMemory::~DeviceMemory() { |
|||
#ifdef _WIN32
|
|||
ASSERT(VirtualFree(base, DramSize, MEM_RELEASE)); |
|||
#endif
|
|||
} |
|||
|
|||
PAddr DeviceMemory::GetPhysicalAddr(VAddr addr) { |
|||
u8* pointer{system.Memory().GetPointer(addr)}; |
|||
ASSERT(pointer); |
|||
const uintptr_t offset{static_cast<uintptr_t>(pointer - GetPointer(DramMemoryMap::Base))}; |
|||
return DramMemoryMap::Base + offset; |
|||
} |
|||
|
|||
u8* DeviceMemory::GetPointer(PAddr addr) { |
|||
ASSERT(addr >= DramMemoryMap::Base); |
|||
ASSERT(addr < DramMemoryMap::Base + DramSize); |
|||
return base + (addr - DramMemoryMap::Base); |
|||
} |
|||
|
|||
} // namespace Core
|
|||
@ -0,0 +1,48 @@ |
|||
// Copyright 2020 yuzu Emulator Project |
|||
// Licensed under GPLv2 or any later version |
|||
// Refer to the license.txt file included. |
|||
|
|||
#pragma once |
|||
|
|||
#include "common/assert.h" |
|||
#include "common/common_funcs.h" |
|||
#include "core/hle/kernel/physical_memory.h" |
|||
|
|||
namespace Core { |
|||
|
|||
class System; |
|||
|
|||
namespace DramMemoryMap { |
|||
constexpr u64 Base = 0x80000000ULL; |
|||
constexpr u64 Size = 0x100000000ULL; |
|||
constexpr u64 End = Base + Size; |
|||
constexpr u64 KernelReserveBase = Base + 0x60000; |
|||
constexpr u64 SlabHeapBase = KernelReserveBase + 0x85000; |
|||
constexpr u64 SlapHeapSize = 0xa21000; |
|||
constexpr u64 SlabHeapEnd = SlabHeapBase + SlapHeapSize; |
|||
}; // namespace DramMemoryMap |
|||
|
|||
class DeviceMemory : NonCopyable { |
|||
public: |
|||
DeviceMemory(Core::System& system); |
|||
~DeviceMemory(); |
|||
|
|||
template <typename T> |
|||
PAddr GetPhysicalAddr(T* ptr) { |
|||
const auto ptr_addr{reinterpret_cast<uintptr_t>(ptr)}; |
|||
const auto base_addr{reinterpret_cast<uintptr_t>(base)}; |
|||
ASSERT(ptr_addr >= base_addr); |
|||
return ptr_addr - base_addr + DramMemoryMap::Base; |
|||
} |
|||
|
|||
PAddr GetPhysicalAddr(VAddr addr); |
|||
|
|||
u8* GetPointer(PAddr addr); |
|||
|
|||
private: |
|||
u8* base{}; |
|||
Kernel::PhysicalMemory physical_memory; |
|||
Core::System& system; |
|||
}; |
|||
|
|||
} // namespace Core |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue