[−][src]Struct wasmer_vm::InstanceHandle
A handle holding an Instance
of a WebAssembly module.
Implementations
impl InstanceHandle
[src]
pub fn set_signal_handler<H>(&self, handler: H) where
H: 'static + Fn(c_int, *const siginfo_t, *const c_void) -> bool,
[src]
H: 'static + Fn(c_int, *const siginfo_t, *const c_void) -> bool,
Set a custom signal handler
impl InstanceHandle
[src]
pub unsafe fn new(
module: Arc<ModuleInfo>,
finished_functions: BoxedSlice<LocalFunctionIndex, FunctionBodyPtr>,
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>
) -> Result<Self, Trap>
[src]
module: Arc<ModuleInfo>,
finished_functions: BoxedSlice<LocalFunctionIndex, FunctionBodyPtr>,
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>
) -> Result<Self, Trap>
Create a new InstanceHandle
pointing at a new Instance
.
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.
pub unsafe fn finish_instantiation(
&self,
data_initializers: &[DataInitializer<'_>]
) -> Result<(), Trap>
[src]
&self,
data_initializers: &[DataInitializer<'_>]
) -> Result<(), Trap>
Finishes the instantiation process started by Instance::new
.
Safety
Only safe to call immediately after instantiation.
pub unsafe fn from_vmctx(vmctx: *mut VMContext) -> Self
[src]
Create a new InstanceHandle
pointing at the instance
pointed to by the given VMContext
pointer.
Safety
This is unsafe because it doesn't work on just any VMContext
, it must
be a VMContext
allocated as part of an Instance
.
pub fn vmctx(&self) -> &VMContext
[src]
Return a reference to the vmctx used by compiled wasm code.
pub fn vmctx_ptr(&self) -> *mut VMContext
[src]
Return a raw pointer to the vmctx used by compiled wasm code.
pub fn module(&self) -> &Arc<ModuleInfo>
[src]
Return a reference-counting pointer to a module.
pub fn module_ref(&self) -> &ModuleInfo
[src]
Return a reference to a module.
pub fn lookup(&self, field: &str) -> Option<Export>
[src]
Lookup an export with the given name.
pub fn lookup_by_declaration(&self, export: &ExportIndex) -> Export
[src]
Lookup an export with the given export declaration.
pub fn exports(&self) -> Iter<'_, String, ExportIndex>
[src]
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
.
pub fn host_state(&self) -> &dyn Any
[src]
Return a reference to the custom state attached to this instance.
pub fn memory_index(&self, memory: &VMMemoryDefinition) -> LocalMemoryIndex
[src]
Return the memory index for the given VMMemoryDefinition
in this instance.
pub fn memory_grow<IntoPages>(
&self,
memory_index: LocalMemoryIndex,
delta: IntoPages
) -> Result<Pages, MemoryError> where
IntoPages: Into<Pages>,
[src]
&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.
pub fn table_index(&self, table: &VMTableDefinition) -> LocalTableIndex
[src]
Return the table index for the given VMTableDefinition
in this instance.
pub fn table_grow(
&self,
table_index: LocalTableIndex,
delta: u32
) -> Option<u32>
[src]
&self,
table_index: LocalTableIndex,
delta: u32
) -> 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.
pub fn table_get(
&self,
table_index: LocalTableIndex,
index: u32
) -> Option<VMCallerCheckedAnyfunc>
[src]
&self,
table_index: LocalTableIndex,
index: u32
) -> Option<VMCallerCheckedAnyfunc>
Get table element reference.
Returns None
if index is out of bounds.
pub fn table_set(
&self,
table_index: LocalTableIndex,
index: u32,
val: VMCallerCheckedAnyfunc
) -> Result<(), Trap>
[src]
&self,
table_index: LocalTableIndex,
index: u32,
val: VMCallerCheckedAnyfunc
) -> Result<(), Trap>
Set table element reference.
Returns an error if the index is out of bounds
pub fn get_local_table(&self, index: LocalTableIndex) -> &dyn Table
[src]
Get a table defined locally within this module.
pub unsafe fn dealloc(&self)
[src]
Deallocates memory associated with this instance.
Safety
This is unsafe because there might be other handles to this
InstanceHandle
elsewhere, and there's nothing preventing
usage of this handle after this function is called.
Trait Implementations
impl Clone for InstanceHandle
[src]
fn clone(&self) -> Self
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Eq for InstanceHandle
[src]
impl Hash for InstanceHandle
[src]
fn hash<__H: Hasher>(&self, state: &mut __H)
[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
H: Hasher,
impl PartialEq<InstanceHandle> for InstanceHandle
[src]
fn eq(&self, other: &InstanceHandle) -> bool
[src]
fn ne(&self, other: &InstanceHandle) -> bool
[src]
impl Send for InstanceHandle
[src]
Safety
This is safe because there is no thread-specific logic in InstanceHandle
.
TODO: this needs extra review
impl StructuralEq for InstanceHandle
[src]
impl StructuralPartialEq for InstanceHandle
[src]
Auto Trait Implementations
impl !RefUnwindSafe for InstanceHandle
impl !Sync for InstanceHandle
impl Unpin for InstanceHandle
impl !UnwindSafe for InstanceHandle
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<Q, K> Equivalent<K> for Q where
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized,
[src]
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized,
fn equivalent(&self, key: &K) -> bool
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,