Home
last modified time | relevance | path

Searched refs:TypeVar (Results 1 – 5 of 5) sorted by relevance

/wasmtime-44.0.1/cranelift/codegen/meta/src/cdsl/
H A Doperands.rs3 use crate::cdsl::typevar::TypeVar;
47 OperandKindFields::TypeVar(tvar) => &tvar.doc, in doc()
53 matches!(self.kind.fields, OperandKindFields::TypeVar(_)) in is_value()
56 pub fn type_var(&self) -> Option<&TypeVar> { in type_var() argument
58 OperandKindFields::TypeVar(typevar) => Some(typevar), in type_var()
94 TypeVar(TypeVar), enumerator
140 OperandKindFields::TypeVar(type_var) => &type_var.doc, in doc()
159 impl From<&TypeVar> for OperandKind {
160 fn from(type_var: &TypeVar) -> Self { in from()
164 fields: OperandKindFields::TypeVar(type_var.into()), in from()
H A Dtypevar.rs38 pub(crate) struct TypeVar { struct
42 impl TypeVar { impl
90 pub fn copy_from(other: &TypeVar, name: String) -> TypeVar { in copy_from() argument
95 TypeVar { in copy_from()
227 TypeVar { in derived()
273 impl From<&TypeVar> for TypeVar { implementation
287 impl hash::Hash for TypeVar { implementation
301 impl PartialEq for TypeVar { implementation
314 impl Eq for TypeVar {} implementation
354 pub type_var: TypeVar,
[all …]
H A Dinstructions.rs7 use crate::cdsl::typevar::TypeVar;
29 pub ctrl_typevar: TypeVar,
441 ctrl_typevar: &TypeVar, in is_ctrl_typevar_candidate() argument
444 ) -> Result<Vec<TypeVar>, String> { in is_ctrl_typevar_candidate() argument
/wasmtime-44.0.1/cranelift/codegen/meta/src/shared/
H A Dinstructions.rs64 let _i32 = &TypeVar::new( in define_control_flow()
100 let iAddr = &TypeVar::new( in define_control_flow()
392 let TxN = &TypeVar::new( in define_simd_lane_access()
420 let I8x16 = &TypeVar::new( in define_simd_lane_access()
521 let Int = &TypeVar::new( in define_simd_arithmetic()
578 let IxN = &TypeVar::new( in define_simd_arithmetic()
689 let Int = &TypeVar::new( in define()
711 let iB = &TypeVar::new( in define()
729 let TxN = &TypeVar::new( in define()
739 let Any = &TypeVar::new( in define()
[all …]
/wasmtime-44.0.1/cranelift/codegen/meta/src/
H A Dgen_inst.rs7 use crate::cdsl::typevar::{TypeSet, TypeVar};
562 OperandKindFields::TypeVar(_) => fmtln!(fmt, "{member},"), in gen_instruction_data_impl()
785 ctrl_typevar: Option<&TypeVar>, in get_constraint() argument