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

Defines a group of configuration options for AOT compiler.

CompilerConfigOptions is used to set the AOT compiler related configuration options, which are

  • Compiler Optimization Levels

    • O0 performs as many optimizations as possible.

    • O1 optimizes quickly without destroying debuggability

    • 02 optimizes for fast execution as much as possible without triggering significant incremental compile time or code size growth

    • O3 optimizes for fast execution as much as possible

    • Os optimizes for small code size as much as possible without triggering significant incremental compile time or execution time slowdowns

    • Oz optimizes for small code size as much as possible

  • Compiler Output Formats

    • Native specifies the output format is native dynamic library (*.wasm.so)
    • Wasm specifies the output format is WebAssembly with AOT compiled codes in custom section (*.wasm).
  • dump_ir determines if AOT compiler generates IR or not

  • generic_binary determines if AOT compiler generates the generic binary or not.

  • interruptible determines if AOT compiler generates interruptible binary or not.

The configuration options above are only effective to AOT compiler.

Implementations§

source§

impl CompilerConfigOptions

source

pub fn new() -> Self

Creates a new instance of CompilerConfigOptions.

source

pub fn out_format(self, format: CompilerOutputFormat) -> Self

Sets the output binary format of AOT compiler.

Argument
  • format specifies the format of the output binary.
source

pub fn optimization_level(self, level: CompilerOptimizationLevel) -> Self

Sets the optimization level of AOT compiler.

Argument
  • level specifies the optimization level of AOT compiler.
source

pub fn dump_ir(self, enable: bool) -> Self

Sets the dump IR option of AOT compiler.

Argument
  • enable specifies if dump ir or not.
source

pub fn generic_binary(self, enable: bool) -> Self

Sets the generic binary option of AOT compiler.

Argument
  • enable specifies if generate the generic binary or not when perform AOT compilation.
source

pub fn interruptible(self, enable: bool) -> Self

Enables or Disables the Interruptible option of AOT compiler.

This option determines to generate interruptible binary or not when compilation in AOT compiler.

Argument
  • enable specifies if turn on the Interruptible option.

Trait Implementations§

source§

impl Clone for CompilerConfigOptions

source§

fn clone(&self) -> CompilerConfigOptions

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for CompilerConfigOptions

source§

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

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

impl Default for CompilerConfigOptions

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl Copy for CompilerConfigOptions

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere 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 Twhere 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> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere 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 Twhere 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.
§

impl<V, T> VZip<V> for Twhere V: MultiLane<T>,

§

fn vzip(self) -> V