Home
last modified time | relevance | path

Searched refs:CompilerStrategy (Results 1 – 6 of 6) sorted by relevance

/wasmtime-44.0.1/crates/fuzzing/src/oracles/
H A Ddiff_wasmtime.rs3 use crate::generators::{self, CompilerStrategy, DiffValue, DiffValueType, WasmtimeConfig};
26 compiler_strategy: CompilerStrategy, in new() argument
46 CompilerStrategy::CraneliftNative => "wasmtime", in name()
47 CompilerStrategy::Winch => "winch", in name()
48 CompilerStrategy::CraneliftPulley => "pulley", in name()
263 WasmtimeEngine::new(u, config, CompilerStrategy::CraneliftNative) in smoke_cranelift_native()
270 WasmtimeEngine::new(u, config, CompilerStrategy::CraneliftPulley) in smoke_cranelift_pulley()
280 WasmtimeEngine::new(u, config, CompilerStrategy::Winch) in smoke_winch()
H A Dengine.rs3 use crate::generators::{CompilerStrategy, Config, DiffValue, DiffValueType};
22 CompilerStrategy::CraneliftNative, in build()
27 CompilerStrategy::CraneliftPulley, in build()
32 "winch" => Box::new(WasmtimeEngine::new(u, config, CompilerStrategy::Winch)?), in build()
H A Dcomponent_api.rs10 use crate::generators::{self, CompilerStrategy, InstanceAllocationStrategy};
151 if config.wasmtime.compiler_strategy == CompilerStrategy::Winch { in store()
152 config.wasmtime.compiler_strategy = CompilerStrategy::CraneliftNative; in store()
/wasmtime-44.0.1/crates/fuzzing/src/generators/
H A Dconfig.rs328 CompilerStrategy::CraneliftNative | CompilerStrategy::CraneliftPulley => true, in to_wasmtime()
329 CompilerStrategy::Winch => false, in to_wasmtime()
596 pub compiler_strategy: CompilerStrategy,
645 CompilerStrategy::Winch => { in update_module_config()
695 CompilerStrategy::CraneliftPulley => { in update_module_config()
884 pub enum CompilerStrategy { enum
893 impl CompilerStrategy { impl
897 CompilerStrategy::CraneliftNative => { in configure()
900 CompilerStrategy::Winch => { in configure()
903 CompilerStrategy::CraneliftPulley => { in configure()
[all …]
/wasmtime-44.0.1/crates/fuzzing/src/
H A Dgenerators.rs29 pub use config::CompilerStrategy;
H A Doracles.rs28 use crate::generators::{self, CompilerStrategy, DiffValue, DiffValueType};
733 if fuzz_config.wasmtime.compiler_strategy == CompilerStrategy::Winch in wast_test()
1030 CompilerStrategy::Winch => { in exception_ops()
1031 fuzz_config.wasmtime.compiler_strategy = CompilerStrategy::CraneliftNative; in exception_ops()
1033 CompilerStrategy::CraneliftNative | CompilerStrategy::CraneliftPulley => {} in exception_ops()