Alice Wang | 4dd2093 | 2023-05-26 13:47:16 +0000 | [diff] [blame] | 1 | // Copyright 2023, The Android Open Source Project |
| 2 | // |
| 3 | // Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | // you may not use this file except in compliance with the License. |
| 5 | // You may obtain a copy of the License at |
| 6 | // |
| 7 | // http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | // |
| 9 | // Unless required by applicable law or agreed to in writing, software |
| 10 | // distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | // See the License for the specific language governing permissions and |
| 13 | // limitations under the License. |
| 14 | |
| 15 | //! Memory management. |
| 16 | |
| 17 | mod dbm; |
Alice Wang | 110476e | 2023-06-07 13:12:21 +0000 | [diff] [blame] | 18 | mod error; |
Pierre-Clément Tosi | 3d4c5c3 | 2023-05-31 16:57:06 +0000 | [diff] [blame] | 19 | mod page_table; |
Alice Wang | f47b234 | 2023-06-02 11:51:57 +0000 | [diff] [blame] | 20 | mod shared; |
| 21 | mod util; |
Alice Wang | 4dd2093 | 2023-05-26 13:47:16 +0000 | [diff] [blame] | 22 | |
Alice Wang | 110476e | 2023-06-07 13:12:21 +0000 | [diff] [blame] | 23 | pub use error::MemoryTrackerError; |
Alice Wang | b73a81b | 2023-06-07 13:05:09 +0000 | [diff] [blame] | 24 | pub use page_table::PageTable; |
Alice Wang | a9fe1fb | 2023-07-04 09:10:35 +0000 | [diff] [blame] | 25 | pub use shared::{ |
Alice Wang | 6c4cda0 | 2023-07-18 08:18:07 +0000 | [diff] [blame] | 26 | handle_permission_fault, handle_translation_fault, MemoryRange, MemoryTracker, MEMORY, |
Alice Wang | a9fe1fb | 2023-07-04 09:10:35 +0000 | [diff] [blame] | 27 | }; |
Alice Wang | 3fa9b80 | 2023-06-06 07:52:31 +0000 | [diff] [blame] | 28 | pub use util::{ |
Alice Wang | 6c4cda0 | 2023-07-18 08:18:07 +0000 | [diff] [blame] | 29 | flush, flushed_zeroize, min_dcache_line_size, page_4kb_of, PAGE_SIZE, SIZE_128KB, SIZE_2MB, |
| 30 | SIZE_4KB, SIZE_4MB, SIZE_64KB, |
Alice Wang | 3fa9b80 | 2023-06-06 07:52:31 +0000 | [diff] [blame] | 31 | }; |
Alice Wang | 6c4cda0 | 2023-07-18 08:18:07 +0000 | [diff] [blame] | 32 | |
| 33 | pub(crate) use shared::{alloc_shared, dealloc_shared}; |
| 34 | pub(crate) use util::{phys_to_virt, virt_to_phys}; |