summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Lioncash2019-04-07 02:47:33 -0400
committerGravatar Lioncash2019-04-07 02:47:37 -0400
commitabae7577d20d2bf963112547d222dd3a7f8230c7 (patch)
tree4735c9b497bf7dfa409e0be99c88bba2a3c57040
parentarm/arm_dynarmic: Remove unnecessary current_page_table member (diff)
downloadyuzu-abae7577d20d2bf963112547d222dd3a7f8230c7.tar.gz
yuzu-abae7577d20d2bf963112547d222dd3a7f8230c7.tar.xz
yuzu-abae7577d20d2bf963112547d222dd3a7f8230c7.zip
core/memory: Remove GetCurrentPageTable()
Now that nothing actually touches the internal page table aside from the memory subsystem itself, we can remove the accessor to it.
-rw-r--r--src/core/memory.cpp4
-rw-r--r--src/core/memory.h3
2 files changed, 1 insertions, 6 deletions
diff --git a/src/core/memory.cpp b/src/core/memory.cpp
index 332c1037c..4e0538bc2 100644
--- a/src/core/memory.cpp
+++ b/src/core/memory.cpp
@@ -38,10 +38,6 @@ void SetCurrentPageTable(Common::PageTable* page_table) {
38 } 38 }
39} 39}
40 40
41Common::PageTable* GetCurrentPageTable() {
42 return current_page_table;
43}
44
45static void MapPages(Common::PageTable& page_table, VAddr base, u64 size, u8* memory, 41static void MapPages(Common::PageTable& page_table, VAddr base, u64 size, u8* memory,
46 Common::PageType type) { 42 Common::PageType type) {
47 LOG_DEBUG(HW_Memory, "Mapping {} onto {:016X}-{:016X}", fmt::ptr(memory), base * PAGE_SIZE, 43 LOG_DEBUG(HW_Memory, "Mapping {} onto {:016X}-{:016X}", fmt::ptr(memory), base * PAGE_SIZE,
diff --git a/src/core/memory.h b/src/core/memory.h
index 1d38cdca8..a72d10a0a 100644
--- a/src/core/memory.h
+++ b/src/core/memory.h
@@ -50,9 +50,8 @@ enum : VAddr {
50 KERNEL_REGION_END = KERNEL_REGION_VADDR + KERNEL_REGION_SIZE, 50 KERNEL_REGION_END = KERNEL_REGION_VADDR + KERNEL_REGION_SIZE,
51}; 51};
52 52
53/// Currently active page table 53/// Changes the currently active page table.
54void SetCurrentPageTable(Common::PageTable* page_table); 54void SetCurrentPageTable(Common::PageTable* page_table);
55Common::PageTable* GetCurrentPageTable();
56 55
57/// Determines if the given VAddr is valid for the specified process. 56/// Determines if the given VAddr is valid for the specified process.
58bool IsValidVirtualAddress(const Kernel::Process& process, VAddr vaddr); 57bool IsValidVirtualAddress(const Kernel::Process& process, VAddr vaddr);