Struct os::mm::memory_set::MemorySet

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

address space

Fields§

§page_table: PageTable§areas: Vec<MapArea>

Implementations§

source§

impl MemorySet

source

pub fn new_bare() -> Self

Create a new empty MemorySet.

source

pub fn token(&self) -> usize

Get the page table token

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 a area

source

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

Add a new MapArea into this MemorySet. Assuming that there are no conflicts in the virtual address space.

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_base and entry point.

source

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

Create a new address space by copy code&data from a exited process’s address space.

source

pub fn activate(&self)

Change page table by writing satp CSR Register.

source

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

Translate a virtual page number to a page table entry

source

pub fn recycle_data_pages(&mut self)

Remove all MapArea

source

pub fn shrink_to(&mut self, start: VirtAddr, new_end: VirtAddr) -> bool

shrink the area to new_end

source

pub fn append_to(&mut self, start: VirtAddr, new_end: VirtAddr) -> bool

append the area to new_end

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.