Home
last modified time | relevance | path

Searched refs:OperatorCostStrategy (Results 1 – 3 of 3) sorted by relevance

/wasmtime-44.0.1/crates/environ/src/
H A Dtunables.rs92 pub operator_cost: OperatorCostStrategy,
215 operator_cost: OperatorCostStrategy::Default, in default_miri()
340 pub enum OperatorCostStrategy { enum
350 impl OperatorCostStrategy { implementation
353 OperatorCostStrategy::Table(Box::new(cost)) in table()
359 OperatorCostStrategy::Table(cost) => cost.cost(op), in cost()
360 OperatorCostStrategy::Default => default_operator_cost(op), in cost()
/wasmtime-44.0.1/crates/wasmtime/src/engine/
H A Dserialization.rs37 use wasmtime_environ::{FlagValue, ObjectKind, OperatorCostStrategy, Tunables, obj};
280 found: &OperatorCostStrategy, in check_cost() argument
281 expected: &OperatorCostStrategy, in check_cost() argument
/wasmtime-44.0.1/crates/wasmtime/src/
H A Dconfig.rs10 use wasmtime_environ::{ConfigTunables, OperatorCost, OperatorCostStrategy, TripleExt, Tunables};
614 self.tunables.operator_cost = Some(OperatorCostStrategy::table(cost)); in operator_cost()