wasmtime_environ

Struct Tunables

source
pub struct Tunables {
Show 16 fields pub collector: Option<Collector>, pub memory_reservation: u64, pub memory_guard_size: u64, pub memory_reservation_for_growth: u64, pub generate_native_debuginfo: bool, pub parse_wasm_debuginfo: bool, pub consume_fuel: bool, pub epoch_interruption: bool, pub memory_may_move: bool, pub guard_before_linear_memory: bool, pub table_lazy_init: bool, pub generate_address_map: bool, pub debug_adapter_modules: bool, pub relaxed_simd_deterministic: bool, pub winch_callable: bool, pub signals_based_traps: bool,
}
Expand description

Tunable parameters for WebAssembly compilation.

Fields§

§collector: Option<Collector>

The garbage collector implementation to use, which implies the layout of GC objects and barriers that must be emitted in Wasm code.

§memory_reservation: u64

Initial size, in bytes, to be allocated for linear memories.

§memory_guard_size: u64

The size, in bytes, of the guard page region for linear memories.

§memory_reservation_for_growth: u64

The size, in bytes, to allocate at the end of a relocated linear memory for growth.

§generate_native_debuginfo: bool

Whether or not to generate native DWARF debug information.

§parse_wasm_debuginfo: bool

Whether or not to retain DWARF sections in compiled modules.

§consume_fuel: bool

Whether or not fuel is enabled for generated code, meaning that fuel will be consumed every time a wasm instruction is executed.

§epoch_interruption: bool

Whether or not we use epoch-based interruption.

§memory_may_move: bool

Whether or not linear memories are allowed to be reallocated after initial allocation at runtime.

§guard_before_linear_memory: bool

Whether or not linear memory allocations will have a guard region at the beginning of the allocation in addition to the end.

§table_lazy_init: bool

Whether to initialize tables lazily, so that instantiation is fast but indirect calls are a little slower. If false, tables are initialized eagerly from any active element segments that apply to them during instantiation.

§generate_address_map: bool

Indicates whether an address map from compiled native code back to wasm offsets in the original file is generated.

§debug_adapter_modules: bool

Flag for the component module whether adapter modules have debug assertions baked into them.

§relaxed_simd_deterministic: bool

Whether or not lowerings for relaxed simd instructions are forced to be deterministic.

§winch_callable: bool

Whether or not Wasm functions target the winch abi.

§signals_based_traps: bool

Whether or not the host will be using native signals (e.g. SIGILL, SIGSEGV, etc) to implement traps.

Implementations§

source§

impl Tunables

source

pub fn default_host() -> Self

Returns a Tunables configuration assumed for running code on the host.

source

pub fn default_for_target(target: &Triple) -> Result<Self>

Returns the default set of tunables for the given target triple.

source

pub fn default_miri() -> Tunables

Returns the default set of tunables for running under MIRI.

source

pub fn default_u32() -> Tunables

Returns the default set of tunables for running under a 32-bit host.

source

pub fn default_u64() -> Tunables

Returns the default set of tunables for running under a 64-bit host.

Trait Implementations§

source§

impl Clone for Tunables

source§

fn clone(&self) -> Tunables

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 Tunables

source§

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

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

impl<'de> Deserialize<'de> for Tunables

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl Hash for Tunables

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl Serialize for Tunables

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. 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> CloneToUninit for T
where T: Clone,

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. 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> ToOwned for T
where T: Clone,

source§

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 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> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,