Struct StackMap

Source
pub struct StackMap<'a> { /* private fields */ }
Expand description

A map for determining where live GC references live in a stack frame.

Note that this is currently primarily documented as cranelift’s binemit::StackMap, so for detailed documentation about this please read the docs over there.

Implementations§

Source§

impl<'a> StackMap<'a>

Source

pub fn lookup(pc: u32, section: &'a [u8]) -> Option<StackMap<'a>>

Looks up a stack map for pc within the section provided.

The section should be produced by StackMapSection in the compile::stack_map module. The pc should be relative to the start of the .text section in the final executable.

Source

pub fn iter( section: &'a [u8], ) -> Option<impl Iterator<Item = (u32, StackMap<'a>)> + 'a>

Iterate over the stack maps contained in the given stack map section.

This function takes a section as its first argument which must have been created with StackMapSection builder. This is intended to be the raw ELF_WASMTIME_STACK_MAP section from the compilation artifact.

The yielded offsets are relative to the start of the text section for this map’s code object.

Source

pub fn frame_size(&self) -> u32

Returns the byte size of this stack map’s frame.

Source

pub unsafe fn sp(&self, fp: *mut usize) -> *mut usize

Given a frame pointer, get the stack pointer.

§Safety

The fp must be the frame pointer at the code offset that this stack map is associated with.

Source

pub unsafe fn live_gc_refs( &self, sp: *mut usize, ) -> impl Iterator<Item = *mut u32> + '_

Given the stack pointer, get a reference to each live GC reference in the stack frame.

§Safety

The sp must be the stack pointer at the code offset that this stack map is associated with.

Source

pub fn offsets(&self) -> impl Iterator<Item = u32> + '_

Returns the offsets that this stack map registers GC references at.

Auto Trait Implementations§

§

impl<'a> Freeze for StackMap<'a>

§

impl<'a> RefUnwindSafe for StackMap<'a>

§

impl<'a> Send for StackMap<'a>

§

impl<'a> Sync for StackMap<'a>

§

impl<'a> Unpin for StackMap<'a>

§

impl<'a> UnwindSafe for StackMap<'a>

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>,

Source§

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>,

Source§

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.