yuzu/src/common/page_table.cpp

74 lines
2.1 KiB
C++
Raw Normal View History

2022-04-23 22:49:07 +04:00
// SPDX-FileCopyrightText: Copyright 2019 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
2020-12-28 19:15:37 +04:00
#include "common/page_table.h"
namespace Common {
PageTable::PageTable() = default;
PageTable::~PageTable() noexcept = default;
2022-02-22 02:51:05 +04:00
bool PageTable::BeginTraversal(TraversalEntry& out_entry, TraversalContext& out_context,
2022-02-19 13:01:45 +04:00
u64 address) const {
// Setup invalid defaults.
2022-02-22 02:51:05 +04:00
out_entry.phys_addr = 0;
out_entry.block_size = page_size;
out_context.next_page = 0;
2022-02-19 13:01:45 +04:00
// Validate that we can read the actual entry.
const auto page = address / page_size;
if (page >= backing_addr.size()) {
return false;
}
// Validate that the entry is mapped.
const auto phys_addr = backing_addr[page];
if (phys_addr == 0) {
return false;
}
// Populate the results.
2022-02-22 02:51:05 +04:00
out_entry.phys_addr = phys_addr + address;
out_context.next_page = page + 1;
out_context.next_offset = address + page_size;
2022-02-19 13:01:45 +04:00
return true;
}
2022-02-22 02:51:05 +04:00
bool PageTable::ContinueTraversal(TraversalEntry& out_entry, TraversalContext& context) const {
2022-02-19 13:01:45 +04:00
// Setup invalid defaults.
2022-02-22 02:51:05 +04:00
out_entry.phys_addr = 0;
out_entry.block_size = page_size;
2022-02-19 13:01:45 +04:00
// Validate that we can read the actual entry.
2022-02-22 02:51:05 +04:00
const auto page = context.next_page;
2022-02-19 13:01:45 +04:00
if (page >= backing_addr.size()) {
return false;
}
// Validate that the entry is mapped.
const auto phys_addr = backing_addr[page];
if (phys_addr == 0) {
return false;
}
// Populate the results.
2022-02-22 02:51:05 +04:00
out_entry.phys_addr = phys_addr + context.next_offset;
context.next_page = page + 1;
context.next_offset += page_size;
2022-02-19 13:01:45 +04:00
return true;
}
void PageTable::Resize(std::size_t address_space_width_in_bits, std::size_t page_size_in_bits) {
const std::size_t num_page_table_entries{1ULL
<< (address_space_width_in_bits - page_size_in_bits)};
2020-12-28 19:15:37 +04:00
pointers.resize(num_page_table_entries);
backing_addr.resize(num_page_table_entries);
2021-05-29 14:00:09 +04:00
current_address_space_width_in_bits = address_space_width_in_bits;
2022-02-19 13:01:45 +04:00
page_size = 1ULL << page_size_in_bits;
2020-12-28 19:15:37 +04:00
}
} // namespace Common