Struct wasmtime_wmemcheck::Wmemcheck

source ·
pub struct Wmemcheck {
    pub stack_pointer: usize,
    pub flag: bool,
    /* private fields */
}
Expand description

Memory checker for wasm guest.

Fields§

§stack_pointer: usize§flag: bool

Implementations§

source§

impl Wmemcheck

source

pub fn new(mem_size: usize) -> Wmemcheck

Initializes memory checker instance.

source

pub fn malloc(&mut self, addr: usize, len: usize) -> Result<(), AccessError>

Updates memory checker memory state metadata when malloc is called.

source

pub fn read(&mut self, addr: usize, len: usize) -> Result<(), AccessError>

Updates memory checker memory state metadata when a load occurs.

source

pub fn write(&mut self, addr: usize, len: usize) -> Result<(), AccessError>

Updates memory checker memory state metadata when a store occurs.

source

pub fn free(&mut self, addr: usize) -> Result<(), AccessError>

Updates memory checker memory state metadata when free is called.

source

pub fn update_stack_pointer(&mut self, new_sp: usize) -> Result<(), AccessError>

Updates memory checker metadata when stack pointer is updated.

source

pub fn memcheck_on(&mut self)

Turns memory checking on.

source

pub fn memcheck_off(&mut self)

Turns memory checking off.

source

pub fn set_stack_size(&mut self, stack_size: usize)

Initializes stack and stack pointer in memory checker metadata.

source

pub fn update_mem_size(&mut self, num_bytes: usize)

Updates memory checker metadata size when memory.grow is called.

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.