Struct llvm_plugin_inkwell::values::VectorValue
source · [−]pub struct VectorValue<'ctx> { /* private fields */ }Implementations
sourceimpl<'ctx> VectorValue<'ctx>
impl<'ctx> VectorValue<'ctx>
sourcepub fn is_const(self) -> bool
pub fn is_const(self) -> bool
Determines whether or not a VectorValue is a constant.
Example
use inkwell::context::Context;
let context = Context::create();
let i8_type = context.i8_type();
let i8_vec_type = i8_type.vec_type(3);
let i8_vec_zero = i8_vec_type.const_zero();
assert!(i8_vec_zero.is_const());pub fn is_constant_vector(self) -> bool
pub fn is_constant_data_vector(self) -> bool
pub fn print_to_stderr(self)
sourcepub fn get_name(&self) -> &CStr
pub fn get_name(&self) -> &CStr
Gets the name of a VectorValue. If the value is a constant, this will
return an empty string.
pub fn get_type(self) -> VectorType<'ctx>
pub fn is_null(self) -> bool
pub fn is_undef(self) -> bool
pub fn as_instruction(self) -> Option<InstructionValue<'ctx>>
pub fn const_extract_element(self, index: IntValue<'ctx>) -> BasicValueEnum<'ctx>
pub fn const_insert_element<BV: BasicValue<'ctx>>(
self,
index: IntValue<'ctx>,
value: BV
) -> BasicValueEnum<'ctx>
pub fn replace_all_uses_with(self, other: VectorValue<'ctx>)
sourcepub fn is_const_string(self) -> bool
pub fn is_const_string(self) -> bool
Creates a const string which may be null terminated.
Example
use inkwell::context::Context;
let context = Context::create();
let string = context.const_string(b"my_string", false);
assert!(string.is_const_string());pub fn get_string_constant(&self) -> &CStr
pub fn get_element_as_constant(self, index: u32) -> BasicValueEnum<'ctx>
pub fn const_select<BV: BasicValue<'ctx>>(
self,
then: BV,
else_: BV
) -> BasicValueEnum<'ctx>
pub fn const_shuffle_vector(
self,
right: VectorValue<'ctx>,
mask: VectorValue<'ctx>
) -> VectorValue<'ctx>
Trait Implementations
sourceimpl<'ctx> AnyValue<'ctx> for VectorValue<'ctx>
impl<'ctx> AnyValue<'ctx> for VectorValue<'ctx>
sourcefn as_any_value_enum(&self) -> AnyValueEnum<'ctx>
fn as_any_value_enum(&self) -> AnyValueEnum<'ctx>
Returns an enum containing a typed version of AnyValue.
sourcefn print_to_string(&self) -> LLVMString
fn print_to_string(&self) -> LLVMString
Prints a value to a LLVMString
sourceimpl AsValueRef for VectorValue<'_>
impl AsValueRef for VectorValue<'_>
fn as_value_ref(&self) -> LLVMValueRef
sourceimpl<'ctx> BasicValue<'ctx> for VectorValue<'ctx>
impl<'ctx> BasicValue<'ctx> for VectorValue<'ctx>
sourcefn as_basic_value_enum(&self) -> BasicValueEnum<'ctx>
fn as_basic_value_enum(&self) -> BasicValueEnum<'ctx>
Returns an enum containing a typed version of the BasicValue.
sourcefn as_instruction_value(&self) -> Option<InstructionValue<'ctx>>
fn as_instruction_value(&self) -> Option<InstructionValue<'ctx>>
Most BasicValues are the byproduct of an instruction
and so are convertable into an InstructionValue Read more
fn get_first_use(&self) -> Option<BasicValueUse<'_>>
sourceimpl<'ctx> Clone for VectorValue<'ctx>
impl<'ctx> Clone for VectorValue<'ctx>
sourcefn clone(&self) -> VectorValue<'ctx>
fn clone(&self) -> VectorValue<'ctx>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl<'ctx> Debug for VectorValue<'ctx>
impl<'ctx> Debug for VectorValue<'ctx>
sourceimpl Display for VectorValue<'_>
impl Display for VectorValue<'_>
sourceimpl<'ctx> FloatMathValue<'ctx> for VectorValue<'ctx>
impl<'ctx> FloatMathValue<'ctx> for VectorValue<'ctx>
type BaseType = VectorType<'ctx>
fn new(value: LLVMValueRef) -> Self
sourceimpl<'ctx> From<VectorValue<'ctx>> for AnyValueEnum<'ctx>
impl<'ctx> From<VectorValue<'ctx>> for AnyValueEnum<'ctx>
sourcefn from(value: VectorValue<'_>) -> AnyValueEnum<'_>
fn from(value: VectorValue<'_>) -> AnyValueEnum<'_>
Converts to this type from the input type.
sourceimpl<'ctx> From<VectorValue<'ctx>> for BasicMetadataValueEnum<'ctx>
impl<'ctx> From<VectorValue<'ctx>> for BasicMetadataValueEnum<'ctx>
sourcefn from(value: VectorValue<'_>) -> BasicMetadataValueEnum<'_>
fn from(value: VectorValue<'_>) -> BasicMetadataValueEnum<'_>
Converts to this type from the input type.
sourceimpl<'ctx> From<VectorValue<'ctx>> for BasicValueEnum<'ctx>
impl<'ctx> From<VectorValue<'ctx>> for BasicValueEnum<'ctx>
sourcefn from(value: VectorValue<'_>) -> BasicValueEnum<'_>
fn from(value: VectorValue<'_>) -> BasicValueEnum<'_>
Converts to this type from the input type.
sourceimpl<'ctx> Hash for VectorValue<'ctx>
impl<'ctx> Hash for VectorValue<'ctx>
sourceimpl<'ctx> IntMathValue<'ctx> for VectorValue<'ctx>
impl<'ctx> IntMathValue<'ctx> for VectorValue<'ctx>
type BaseType = VectorType<'ctx>
fn new(value: LLVMValueRef) -> Self
sourceimpl<'ctx> PartialEq<AnyValueEnum<'ctx>> for VectorValue<'ctx>
impl<'ctx> PartialEq<AnyValueEnum<'ctx>> for VectorValue<'ctx>
sourcefn eq(&self, other: &AnyValueEnum<'ctx>) -> bool
fn eq(&self, other: &AnyValueEnum<'ctx>) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourceimpl<'ctx> PartialEq<BasicMetadataValueEnum<'ctx>> for VectorValue<'ctx>
impl<'ctx> PartialEq<BasicMetadataValueEnum<'ctx>> for VectorValue<'ctx>
sourcefn eq(&self, other: &BasicMetadataValueEnum<'ctx>) -> bool
fn eq(&self, other: &BasicMetadataValueEnum<'ctx>) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourceimpl<'ctx> PartialEq<BasicValueEnum<'ctx>> for VectorValue<'ctx>
impl<'ctx> PartialEq<BasicValueEnum<'ctx>> for VectorValue<'ctx>
sourcefn eq(&self, other: &BasicValueEnum<'ctx>) -> bool
fn eq(&self, other: &BasicValueEnum<'ctx>) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourceimpl<'ctx> PartialEq<VectorValue<'ctx>> for AnyValueEnum<'ctx>
impl<'ctx> PartialEq<VectorValue<'ctx>> for AnyValueEnum<'ctx>
sourcefn eq(&self, other: &VectorValue<'ctx>) -> bool
fn eq(&self, other: &VectorValue<'ctx>) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourceimpl<'ctx> PartialEq<VectorValue<'ctx>> for BasicMetadataValueEnum<'ctx>
impl<'ctx> PartialEq<VectorValue<'ctx>> for BasicMetadataValueEnum<'ctx>
sourcefn eq(&self, other: &VectorValue<'ctx>) -> bool
fn eq(&self, other: &VectorValue<'ctx>) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourceimpl<'ctx> PartialEq<VectorValue<'ctx>> for BasicValueEnum<'ctx>
impl<'ctx> PartialEq<VectorValue<'ctx>> for BasicValueEnum<'ctx>
sourcefn eq(&self, other: &VectorValue<'ctx>) -> bool
fn eq(&self, other: &VectorValue<'ctx>) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourceimpl<'ctx> PartialEq<VectorValue<'ctx>> for VectorValue<'ctx>
impl<'ctx> PartialEq<VectorValue<'ctx>> for VectorValue<'ctx>
sourcefn eq(&self, other: &VectorValue<'ctx>) -> bool
fn eq(&self, other: &VectorValue<'ctx>) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourceimpl<'ctx> PointerMathValue<'ctx> for VectorValue<'ctx>
impl<'ctx> PointerMathValue<'ctx> for VectorValue<'ctx>
type BaseType = VectorType<'ctx>
fn new(value: LLVMValueRef) -> Self
sourceimpl<'ctx> TryFrom<AnyValueEnum<'ctx>> for VectorValue<'ctx>
impl<'ctx> TryFrom<AnyValueEnum<'ctx>> for VectorValue<'ctx>
sourceimpl<'ctx> TryFrom<BasicMetadataValueEnum<'ctx>> for VectorValue<'ctx>
impl<'ctx> TryFrom<BasicMetadataValueEnum<'ctx>> for VectorValue<'ctx>
sourceimpl<'ctx> TryFrom<BasicValueEnum<'ctx>> for VectorValue<'ctx>
impl<'ctx> TryFrom<BasicValueEnum<'ctx>> for VectorValue<'ctx>
impl<'ctx> Copy for VectorValue<'ctx>
impl<'ctx> Eq for VectorValue<'ctx>
impl<'ctx> StructuralEq for VectorValue<'ctx>
impl<'ctx> StructuralPartialEq for VectorValue<'ctx>
Auto Trait Implementations
impl<'ctx> RefUnwindSafe for VectorValue<'ctx>
impl<'ctx> !Send for VectorValue<'ctx>
impl<'ctx> !Sync for VectorValue<'ctx>
impl<'ctx> Unpin for VectorValue<'ctx>
impl<'ctx> UnwindSafe for VectorValue<'ctx>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more