Home
last modified time | relevance | path

Searched refs:UnquoteOperator (Results 1 – 4 of 4) sorted by relevance

/dports/sysutils/vector/lucet-d4fc14a03bdb99ac83173d27fddf1aca48412a86/wasmtime/cranelift/peepmatic/crates/runtime/src/
H A Doptimizer.rs5 use crate::operator::UnquoteOperator;
74 UnquoteOperator::Log2 => map_int!(a, |x| x.trailing_zeros() as _), in eval_unquote_1()
75 UnquoteOperator::Neg => map_int!(a, |x| x.wrapping_neg()), in eval_unquote_1()
76 UnquoteOperator::Band in eval_unquote_1()
77 | UnquoteOperator::Bor in eval_unquote_1()
78 | UnquoteOperator::Bxor in eval_unquote_1()
79 | UnquoteOperator::Iadd in eval_unquote_1()
97 UnquoteOperator::Band => fold_ints!(a, b, |x, y| x & y), in eval_unquote_2()
98 UnquoteOperator::Bor => fold_ints!(a, b, |x, y| x | y), in eval_unquote_2()
99 UnquoteOperator::Bxor => fold_ints!(a, b, |x, y| x ^ y), in eval_unquote_2()
[all …]
H A Dlinear.rs10 use crate::operator::{Operator, UnquoteOperator};
176 operator: UnquoteOperator,
184 operator: UnquoteOperator,
H A Doperator.rs219 pub enum UnquoteOperator { enum
/dports/sysutils/vector/lucet-d4fc14a03bdb99ac83173d27fddf1aca48412a86/wasmtime/cranelift/peepmatic/src/
H A Dast.rs25 operator::{Operator, UnquoteOperator},
503 pub operator: UnquoteOperator,