Struct os::mm::MemorySet

source ·
pub struct MemorySet {
    page_table: PageTable,
    areas: Vec<MapArea>,
}
Expand description

memory set structure, controls virtual-memory space

Fields§

§page_table: PageTable§areas: Vec<MapArea>

Implementations§

source§

impl MemorySet

source

pub fn new_bare() -> Self

Create an empty MemorySet

source

pub fn token(&self) -> usize

Get pagetable root_ppn

source

pub fn insert_framed_area( &mut self, start_va: VirtAddr, end_va: VirtAddr, permission: MapPermission )

Assume that no conflicts.

source

pub fn remove_area_with_start_vpn(&mut self, start_vpn: VirtPageNum)

Remove MapArea that starts with start_vpn

source

fn push(&mut self, map_area: MapArea, data: Option<&[u8]>)

source

fn map_trampoline(&mut self)

Mention that trampoline is not collected by areas.

source

pub fn new_kernel() -> Self

Without kernel stacks.

source

pub fn from_elf(elf_data: &[u8]) -> (Self, usize, usize)

Include sections in elf and trampoline and TrapContext and user stack, also returns user_sp and entry point.

source

pub fn from_existed_user(user_space: &Self) -> Self

Clone a same MemorySet

source

pub fn activate(&self)

Refresh TLB with sfence.vma

source

pub fn translate(&self, vpn: VirtPageNum) -> Option<PageTableEntry>

Translate throuth pagetable

source

pub fn recycle_data_pages(&mut self)

Remove all MapArea

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.