Home
last modified time | relevance | path

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

/wasmtime-44.0.1/cranelift/codegen/meta/src/cdsl/
H A Dtypes.rs20 Vector(VectorType),
99 impl From<VectorType> for ValueType {
100 fn from(vector: VectorType) -> Self { in from()
204 ValueType::Vector(VectorType::new(self, lanes.into())) in by()
284 pub(crate) struct VectorType { struct
289 impl VectorType { impl
331 impl fmt::Display for VectorType { implementation
337 impl fmt::Debug for VectorType { implementation
H A Dtypevar.rs927 use crate::cdsl::types::VectorType; in test_typevar_singleton()
938 let typevar = TypeVar::new_singleton(ValueType::Vector(VectorType::new( in test_typevar_singleton()
/wasmtime-44.0.1/cranelift/codegen/meta/src/
H A Dgen_types.rs29 .map(|(ty, lanes)| cdsl_types::VectorType::new(ty, lanes)) in emit_vectors()