Struct wasmtime_runtime::StackMapRegistry [−][src]
pub struct StackMapRegistry { /* fields omitted */ }
A registry of stack maps for currently active Wasm modules.
Implementations
impl StackMapRegistry
[src]
impl StackMapRegistry
[src]pub fn register_stack_maps<'a>(
&self,
stack_maps: impl IntoIterator<Item = (Range<usize>, &'a [StackMapInformation])>
)
[src]
&self,
stack_maps: impl IntoIterator<Item = (Range<usize>, &'a [StackMapInformation])>
)
Register the stack maps for a given module.
The stack maps should be given as an iterator over a function’s PC range in memory (that is, where the JIT actually allocated and emitted the function’s code at), and the stack maps and code offsets within that range for each of its GC safepoints.
pub fn lookup_stack_map(&self, pc: usize) -> Option<Rc<StackMap>>
[src]
Lookup the stack map for the given PC, if any.
Trait Implementations
impl Default for StackMapRegistry
[src]
impl Default for StackMapRegistry
[src]