Searched refs:CompilerStrategy (Results 1 – 6 of 6) sorted by relevance
| /wasmtime-44.0.1/crates/fuzzing/src/oracles/ |
| H A D | diff_wasmtime.rs | 3 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 D | engine.rs | 3 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 D | component_api.rs | 10 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 D | config.rs | 328 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 { implementation 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 D | generators.rs | 29 pub use config::CompilerStrategy;
|
| H A D | oracles.rs | 28 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()
|