From 1ff31e47a491c1a4ae5c6bc5a3d4f9aead2b590e Mon Sep 17 00:00:00 2001 From: ondra05 Date: Sun, 25 Jun 2023 00:21:40 +0200 Subject: [PATCH] Stole docs --- hbvm/src/vm/mem/paging.rs | 36 ++++++++++++++++++++++++++++++++++-- 1 file changed, 34 insertions(+), 2 deletions(-) diff --git a/hbvm/src/vm/mem/paging.rs b/hbvm/src/vm/mem/paging.rs index d7ea52bc..b1979ebb 100644 --- a/hbvm/src/vm/mem/paging.rs +++ b/hbvm/src/vm/mem/paging.rs @@ -30,6 +30,10 @@ pub enum Permission { pub struct PtEntry(u64); impl PtEntry { /// Create new + /// + /// # Safety + /// - `ptr` has to point to valid data and shall not be deallocated + /// troughout the entry lifetime #[inline] pub unsafe fn new(ptr: *mut PtPointedData, permission: Permission) -> Self { Self(ptr as u64 | permission as u64) @@ -65,15 +69,43 @@ pub struct PageTable([PtEntry; 512]); impl PageTable { delegate!(to self.0 { - pub unsafe fn get(&self, ix: I) -> Option<&I::Output> + /// Returns a reference to an element or subslice depending on the type of + /// index. + /// + /// - If given a position, returns a reference to the element at that + /// position or `None` if out of bounds. + /// - If given a range, returns the subslice corresponding to that range, + /// or `None` if out of bounds. + /// + pub fn get(&self, ix: I) -> Option<&I::Output> where I: SliceIndex<[PtEntry]>; - pub unsafe fn get_mut(&mut self, ix: I) -> Option<&mut I::Output> + /// Returns a mutable reference to an element or subslice depending on the + /// type of index (see [`get`]) or `None` if the index is out of bounds. + pub fn get_mut(&mut self, ix: I) -> Option<&mut I::Output> where I: SliceIndex<[PtEntry]>; + /// Returns a reference to an element or subslice, without doing bounds + /// checking. + /// + /// For a safe alternative see [`get`]. + /// + /// # Safety + /// + /// Calling this method with an out-of-bounds index is *[undefined behavior]* + /// even if the resulting reference is not used. pub unsafe fn get_unchecked(&self, index: I) -> &I::Output where I: SliceIndex<[PtEntry]>; + /// Returns a mutable reference to an element or subslice, without doing + /// bounds checking. + /// + /// For a safe alternative see [`get_mut`]. + /// + /// # Safety + /// + /// Calling this method with an out-of-bounds index is *[undefined behavior]* + /// even if the resulting reference is not used. pub unsafe fn get_unchecked_mut(&mut self, index: I) -> &mut I::Output where I: SliceIndex<[PtEntry]>; });