()
| 100 | fn empty() -> Self { |
| 101 | Self { root: PageStorageTreeNode::empty(), base_address: 0, page_size: PageSize::largest() } |
| 102 | } |
| 103 | |
| 104 | /// Find the largest page size we can create a page at. |
| 105 | /// Precondition: The current address is aligned to the given page size. |
| 106 | #[rr::requires("Haddr_aligned" : "address `aligned_to` page_size_in_bytes_nat page_size")] |
| 107 | /// Precondition: The current address is in bounds of the given memory region. |
nothing calls this directly
no outgoing calls
no test coverage detected