Struct wasmer_vm::InstanceHandle
source · [−]pub struct InstanceHandle { /* private fields */ }
Expand description
A handle holding an InstanceRef
, which holds an Instance
of a WebAssembly module.
This is more or less a public facade of the private Instance
,
providing useful higher-level API.
Implementations
sourceimpl InstanceHandle
impl InstanceHandle
sourcepub unsafe fn new(
allocator: InstanceAllocator,
module: Arc<ModuleInfo>,
finished_functions: BoxedSlice<LocalFunctionIndex, FunctionBodyPtr>,
finished_function_call_trampolines: BoxedSlice<SignatureIndex, VMTrampoline>,
finished_memories: BoxedSlice<LocalMemoryIndex, Arc<dyn Memory>>,
finished_tables: BoxedSlice<LocalTableIndex, Arc<dyn Table>>,
finished_globals: BoxedSlice<LocalGlobalIndex, Arc<Global>>,
imports: Imports,
vmshared_signatures: BoxedSlice<SignatureIndex, VMSharedSignatureIndex>,
host_state: Box<dyn Any>,
imported_function_envs: BoxedSlice<FunctionIndex, ImportFunctionEnv>
) -> Result<Self, Trap>
pub unsafe fn new(
allocator: InstanceAllocator,
module: Arc<ModuleInfo>,
finished_functions: BoxedSlice<LocalFunctionIndex, FunctionBodyPtr>,
finished_function_call_trampolines: BoxedSlice<SignatureIndex, VMTrampoline>,
finished_memories: BoxedSlice<LocalMemoryIndex, Arc<dyn Memory>>,
finished_tables: BoxedSlice<LocalTableIndex, Arc<dyn Table>>,
finished_globals: BoxedSlice<LocalGlobalIndex, Arc<Global>>,
imports: Imports,
vmshared_signatures: BoxedSlice<SignatureIndex, VMSharedSignatureIndex>,
host_state: Box<dyn Any>,
imported_function_envs: BoxedSlice<FunctionIndex, ImportFunctionEnv>
) -> Result<Self, Trap>
Create a new InstanceHandle
pointing at a new [InstanceRef
].
Safety
This method is not necessarily inherently unsafe to call, but in general
the APIs of an Instance
are quite unsafe and have not been really
audited for safety that much. As a result the unsafety here on this
method is a low-overhead way of saying “this is an extremely unsafe type
to work with”.
Extreme care must be taken when working with InstanceHandle
and it’s
recommended to have relatively intimate knowledge of how it works
internally if you’d like to do so. If possible it’s recommended to use
the wasmer
crate API rather than this type since that is vetted for
safety.
However the following must be taken care of before calling this function:
- The memory at
instance.tables_ptr()
must be initialized with data for all the local tables. - The memory at
instance.memories_ptr()
must be initialized with data for all the local memories.
sourcepub unsafe fn finish_instantiation(
&self,
trap_handler: &(dyn TrapHandler + 'static),
data_initializers: &[DataInitializer<'_>]
) -> Result<(), Trap>
pub unsafe fn finish_instantiation(
&self,
trap_handler: &(dyn TrapHandler + 'static),
data_initializers: &[DataInitializer<'_>]
) -> Result<(), Trap>
Finishes the instantiation process started by Instance::new
.
Safety
Only safe to call immediately after instantiation.
sourcepub fn vmctx_ptr(&self) -> *mut VMContext
pub fn vmctx_ptr(&self) -> *mut VMContext
Return a raw pointer to the vmctx used by compiled wasm code.
sourcepub fn vmoffsets(&self) -> &VMOffsets
pub fn vmoffsets(&self) -> &VMOffsets
Return a reference to the VMOffsets
to get offsets in the
Self::vmctx_ptr
region. Be careful when doing pointer
arithmetic!
sourcepub fn module(&self) -> &Arc<ModuleInfo>
pub fn module(&self) -> &Arc<ModuleInfo>
Return a reference-counting pointer to a module.
sourcepub fn module_ref(&self) -> &ModuleInfo
pub fn module_ref(&self) -> &ModuleInfo
Return a reference to a module.
sourcepub fn lookup_by_declaration(&self, export: &ExportIndex) -> VMExtern
pub fn lookup_by_declaration(&self, export: &ExportIndex) -> VMExtern
Lookup an export with the given export declaration.
sourcepub fn exports(&self) -> Iter<'_, String, ExportIndex>
pub fn exports(&self) -> Iter<'_, String, ExportIndex>
Return an iterator over the exports of this instance.
Specifically, it provides access to the key-value pairs, where the keys
are export names, and the values are export declarations which can be
resolved lookup_by_declaration
.
sourcepub fn host_state(&self) -> &dyn Any
pub fn host_state(&self) -> &dyn Any
Return a reference to the custom state attached to this instance.
sourcepub fn memory_index(&self, memory: &VMMemoryDefinition) -> LocalMemoryIndex
pub fn memory_index(&self, memory: &VMMemoryDefinition) -> LocalMemoryIndex
Return the memory index for the given VMMemoryDefinition
in this instance.
sourcepub fn memory_grow<IntoPages>(
&self,
memory_index: LocalMemoryIndex,
delta: IntoPages
) -> Result<Pages, MemoryError> where
IntoPages: Into<Pages>,
pub fn memory_grow<IntoPages>(
&self,
memory_index: LocalMemoryIndex,
delta: IntoPages
) -> Result<Pages, MemoryError> where
IntoPages: Into<Pages>,
Grow memory in this instance by the specified amount of pages.
Returns None
if memory can’t be grown by the specified amount
of pages.
sourcepub fn table_index(&self, table: &VMTableDefinition) -> LocalTableIndex
pub fn table_index(&self, table: &VMTableDefinition) -> LocalTableIndex
Return the table index for the given VMTableDefinition
in this instance.
sourcepub fn table_grow(
&self,
table_index: LocalTableIndex,
delta: u32,
init_value: TableElement
) -> Option<u32>
pub fn table_grow(
&self,
table_index: LocalTableIndex,
delta: u32,
init_value: TableElement
) -> Option<u32>
Grow table in this instance by the specified amount of pages.
Returns None
if memory can’t be grown by the specified amount
of pages.
sourcepub fn table_get(
&self,
table_index: LocalTableIndex,
index: u32
) -> Option<TableElement>
pub fn table_get(
&self,
table_index: LocalTableIndex,
index: u32
) -> Option<TableElement>
Get table element reference.
Returns None
if index is out of bounds.
sourcepub fn table_set(
&self,
table_index: LocalTableIndex,
index: u32,
val: TableElement
) -> Result<(), Trap>
pub fn table_set(
&self,
table_index: LocalTableIndex,
index: u32,
val: TableElement
) -> Result<(), Trap>
Set table element reference.
Returns an error if the index is out of bounds
sourcepub fn get_local_table(&self, index: LocalTableIndex) -> &dyn Table
pub fn get_local_table(&self, index: LocalTableIndex) -> &dyn Table
Get a table defined locally within this module.
sourcepub unsafe fn initialize_host_envs<Err: Sized>(
&mut self,
instance_ptr: *const c_void
) -> Result<(), Err>
pub unsafe fn initialize_host_envs<Err: Sized>(
&mut self,
instance_ptr: *const c_void
) -> Result<(), Err>
Initializes the host environments.
Safety
- This function must be called with the correct
Err
type parameter: the error type is not visible to code inwasmer_vm
, so it’s the caller’s responsibility to ensure these functions are called with the correct type. instance_ptr
must point to a validwasmer::Instance
.
Trait Implementations
sourceimpl Debug for InstanceHandle
impl Debug for InstanceHandle
sourceimpl MemoryUsage for InstanceHandle
impl MemoryUsage for InstanceHandle
sourcefn size_of_val(&self, visited: &mut dyn MemoryUsageTracker) -> usize
fn size_of_val(&self, visited: &mut dyn MemoryUsageTracker) -> usize
Returns the size of the referenced value in bytes. Read more
sourceimpl PartialEq<InstanceHandle> for InstanceHandle
impl PartialEq<InstanceHandle> for InstanceHandle
sourcefn eq(&self, other: &InstanceHandle) -> bool
fn eq(&self, other: &InstanceHandle) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &InstanceHandle) -> bool
fn ne(&self, other: &InstanceHandle) -> bool
This method tests for !=
.
impl StructuralPartialEq for InstanceHandle
Auto Trait Implementations
impl !RefUnwindSafe for InstanceHandle
impl Send for InstanceHandle
impl Sync for InstanceHandle
impl Unpin for InstanceHandle
impl !UnwindSafe for InstanceHandle
Blanket Implementations
impl<T> ArchivePointee for T
impl<T> ArchivePointee for T
type ArchivedMetadata = ()
type ArchivedMetadata = ()
The archived version of the pointer metadata for this type.
fn pointer_metadata(
&<T as ArchivePointee>::ArchivedMetadata
) -> <T as Pointee>::Metadata
fn pointer_metadata(
&<T as ArchivePointee>::ArchivedMetadata
) -> <T as Pointee>::Metadata
Converts some archived metadata to the pointer metadata for itself.
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<F, W, T, D> Deserialize<With<T, W>, D> for F where
W: DeserializeWith<F, T, D>,
D: Fallible + ?Sized,
F: ?Sized,
impl<F, W, T, D> Deserialize<With<T, W>, D> for F where
W: DeserializeWith<F, T, D>,
D: Fallible + ?Sized,
F: ?Sized,
fn deserialize(
&self,
deserializer: &mut D
) -> Result<With<T, W>, <D as Fallible>::Error>
fn deserialize(
&self,
deserializer: &mut D
) -> Result<With<T, W>, <D as Fallible>::Error>
Deserializes using the given deserializer
sourceimpl<T> Upcastable for T where
T: 'static + Any + Send + Sync,
impl<T> Upcastable for T where
T: 'static + Any + Send + Sync,
sourcefn upcast_any_ref(&self) -> &(dyn Any + 'static)
fn upcast_any_ref(&self) -> &(dyn Any + 'static)
upcast ref
sourcefn upcast_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn upcast_any_mut(&mut self) -> &mut (dyn Any + 'static)
upcast mut ref