mirror of
https://github.com/KytyPS5/KytyPS5.git
synced 2026-08-03 11:23:49 +00:00
* Rework guest memory tracking * add unknwon flag * Fix macOS guest address-space reservation
151 lines
5.5 KiB
C++
151 lines
5.5 KiB
C++
#include "graphics/host_gpu/renderer/cache/gpuResourceManager.h"
|
|
|
|
#include "common/assert.h"
|
|
#include "graphics/guest_gpu/command_processor/commandProcessor.h"
|
|
#include "graphics/guest_gpu/graphicsRun.h"
|
|
#include "graphics/host_gpu/renderer/commandScheduler.h"
|
|
namespace Libs::Graphics {
|
|
|
|
GpuResourceManager::GpuResourceManager(GraphicContext& graphics, CommandScheduler& scheduler)
|
|
: m_page_manager(FaultThunk, this),
|
|
m_buffer_cache(graphics, scheduler, m_page_manager, m_texture_cache, m_resource_mutex),
|
|
m_texture_cache(graphics, scheduler, m_page_manager, m_buffer_cache, m_resource_mutex) {}
|
|
|
|
GpuResourceManager::~GpuResourceManager() = default;
|
|
|
|
bool GpuResourceManager::FaultThunk(void* context, PageFaultAccess access, uint64_t vaddr,
|
|
uint64_t size, PageFaultPhase phase) noexcept {
|
|
return static_cast<GpuResourceManager*>(context)->InvalidateMemory(access, vaddr, size, phase);
|
|
}
|
|
|
|
bool GpuResourceManager::InvalidateMemory(PageFaultAccess access, uint64_t vaddr, uint64_t size,
|
|
PageFaultPhase phase) noexcept {
|
|
// Let the authoritative image materialize first. A clean overlapping buffer marks a write
|
|
// fault CPU-dirty when it begins ownership transfer; doing that before image preflight would
|
|
// make the image appear to race a real CPU write. Completion and release retain buffer-first
|
|
// ordering so its pending fault is gone before TextureCache publishes the downloaded backing.
|
|
if (phase == PageFaultPhase::Invalidate) {
|
|
const bool image_handled = m_texture_cache.InvalidateMemory(access, vaddr, size, phase);
|
|
const bool buffer_handled = m_buffer_cache.InvalidateMemory(access, vaddr, size, phase);
|
|
return buffer_handled || image_handled;
|
|
}
|
|
const bool buffer_handled = m_buffer_cache.InvalidateMemory(access, vaddr, size, phase);
|
|
const bool image_handled = m_texture_cache.InvalidateMemory(access, vaddr, size, phase);
|
|
return buffer_handled || image_handled;
|
|
}
|
|
|
|
bool GpuResourceManager::HandleFault(PageFaultAccess access, uint64_t fault_vaddr) noexcept {
|
|
constexpr uint64_t fault_size = 8;
|
|
if (!IsMapped(fault_vaddr, fault_size)) {
|
|
return false;
|
|
}
|
|
if (CommandScheduler::InDeferredOperation()) {
|
|
EXIT("unsupported guest-memory fault from an asynchronous GPU completion, "
|
|
"addr=0x%016" PRIx64 " access=%u\n",
|
|
fault_vaddr, static_cast<uint32_t>(access));
|
|
}
|
|
bool handled = false;
|
|
const auto resolve = [this, access, fault_vaddr, &handled](CommandProcessor& cp) {
|
|
cp.BeginReadbackTransaction();
|
|
{
|
|
ResourceMutex::FaultScope fault(m_resource_mutex);
|
|
if (access == PageFaultAccess::Write) {
|
|
m_buffer_cache.InvalidateMemory(fault_vaddr, fault_size);
|
|
m_texture_cache.InvalidateMemory(fault_vaddr, fault_size);
|
|
} else {
|
|
m_buffer_cache.ReadMemory(fault_vaddr, fault_size);
|
|
}
|
|
handled = true;
|
|
}
|
|
cp.EndReadbackTransaction();
|
|
};
|
|
if (auto* cp = Gpu::CurrentCommandProcessor(); cp != nullptr) {
|
|
resolve(*cp);
|
|
return handled;
|
|
}
|
|
if (m_resource_mutex.IsOwnedByCurrentThread()) {
|
|
EXIT("unsupported page fault from a pre-owned resource transaction, addr=0x%016" PRIx64
|
|
" access=%u\n",
|
|
fault_vaddr, static_cast<uint32_t>(access));
|
|
}
|
|
EXIT_IF(m_gpu == nullptr);
|
|
m_gpu->SendCommandSyncWithProcessor(resolve);
|
|
return handled;
|
|
}
|
|
|
|
bool GpuResourceManager::InvalidateMemory(uint64_t vaddr, uint64_t size) {
|
|
if (!IsMapped(vaddr, size)) {
|
|
return false;
|
|
}
|
|
if (CommandScheduler::InDeferredOperation()) {
|
|
EXIT("unsupported memory invalidation from an asynchronous GPU completion, "
|
|
"addr=0x%016" PRIx64 " size=0x%016" PRIx64 "\n",
|
|
vaddr, size);
|
|
}
|
|
const auto resolve = [this, vaddr, size](CommandProcessor& cp) {
|
|
cp.BeginReadbackTransaction();
|
|
{
|
|
ResourceMutex::FaultScope fault(m_resource_mutex);
|
|
m_buffer_cache.InvalidateMemory(vaddr, size);
|
|
m_texture_cache.InvalidateMemory(vaddr, size);
|
|
}
|
|
cp.EndReadbackTransaction();
|
|
};
|
|
if (auto* cp = Gpu::CurrentCommandProcessor(); cp != nullptr) {
|
|
resolve(*cp);
|
|
return true;
|
|
}
|
|
if (m_resource_mutex.IsOwnedByCurrentThread()) {
|
|
EXIT("unsupported memory invalidation from a pre-owned resource transaction, "
|
|
"addr=0x%016" PRIx64 " size=0x%016" PRIx64 "\n",
|
|
vaddr, size);
|
|
}
|
|
EXIT_IF(m_gpu == nullptr);
|
|
m_gpu->SendCommandSyncWithProcessor(resolve);
|
|
return true;
|
|
}
|
|
|
|
bool GpuResourceManager::IsMapped(uint64_t vaddr, uint64_t size) const noexcept {
|
|
if (vaddr == 0 || size == 0 || vaddr >= TRACKER_ADDRESS_SIZE ||
|
|
size > TRACKER_ADDRESS_SIZE - vaddr) {
|
|
return false;
|
|
}
|
|
std::shared_lock lock(m_mapped_ranges_mutex);
|
|
return m_mapped_ranges.Contains(vaddr, size);
|
|
}
|
|
|
|
void GpuResourceManager::MapMemory(uint64_t vaddr, uint64_t size) {
|
|
{
|
|
std::lock_guard lock(m_mapped_ranges_mutex);
|
|
m_mapped_ranges.Add(vaddr, size);
|
|
}
|
|
m_page_manager.OnGpuMap(vaddr, size);
|
|
}
|
|
|
|
void GpuResourceManager::UnmapMemory(uint64_t vaddr, uint64_t size) {
|
|
const auto unmap = [this, vaddr, size] {
|
|
m_buffer_cache.UnmapMemory(vaddr, size);
|
|
m_texture_cache.UnmapMemory(vaddr, size);
|
|
m_page_manager.OnGpuUnmap(vaddr, size);
|
|
std::lock_guard lock(m_mapped_ranges_mutex);
|
|
m_mapped_ranges.Subtract(vaddr, size);
|
|
};
|
|
if (m_gpu == nullptr) {
|
|
if (m_resource_mutex.IsOwnedByCurrentThread()) {
|
|
EXIT("cannot synchronously unmap from a resource transaction\n");
|
|
}
|
|
unmap();
|
|
return;
|
|
}
|
|
Gpu::SubmissionLock submissions(*m_gpu);
|
|
m_gpu->SendCommandSync(unmap);
|
|
}
|
|
|
|
void GpuResourceManager::RunGarbageCollector() {
|
|
m_texture_cache.ProcessDownloadImages();
|
|
m_texture_cache.RunGarbageCollector();
|
|
m_buffer_cache.RunGarbageCollector();
|
|
}
|
|
|
|
} // namespace Libs::Graphics
|