Struct wasmedge_sys::Compiler

source ·
pub struct Compiler { /* private fields */ }
Available on crate feature aot only.
Expand description

Defines WasmEdge ahead-of-time(AOT) compiler and the relevant APIs.

Implementations§

source§

impl Compiler

source

pub fn create(config: Option<&Config>) -> WasmEdgeResult<Self>

Creates a new AOT compiler.

§Error

If fail to create a AOT compiler, then an error is returned.

source

pub fn compile_from_file( &self, wasm_file: impl AsRef<Path>, aot_file: impl AsRef<Path> ) -> WasmEdgeResult<()>

Compiles the input WASM from the given file path for the AOT mode and stores the result to the output file path.

§Arguments
  • wasm_file - The input wasm file, of which the file extension should be one of wasm orwat.

  • aot_file - The generated AOT wasm file, of which the file extension should be dylib on macOS, so on Linux or dll on Windows.

§Error

If fail to compile, then an error is returned.

source

pub fn compile_from_bytes( &self, wasm_bytes: impl AsRef<[u8]>, aot_file: impl AsRef<Path> ) -> WasmEdgeResult<()>

Compiles the input WASM from the given bytes for the AOT mode and stores the result to the output file path.

§Argument
  • wasm_bytes - The in-memory WASM bytes.

  • aot_file - The generated AOT wasm file, of which the file extension should be dylib on macOS, so on Linux or dll on Windows.

§Error

If fail to compile, then an error is returned.

source

pub fn as_ptr(&self) -> *const WasmEdge_CompilerContext

Available on crate feature ffi only.

Provides a raw pointer to the inner Compiler context.

Trait Implementations§

source§

impl Debug for Compiler

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Drop for Compiler

source§

fn drop(&mut self)

Executes the destructor for this type. 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> 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<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, 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.