Struct wasmer_compiler::ArtifactBuild

source ·
pub struct ArtifactBuild { /* private fields */ }
Expand description

A compiled wasm module, ready to be instantiated.

Implementations§

source§

impl ArtifactBuild

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 ArtifactBuild.

source

pub fn from_serializable(serializable: SerializableModule) -> Self

Create a new ArtifactBuild from a SerializableModule

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<'a> ArtifactCreate<'a> for ArtifactBuild

§

type OwnedDataInitializer = &'a OwnedDataInitializer

Type of OwnedDataInitializer returned by the data_initializers method
§

type OwnedDataInitializerIterator = Iter<'a, OwnedDataInitializer>

Type of iterator returned by the data_initializers method
source§

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

Create a ModuleInfo for instantiation
source§

fn set_module_info_name(&mut self, name: String) -> bool

Sets the ModuleInfo name
source§

fn module_info(&self) -> &ModuleInfo

Returns the ModuleInfo for instantiation
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(&'a self) -> Self::OwnedDataInitializerIterator

Returns data initializers to pass to VMInstance::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

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

§

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

source§

fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>

Gets the layout of the type.
source§

impl<T> Pointee for T

§

type Metadata = ()

The type for metadata in pointers and references to Self.
source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

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>,

§

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