Struct llvm_plugin_inkwell::types::ArrayType
source · pub struct ArrayType<'ctx> { /* private fields */ }Expand description
An ArrayType is the type of contiguous constants or variables.
Implementations§
source§impl<'ctx> ArrayType<'ctx>
impl<'ctx> ArrayType<'ctx>
sourcepub unsafe fn new(array_type: LLVMTypeRef) -> Self
pub unsafe fn new(array_type: LLVMTypeRef) -> Self
sourcepub fn size_of(self) -> Option<IntValue<'ctx>>
pub fn size_of(self) -> Option<IntValue<'ctx>>
Gets the size of this ArrayType. Value may vary depending on the target architecture.
Example
use inkwell::context::Context;
let context = Context::create();
let i8_type = context.i8_type();
let i8_array_type = i8_type.array_type(3);
let i8_array_type_size = i8_array_type.size_of();sourcepub fn get_alignment(self) -> IntValue<'ctx>
pub fn get_alignment(self) -> IntValue<'ctx>
Gets the alignment of this ArrayType. Value may vary depending on the target architecture.
Example
use inkwell::context::Context;
let context = Context::create();
let i8_type = context.i8_type();
let i8_array_type = i8_type.array_type(3);
let i8_array_type_alignment = i8_array_type.get_alignment();sourcepub fn ptr_type(self, address_space: AddressSpace) -> PointerType<'ctx>
pub fn ptr_type(self, address_space: AddressSpace) -> PointerType<'ctx>
Creates a PointerType with this ArrayType for its element type.
Example
use inkwell::context::Context;
use inkwell::AddressSpace;
let context = Context::create();
let i8_type = context.i8_type();
let i8_array_type = i8_type.array_type(3);
let i8_array_ptr_type = i8_array_type.ptr_type(AddressSpace::default());
#[cfg(not(feature = "llvm15-0"))]
assert_eq!(i8_array_ptr_type.get_element_type().into_array_type(), i8_array_type);sourcepub fn get_context(self) -> ContextRef<'ctx>
pub fn get_context(self) -> ContextRef<'ctx>
Gets a reference to the Context this ArrayType was created in.
Example
use inkwell::context::Context;
let context = Context::create();
let i8_type = context.i8_type();
let i8_array_type = i8_type.array_type(3);
assert_eq!(i8_array_type.get_context(), context);sourcepub fn fn_type(
self,
param_types: &[BasicMetadataTypeEnum<'ctx>],
is_var_args: bool
) -> FunctionType<'ctx>
pub fn fn_type(
self,
param_types: &[BasicMetadataTypeEnum<'ctx>],
is_var_args: bool
) -> FunctionType<'ctx>
Creates a FunctionType with this ArrayType for its return type.
Example
use inkwell::context::Context;
let context = Context::create();
let i8_type = context.i8_type();
let i8_array_type = i8_type.array_type(3);
let fn_type = i8_array_type.fn_type(&[], false);sourcepub fn array_type(self, size: u32) -> ArrayType<'ctx>
pub fn array_type(self, size: u32) -> ArrayType<'ctx>
Creates an ArrayType with this ArrayType for its element type.
Example
use inkwell::context::Context;
let context = Context::create();
let i8_type = context.i8_type();
let i8_array_type = i8_type.array_type(3);
let i8_array_array_type = i8_array_type.array_type(3);
assert_eq!(i8_array_array_type.len(), 3);
assert_eq!(i8_array_array_type.get_element_type().into_array_type(), i8_array_type);sourcepub fn const_array(self, values: &[ArrayValue<'ctx>]) -> ArrayValue<'ctx>
pub fn const_array(self, values: &[ArrayValue<'ctx>]) -> ArrayValue<'ctx>
Creates a constant ArrayValue.
Example
use inkwell::context::Context;
let context = Context::create();
let f32_type = context.f32_type();
let f32_array_type = f32_type.array_type(3);
let f32_array_val = f32_array_type.const_zero();
let f32_array_array = f32_array_type.const_array(&[f32_array_val, f32_array_val]);
assert!(f32_array_array.is_const());sourcepub fn const_zero(self) -> ArrayValue<'ctx>
pub fn const_zero(self) -> ArrayValue<'ctx>
Creates a constant zero value of this ArrayType.
Example
use inkwell::context::Context;
let context = Context::create();
let i8_type = context.i8_type();
let i8_array_type = i8_type.array_type(3);
let i8_array_zero = i8_array_type.const_zero();sourcepub fn len(self) -> u32
pub fn len(self) -> u32
Gets the length of this ArrayType.
Example
use inkwell::context::Context;
let context = Context::create();
let i8_type = context.i8_type();
let i8_array_type = i8_type.array_type(3);
assert_eq!(i8_array_type.len(), 3);sourcepub fn print_to_string(self) -> LLVMString
pub fn print_to_string(self) -> LLVMString
Print the definition of an ArrayType to LLVMString
sourcepub fn get_undef(self) -> ArrayValue<'ctx>
pub fn get_undef(self) -> ArrayValue<'ctx>
Creates an undefined instance of a ArrayType.
Example
use inkwell::context::Context;
let context = Context::create();
let i8_type = context.i8_type();
let i8_array_type = i8_type.array_type(3);
let i8_array_undef = i8_array_type.get_undef();
assert!(i8_array_undef.is_undef());sourcepub fn get_element_type(self) -> BasicTypeEnum<'ctx>
pub fn get_element_type(self) -> BasicTypeEnum<'ctx>
Gets the element type of this ArrayType.
Example
use inkwell::context::Context;
let context = Context::create();
let i8_type = context.i8_type();
let i8_array_type = i8_type.array_type(3);
assert_eq!(i8_array_type.get_element_type().into_int_type(), i8_type);Trait Implementations§
source§impl<'ctx> AnyType<'ctx> for ArrayType<'ctx>
impl<'ctx> AnyType<'ctx> for ArrayType<'ctx>
source§fn as_any_type_enum(&self) -> AnyTypeEnum<'ctx>
fn as_any_type_enum(&self) -> AnyTypeEnum<'ctx>
Returns an
AnyTypeEnum that represents the current type.source§fn print_to_string(&self) -> LLVMString
fn print_to_string(&self) -> LLVMString
Prints the definition of a Type to a
LLVMString.source§impl<'ctx> BasicType<'ctx> for ArrayType<'ctx>
impl<'ctx> BasicType<'ctx> for ArrayType<'ctx>
source§fn as_basic_type_enum(&self) -> BasicTypeEnum<'ctx>
fn as_basic_type_enum(&self) -> BasicTypeEnum<'ctx>
Returns a
BasicTypeEnum that represents the current type.source§fn fn_type(
&self,
param_types: &[BasicMetadataTypeEnum<'ctx>],
is_var_args: bool
) -> FunctionType<'ctx>
fn fn_type(
&self,
param_types: &[BasicMetadataTypeEnum<'ctx>],
is_var_args: bool
) -> FunctionType<'ctx>
source§fn is_sized(&self) -> bool
fn is_sized(&self) -> bool
Determines whether or not this
BasicType is sized or not.
For example, opaque structs are unsized. Read moresource§fn size_of(&self) -> Option<IntValue<'ctx>>
fn size_of(&self) -> Option<IntValue<'ctx>>
Gets the size of this
BasicType. Value may vary depending on the target architecture. Read moresource§fn array_type(&self, size: u32) -> ArrayType<'ctx>
fn array_type(&self, size: u32) -> ArrayType<'ctx>
source§fn ptr_type(&self, address_space: AddressSpace) -> PointerType<'ctx>
fn ptr_type(&self, address_space: AddressSpace) -> PointerType<'ctx>
source§impl<'ctx> From<ArrayType<'ctx>> for AnyTypeEnum<'ctx>
impl<'ctx> From<ArrayType<'ctx>> for AnyTypeEnum<'ctx>
source§fn from(value: ArrayType<'_>) -> AnyTypeEnum<'_>
fn from(value: ArrayType<'_>) -> AnyTypeEnum<'_>
Converts to this type from the input type.
source§impl<'ctx> From<ArrayType<'ctx>> for BasicMetadataTypeEnum<'ctx>
impl<'ctx> From<ArrayType<'ctx>> for BasicMetadataTypeEnum<'ctx>
source§fn from(value: ArrayType<'_>) -> BasicMetadataTypeEnum<'_>
fn from(value: ArrayType<'_>) -> BasicMetadataTypeEnum<'_>
Converts to this type from the input type.
source§impl<'ctx> From<ArrayType<'ctx>> for BasicTypeEnum<'ctx>
impl<'ctx> From<ArrayType<'ctx>> for BasicTypeEnum<'ctx>
source§fn from(value: ArrayType<'_>) -> BasicTypeEnum<'_>
fn from(value: ArrayType<'_>) -> BasicTypeEnum<'_>
Converts to this type from the input type.