pub enum Compiler {
CraneliftNative,
Winch,
CraneliftPulley,
}
Expand description
Different compilers that can be tested in Wasmtime.
Variants§
CraneliftNative
Cranelift backend.
This tests the Cranelift code generator for native platforms. This notably excludes Pulley since that’s listed separately below even though Pulley is a backend of Cranelift. This is only used for native code generation such as x86_64.
Winch
Winch backend.
This tests the Winch backend for native platforms. Currently Winch primarily supports x86_64.
CraneliftPulley
Pulley interpreter.
This tests the Cranelift pulley backend plus the pulley execution
environment of the output bytecode. Note that this is separate from
Cranelift
above to be able to test both on platforms where Cranelift
has native codegen support.
Implementations§
Source§impl Compiler
impl Compiler
Sourcepub fn should_fail(&self, config: &TestConfig) -> bool
pub fn should_fail(&self, config: &TestConfig) -> bool
Returns whether this compiler is known to fail for the provided
TestConfig
.
This function will determine if the configuration of the test provided
is known to guarantee fail. This effectively tracks the proposal support
for each compiler backend/runtime and tests whether config
enables or
disables features that aren’t supported.
Note that this is closely aligned with
Config::compiler_panicking_wasm_features
.
Sourcepub fn supports_host(&self) -> bool
pub fn supports_host(&self) -> bool
Returns whether this compiler configuration supports the current host architecture.
Trait Implementations§
impl Copy for Compiler
impl StructuralPartialEq for Compiler
Auto Trait Implementations§
impl Freeze for Compiler
impl RefUnwindSafe for Compiler
impl Send for Compiler
impl Sync for Compiler
impl Unpin for Compiler
impl UnwindSafe for Compiler
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more