summaryrefslogtreecommitdiff
path: root/src/common/page_table.h
diff options
context:
space:
mode:
authorGravatar bunnei2019-03-03 23:54:16 -0500
committerGravatar bunnei2019-03-20 22:36:02 -0400
commit22d3dfbcd4c606d40e5ae36970db4661c302859f (patch)
tree24bf6fe7420aab7a34be7782bc1830e053b64679 /src/common/page_table.h
parentgpu: Move GPUVAddr definition to common_types. (diff)
downloadyuzu-22d3dfbcd4c606d40e5ae36970db4661c302859f.tar.gz
yuzu-22d3dfbcd4c606d40e5ae36970db4661c302859f.tar.xz
yuzu-22d3dfbcd4c606d40e5ae36970db4661c302859f.zip
gpu: Rewrite virtual memory manager using PageTable.
Diffstat (limited to 'src/common/page_table.h')
-rw-r--r--src/common/page_table.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/common/page_table.h b/src/common/page_table.h
index 8339f2890..8b8ff0bb8 100644
--- a/src/common/page_table.h
+++ b/src/common/page_table.h
@@ -21,6 +21,8 @@ enum class PageType : u8 {
21 RasterizerCachedMemory, 21 RasterizerCachedMemory,
22 /// Page is mapped to a I/O region. Writing and reading to this page is handled by functions. 22 /// Page is mapped to a I/O region. Writing and reading to this page is handled by functions.
23 Special, 23 Special,
24 /// Page is allocated for use.
25 Allocated,
24}; 26};
25 27
26struct SpecialRegion { 28struct SpecialRegion {
@@ -66,7 +68,7 @@ struct PageTable {
66 * Contains MMIO handlers that back memory regions whose entries in the `attribute` vector is 68 * Contains MMIO handlers that back memory regions whose entries in the `attribute` vector is
67 * of type `Special`. 69 * of type `Special`.
68 */ 70 */
69 boost::icl::interval_map<VAddr, std::set<SpecialRegion>> special_regions; 71 boost::icl::interval_map<u64, std::set<SpecialRegion>> special_regions;
70 72
71 /** 73 /**
72 * Vector of fine grained page attributes. If it is set to any value other than `Memory`, then 74 * Vector of fine grained page attributes. If it is set to any value other than `Memory`, then
@@ -74,6 +76,8 @@ struct PageTable {
74 */ 76 */
75 std::vector<PageType> attributes; 77 std::vector<PageType> attributes;
76 78
79 std::vector<u64> backing_addr;
80
77 const std::size_t page_size_in_bits{}; 81 const std::size_t page_size_in_bits{};
78}; 82};
79 83