pub struct DynamicTypeData {
    pub base_vector_ty: Type,
    pub dynamic_scale: GlobalValue,
}
Expand description

A dynamic type object which has a base vector type and a scaling factor.

Fields§

§base_vector_ty: Type

Base vector type, this is the minimum size of the type.

§dynamic_scale: GlobalValue

The dynamic scaling factor of the base vector type.

Implementations§

Create a new dynamic type.

Convert ‘base_vector_ty’ into a concrete dynamic vector type.

Examples found in repository?
src/ir/function.rs (line 261)
256
257
258
259
260
261
262
    pub fn get_concrete_dynamic_ty(&self, ty: DynamicType) -> Option<Type> {
        self.dfg
            .dynamic_types
            .get(ty)
            .unwrap_or_else(|| panic!("Undeclared dynamic vector type: {}", ty))
            .concrete()
    }
More examples
Hide additional examples
src/ir/dfg.rs (line 1164)
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
    pub fn check_dynamic_type(&mut self, ty: Type) -> Option<Type> {
        debug_assert!(ty.is_dynamic_vector());
        if self
            .dynamic_types
            .values()
            .any(|dyn_ty_data| dyn_ty_data.concrete().unwrap() == ty)
        {
            Some(ty)
        } else {
            None
        }
    }

Trait Implementations§

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Feeds this value into the given Hasher. Read more
Feeds a slice of this type into the given Hasher. Read more
This method tests for self and other values to be equal, and is used by ==.
This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.