Trait rustc_codegen_ssa::traits::type_::BaseTypeMethods

source ·
pub trait BaseTypeMethods<'tcx>: Backend<'tcx> {
Show 22 methods // Required methods fn type_i1(&self) -> Self::Type; fn type_i8(&self) -> Self::Type; fn type_i16(&self) -> Self::Type; fn type_i32(&self) -> Self::Type; fn type_i64(&self) -> Self::Type; fn type_i128(&self) -> Self::Type; fn type_isize(&self) -> Self::Type; fn type_f16(&self) -> Self::Type; fn type_f32(&self) -> Self::Type; fn type_f64(&self) -> Self::Type; fn type_f128(&self) -> Self::Type; fn type_array(&self, ty: Self::Type, len: u64) -> Self::Type; fn type_func(&self, args: &[Self::Type], ret: Self::Type) -> Self::Type; fn type_struct(&self, els: &[Self::Type], packed: bool) -> Self::Type; fn type_kind(&self, ty: Self::Type) -> TypeKind; fn type_ptr(&self) -> Self::Type; fn type_ptr_ext(&self, address_space: AddressSpace) -> Self::Type; fn element_type(&self, ty: Self::Type) -> Self::Type; fn vector_length(&self, ty: Self::Type) -> usize; fn float_width(&self, ty: Self::Type) -> usize; fn int_width(&self, ty: Self::Type) -> u64; fn val_ty(&self, v: Self::Value) -> Self::Type;
}

Required Methods§

source

fn type_i1(&self) -> Self::Type

source

fn type_i8(&self) -> Self::Type

source

fn type_i16(&self) -> Self::Type

source

fn type_i32(&self) -> Self::Type

source

fn type_i64(&self) -> Self::Type

source

fn type_i128(&self) -> Self::Type

source

fn type_isize(&self) -> Self::Type

source

fn type_f16(&self) -> Self::Type

source

fn type_f32(&self) -> Self::Type

source

fn type_f64(&self) -> Self::Type

source

fn type_f128(&self) -> Self::Type

source

fn type_array(&self, ty: Self::Type, len: u64) -> Self::Type

source

fn type_func(&self, args: &[Self::Type], ret: Self::Type) -> Self::Type

source

fn type_struct(&self, els: &[Self::Type], packed: bool) -> Self::Type

source

fn type_kind(&self, ty: Self::Type) -> TypeKind

source

fn type_ptr(&self) -> Self::Type

source

fn type_ptr_ext(&self, address_space: AddressSpace) -> Self::Type

source

fn element_type(&self, ty: Self::Type) -> Self::Type

source

fn vector_length(&self, ty: Self::Type) -> usize

Returns the number of elements in self if it is an LLVM vector type.

source

fn float_width(&self, ty: Self::Type) -> usize

source

fn int_width(&self, ty: Self::Type) -> u64

Retrieves the bit width of the integer type self.

source

fn val_ty(&self, v: Self::Value) -> Self::Type

Object Safety§

This trait is not object safe.

Implementors§