wasmer_engine_universal_artifact

Struct UniversalArtifactBuild

Source
pub struct UniversalArtifactBuild { /* private fields */ }
Expand description

A compiled wasm module, ready to be instantiated.

Implementations§

Source§

impl UniversalArtifactBuild

Source

pub const MAGIC_HEADER: &'static [u8; 16] = b"wasmer-universal"

Header signature for wasmu binary

Source

pub fn is_deserializable(bytes: &[u8]) -> bool

Check if the provided bytes look like a serialized UniversalArtifactBuild.

Source

pub fn new( _engine: &UniversalEngineBuilder, _data: &[u8], ) -> Result<Self, CompileError>

Compile a data buffer into a UniversalArtifactBuild, which may then be instantiated.

Source

pub fn from_serializable(serializable: SerializableModule) -> Self

Create a new UniversalArtifactBuild from a SerializableModule

Source

pub fn get_default_extension(_triple: &Triple) -> &'static str

Get the default extension when serializing this artifact

Source

pub fn get_function_bodies_ref( &self, ) -> &PrimaryMap<LocalFunctionIndex, FunctionBody>

Get Functions Bodies ref

Source

pub fn get_function_call_trampolines_ref( &self, ) -> &PrimaryMap<SignatureIndex, FunctionBody>

Get Functions Call Trampolines ref

Source

pub fn get_dynamic_function_trampolines_ref( &self, ) -> &PrimaryMap<FunctionIndex, FunctionBody>

Get Dynamic Functions Call Trampolines ref

Source

pub fn get_custom_sections_ref( &self, ) -> &PrimaryMap<SectionIndex, CustomSection>

Get Custom Sections ref

Source

pub fn get_function_relocations( &self, ) -> PrimaryMap<LocalFunctionIndex, Vec<Relocation>>

Get Function Relocations

Source

pub fn get_custom_section_relocations_ref( &self, ) -> &PrimaryMap<SectionIndex, Vec<Relocation>>

Get Function Relocations ref

Source

pub fn get_libcall_trampolines(&self) -> SectionIndex

Get LibCall Trampoline Section Index

Source

pub fn get_libcall_trampoline_len(&self) -> usize

Get LibCall Trampoline Length

Source

pub fn get_debug_ref(&self) -> &Option<Dwarf>

Get Debug optional Dwarf ref

Source

pub fn get_frame_info_ref( &self, ) -> &PrimaryMap<LocalFunctionIndex, CompiledFunctionFrameInfo>

Get Function Relocations ref

Trait Implementations§

Source§

impl ArtifactCreate for UniversalArtifactBuild

Source§

fn module(&self) -> Arc<ModuleInfo>

Return a reference-counted pointer to the module
Source§

fn module_ref(&self) -> &ModuleInfo

Return a pointer to a module.
Source§

fn module_mut(&mut self) -> Option<&mut ModuleInfo>

Gets a mutable reference to the info. Read more
Source§

fn features(&self) -> &Features

Returns the features for this Artifact
Source§

fn cpu_features(&self) -> EnumSet<CpuFeature>

Returns the CPU features for this Artifact
Source§

fn data_initializers(&self) -> &[OwnedDataInitializer]

Returns data initializers to pass to InstanceHandle::initialize
Source§

fn memory_styles(&self) -> &PrimaryMap<MemoryIndex, MemoryStyle>

Returns the memory styles associated with this Artifact.
Source§

fn table_styles(&self) -> &PrimaryMap<TableIndex, TableStyle>

Returns the table plans associated with this Artifact.
Source§

fn serialize(&self) -> Result<Vec<u8>, SerializeError>

Serializes an artifact into bytes
Source§

fn serialize_to_file(&self, path: &Path) -> Result<(), SerializeError>

Serializes an artifact into a file path
Source§

impl MemoryUsage for UniversalArtifactBuild

Source§

fn size_of_val(&self, visited: &mut dyn MemoryUsageTracker) -> usize

Returns the size of the referenced value in bytes. Read more

Auto Trait Implementations§

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> ArchivePointee for T

Source§

type ArchivedMetadata = ()

The archived version of the pointer metadata for this type.
Source§

fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata, ) -> <T as Pointee>::Metadata

Converts some archived metadata to the pointer metadata for itself.
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<F, W, T, D> Deserialize<With<T, W>, D> for F
where W: DeserializeWith<F, T, D>, D: Fallible + ?Sized, F: ?Sized,

Source§

fn deserialize( &self, deserializer: &mut D, ) -> Result<With<T, W>, <D as Fallible>::Error>

Deserializes using the given deserializer
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> Pointee for T

Source§

type Metadata = ()

The type for metadata in pointers and references to Self.
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.
Source§

impl<T> Upcastable for T
where T: Any + Send + Sync + 'static,

Source§

fn upcast_any_ref(&self) -> &(dyn Any + 'static)

upcast ref
Source§

fn upcast_any_mut(&mut self) -> &mut (dyn Any + 'static)

upcast mut ref
Source§

fn upcast_any_box(self: Box<T>) -> Box<dyn Any>

upcast boxed dyn