Home
last modified time | relevance | path

Searched refs:relaxed_simd_deterministic (Results 1 – 11 of 11) sorted by relevance

/wasmtime-44.0.1/src/commands/
H A Dwizer.rs52 if self.run.common.wasm.relaxed_simd_deterministic.is_none() { in execute_async()
53 self.run.common.wasm.relaxed_simd_deterministic = Some(true); in execute_async()
/wasmtime-44.0.1/crates/environ/src/
H A Dtunables.rs121 pub relaxed_simd_deterministic: bool,
222 relaxed_simd_deterministic: false, in default_miri()
/wasmtime-44.0.1/docs/
H A Dexamples-deterministic-wasm-execution.md40 …smtime::Config::relaxed_simd_deterministic](https://docs.rs/wasmtime/latest/wasmtime/struct.Config…
/wasmtime-44.0.1/crates/wasmtime/src/engine/
H A Dserialization.rs308 relaxed_simd_deterministic, in check_tunables()
369 relaxed_simd_deterministic, in check_tunables()
370 other.relaxed_simd_deterministic, in check_tunables()
/wasmtime-44.0.1/crates/wizer/tests/all/
H A Dtests.rs24 config.relaxed_simd_deterministic(true); in store()
868 async fn relaxed_simd_deterministic() -> Result<()> { in relaxed_simd_deterministic() function
/wasmtime-44.0.1/tests/
H A Dwast.rs257 Engine::new(cfg.relaxed_simd_deterministic(true)), in run_wast()
/wasmtime-44.0.1/crates/cli-flags/src/
H A Dlib.rs380 pub relaxed_simd_deterministic: Option<bool>,
1067 if let Some(enable) = self.wasm.relaxed_simd_deterministic { in config()
1068 config.relaxed_simd_deterministic(enable); in config()
/wasmtime-44.0.1/crates/wasmtime/src/
H A Dconfig.rs1073 pub fn relaxed_simd_deterministic(&mut self, enable: bool) -> &mut Self { in relaxed_simd_deterministic() method
1074 self.tunables.relaxed_simd_deterministic = Some(enable); in relaxed_simd_deterministic()
3051 if let Some(v) = self.tunables.relaxed_simd_deterministic { in validate_rr_determinism_conflicts()
/wasmtime-44.0.1/crates/cranelift/src/translate/
H A Dcode_translator.rs2432 if environ.relaxed_simd_deterministic() || !environ.is_x86() { in translate_operator()
2451 if environ.relaxed_simd_deterministic() || !environ.is_x86() { in translate_operator()
2505 if environ.relaxed_simd_deterministic() in translate_operator()
2520 if environ.relaxed_simd_deterministic() || !environ.is_x86() { in translate_operator()
2531 let converted_a = if environ.relaxed_simd_deterministic() || !environ.is_x86() { in translate_operator()
2548 if environ.relaxed_simd_deterministic() in translate_operator()
2562 if environ.relaxed_simd_deterministic() || !environ.use_x86_pmaddubsw_for_dot() { in translate_operator()
2582 if environ.relaxed_simd_deterministic() || !environ.use_x86_pmaddubsw_for_dot() { in translate_operator()
/wasmtime-44.0.1/crates/c-api/src/
H A Dconfig.rs130 c.config.relaxed_simd_deterministic(enable); in wasmtime_config_wasm_relaxed_simd_deterministic_set()
/wasmtime-44.0.1/crates/cranelift/src/
H A Dfunc_environ.rs3707 pub fn relaxed_simd_deterministic(&self) -> bool { in relaxed_simd_deterministic() method
3708 self.tunables.relaxed_simd_deterministic in relaxed_simd_deterministic()
4145 if !self.is_x86() || self.relaxed_simd_deterministic() { in relaxed_swizzle()
4194 } else if self.relaxed_simd_deterministic() { in fma_f32x4()
4215 } else if self.relaxed_simd_deterministic() { in fma_f64x2()