pub struct StaticlibArtifact { /* private fields */ }
Expand description
A compiled wasm module, ready to be instantiated.
Implementations§
Source§impl StaticlibArtifact
impl StaticlibArtifact
Sourcepub fn is_deserializable(bytes: &[u8]) -> bool
pub fn is_deserializable(bytes: &[u8]) -> bool
Check if the provided bytes look like StaticlibArtifact
.
This means, if the bytes look like a static object file in the target system.
Sourcepub fn get_default_extension(triple: &Triple) -> &'static str
pub fn get_default_extension(triple: &Triple) -> &'static str
Get the default extension when serializing this artifact
Sourcepub fn from_parts_crosscompiled(
engine_inner: &mut StaticlibEngineInner,
metadata: ModuleMetadata,
module_bytes: Vec<u8>,
metadata_length: usize,
) -> Result<Self, CompileError>
pub fn from_parts_crosscompiled( engine_inner: &mut StaticlibEngineInner, metadata: ModuleMetadata, module_bytes: Vec<u8>, metadata_length: usize, ) -> Result<Self, CompileError>
Construct a StaticlibArtifact
from component parts.
Sourcepub fn new(
_engine: &StaticlibEngine,
_data: &[u8],
) -> Result<Self, CompileError>
pub fn new( _engine: &StaticlibEngine, _data: &[u8], ) -> Result<Self, CompileError>
Compile a data buffer into a StaticlibArtifact
, which may then be instantiated.
Sourcepub unsafe fn deserialize(
engine: &StaticlibEngine,
bytes: &[u8],
) -> Result<Self, DeserializeError>
pub unsafe fn deserialize( engine: &StaticlibEngine, bytes: &[u8], ) -> Result<Self, DeserializeError>
Deserialize a StaticlibArtifact
from bytes.
§Safety
The bytes must represent a serialized WebAssembly module.
Sourcepub fn symbol_registry(&self) -> &dyn SymbolRegistry
pub fn symbol_registry(&self) -> &dyn SymbolRegistry
Get the SymbolRegistry
used to generate the names used in the Artifact.
Sourcepub fn metadata_length(&self) -> usize
pub fn metadata_length(&self) -> usize
The length in bytes of the metadata in the serialized output.
Trait Implementations§
Source§impl Artifact for StaticlibArtifact
impl Artifact for StaticlibArtifact
Source§fn register_frame_info(&self)
fn register_frame_info(&self)
Register thie
Artifact
stack frame information into the global scope. Read moreSource§fn finished_functions(&self) -> &BoxedSlice<LocalFunctionIndex, FunctionBodyPtr>
fn finished_functions(&self) -> &BoxedSlice<LocalFunctionIndex, FunctionBodyPtr>
Returns the functions allocated in memory or this
Artifact
ready to be run.Source§fn finished_function_call_trampolines(
&self,
) -> &BoxedSlice<SignatureIndex, VMTrampoline>
fn finished_function_call_trampolines( &self, ) -> &BoxedSlice<SignatureIndex, VMTrampoline>
Returns the function call trampolines allocated in memory of this
Artifact
, ready to be run.Source§fn finished_dynamic_function_trampolines(
&self,
) -> &BoxedSlice<FunctionIndex, FunctionBodyPtr>
fn finished_dynamic_function_trampolines( &self, ) -> &BoxedSlice<FunctionIndex, FunctionBodyPtr>
Returns the dynamic function trampolines allocated in memory
of this
Artifact
, ready to be run.Source§fn signatures(&self) -> &BoxedSlice<SignatureIndex, VMSharedSignatureIndex>
fn signatures(&self) -> &BoxedSlice<SignatureIndex, VMSharedSignatureIndex>
Returns the associated VM signatures for this
Artifact
.Source§fn func_data_registry(&self) -> &FuncDataRegistry
fn func_data_registry(&self) -> &FuncDataRegistry
Get the func data registry
Source§fn preinstantiate(&self) -> Result<(), InstantiationError>
fn preinstantiate(&self) -> Result<(), InstantiationError>
Do preinstantiation logic that is executed before instantiating
Source§unsafe fn instantiate(
&self,
tunables: &dyn Tunables,
resolver: &dyn Resolver,
host_state: Box<dyn Any>,
) -> Result<InstanceHandle, InstantiationError>
unsafe fn instantiate( &self, tunables: &dyn Tunables, resolver: &dyn Resolver, host_state: Box<dyn Any>, ) -> Result<InstanceHandle, InstantiationError>
Source§unsafe fn finish_instantiation(
&self,
trap_handler: &(dyn TrapHandler + 'static),
handle: &InstanceHandle,
) -> Result<(), InstantiationError>
unsafe fn finish_instantiation( &self, trap_handler: &(dyn TrapHandler + 'static), handle: &InstanceHandle, ) -> Result<(), InstantiationError>
Finishes the instantiation of a just created
InstanceHandle
. Read moreSource§impl ArtifactCreate for StaticlibArtifact
impl ArtifactCreate for StaticlibArtifact
Source§fn module(&self) -> Arc<ModuleInfo>
fn module(&self) -> Arc<ModuleInfo>
Return a reference-counted pointer to the module
Source§fn module_ref(&self) -> &ModuleInfo
fn module_ref(&self) -> &ModuleInfo
Return a pointer to a module.
Source§fn module_mut(&mut self) -> Option<&mut ModuleInfo>
fn module_mut(&mut self) -> Option<&mut ModuleInfo>
Gets a mutable reference to the info. Read more
Source§fn cpu_features(&self) -> EnumSet<CpuFeature>
fn cpu_features(&self) -> EnumSet<CpuFeature>
Returns the CPU features for this Artifact
Source§fn data_initializers(&self) -> &[OwnedDataInitializer]
fn data_initializers(&self) -> &[OwnedDataInitializer]
Returns data initializers to pass to
InstanceHandle::initialize
Source§fn memory_styles(&self) -> &PrimaryMap<MemoryIndex, MemoryStyle>
fn memory_styles(&self) -> &PrimaryMap<MemoryIndex, MemoryStyle>
Returns the memory styles associated with this
Artifact
.Source§fn table_styles(&self) -> &PrimaryMap<TableIndex, TableStyle>
fn table_styles(&self) -> &PrimaryMap<TableIndex, TableStyle>
Returns the table plans associated with this
Artifact
.Source§fn serialize_to_file(&self, path: &Path) -> Result<(), SerializeError>
fn serialize_to_file(&self, path: &Path) -> Result<(), SerializeError>
Serializes an artifact into a file path
Source§impl MemoryUsage for StaticlibArtifact
impl MemoryUsage for StaticlibArtifact
Source§fn 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
Auto Trait Implementations§
impl Freeze for StaticlibArtifact
impl RefUnwindSafe for StaticlibArtifact
impl Send for StaticlibArtifact
impl Sync for StaticlibArtifact
impl Unpin for StaticlibArtifact
impl UnwindSafe for StaticlibArtifact
Blanket Implementations§
Source§impl<T> ArchivePointee for T
impl<T> ArchivePointee for T
Source§type ArchivedMetadata = ()
type ArchivedMetadata = ()
The archived version of the pointer metadata for this type.
Source§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.
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<F, W, T, D> Deserialize<With<T, W>, D> for F
impl<F, W, T, D> Deserialize<With<T, W>, D> for F
Source§impl<T> Upcastable for T
impl<T> Upcastable for T
Source§fn upcast_any_ref(&self) -> &(dyn Any + 'static)
fn upcast_any_ref(&self) -> &(dyn Any + 'static)
upcast ref
Source§fn upcast_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn upcast_any_mut(&mut self) -> &mut (dyn Any + 'static)
upcast mut ref