Home
last modified time | relevance | path

Searched refs:DiffValueType (Results 1 – 9 of 9) sorted by relevance

/wasmtime-44.0.1/crates/fuzzing/src/generators/
H A Dvalue.rs25 fn ty(&self) -> DiffValueType { in ty() argument
27 DiffValue::I32(_) => DiffValueType::I32, in ty()
28 DiffValue::I64(_) => DiffValueType::I64, in ty()
29 DiffValue::F32(_) => DiffValueType::F32, in ty()
30 DiffValue::F64(_) => DiffValueType::F64, in ty()
31 DiffValue::V128(_) => DiffValueType::V128, in ty()
46 ty: DiffValueType, in arbitrary_of_type() argument
48 use DiffValueType::*; in arbitrary_of_type()
224 let ty: DiffValueType = u.arbitrary()?; in arbitrary()
289 pub enum DiffValueType { enum
[all …]
/wasmtime-44.0.1/crates/fuzzing/src/oracles/
H A Ddiff_v8.rs1 use crate::generators::{Config, DiffValue, DiffValueType};
167 result_tys: &[DiffValueType], in evaluate() argument
198 if let DiffValueType::V128 = ty { in evaluate()
230 if let DiffValueType::V128 = ty { in get_global()
296 ty: DiffValueType, in get_diff_value() argument
301 DiffValueType::I64 => { in get_diff_value()
306 DiffValueType::F32 => { in get_diff_value()
316 DiffValueType::AnyRef => unimplemented!(), in get_diff_value()
317 DiffValueType::ExnRef => unimplemented!(), in get_diff_value()
318 DiffValueType::V128 => unreachable!(), in get_diff_value()
[all …]
H A Dengine.rs3 use crate::generators::{CompilerStrategy, Config, DiffValue, DiffValueType};
87 results: &[DiffValueType], in evaluate() argument
92 fn get_global(&mut self, name: &str, ty: DiffValueType) -> Option<DiffValue>; in get_global()
216 &[DiffValueType::I32], in smoke_test_engine()
221 if let Some(val) = instance.get_global("global", DiffValueType::I32) { in smoke_test_engine()
H A Ddiff_wasmtime.rs3 use crate::generators::{self, CompilerStrategy, DiffValue, DiffValueType, WasmtimeConfig};
113 pub fn exported_globals(&mut self) -> Vec<(String, DiffValueType)> { in exported_globals() argument
126 DiffValueType::try_from(global.ty(&self.store).content().clone()) in exported_globals()
164 _results: &[DiffValueType], in evaluate() argument
180 fn get_global(&mut self, name: &str, _ty: DiffValueType) -> Option<DiffValue> { in get_global()
H A Ddiff_spec.rs4 use crate::generators::{Config, DiffValue, DiffValueType};
70 _results: &[DiffValueType], in evaluate() argument
79 fn get_global(&mut self, name: &str, _ty: DiffValueType) -> Option<DiffValue> { in get_global()
H A Ddiff_wasmi.rs3 use crate::generators::{Config, DiffValue, DiffValueType};
127 result_tys: &[DiffValueType], in evaluate() argument
142 fn get_global(&mut self, name: &str, _ty: DiffValueType) -> Option<DiffValue> { in get_global()
/wasmtime-44.0.1/crates/fuzzing/src/
H A Dgenerators.rs39 pub use value::{DiffValue, DiffValueType};
H A Doracles.rs28 use crate::generators::{self, CompilerStrategy, DiffValue, DiffValueType};
457 result_tys: &[DiffValueType], in differential() argument
/wasmtime-44.0.1/fuzz/fuzz_targets/
H A Ddifferential.rs8 use wasmtime_fuzzing::generators::{Config, DiffValue, DiffValueType, SingleInstModule};
166 DiffValueType::try_from(ty).map_err(|_| arbitrary::Error::IncorrectFormat) in execute_one()