Struct inkwell::values::PointerValue
source · pub struct PointerValue<'ctx> { /* private fields */ }
Implementations§
source§impl<'ctx> PointerValue<'ctx>
impl<'ctx> PointerValue<'ctx>
sourcepub unsafe fn new(value: LLVMValueRef) -> Self
pub unsafe fn new(value: LLVMValueRef) -> Self
sourcepub fn get_name(&self) -> &CStr
pub fn get_name(&self) -> &CStr
Get name of the PointerValue
. If the value is a constant, this
will return an empty string.
pub fn get_type(self) -> PointerType<'ctx>
pub fn is_null(self) -> bool
pub fn is_undef(self) -> bool
sourcepub fn is_const(self) -> bool
pub fn is_const(self) -> bool
Determines whether or not a PointerValue
is a constant.
§Example
use inkwell::AddressSpace;
use inkwell::context::Context;
let context = Context::create();
let void_type = context.void_type();
pub fn print_to_stderr(self)
pub fn as_instruction(self) -> Option<InstructionValue<'ctx>>
sourcepub unsafe fn const_gep<T: BasicType<'ctx>>(
self,
ty: T,
ordered_indexes: &[IntValue<'ctx>]
) -> PointerValue<'ctx>
pub unsafe fn const_gep<T: BasicType<'ctx>>( self, ty: T, ordered_indexes: &[IntValue<'ctx>] ) -> PointerValue<'ctx>
GEP is very likely to segfault if indexes are used incorrectly, and is therefore an unsafe function. Maybe we can change this in the future.
sourcepub unsafe fn const_in_bounds_gep<T: BasicType<'ctx>>(
self,
ty: T,
ordered_indexes: &[IntValue<'ctx>]
) -> PointerValue<'ctx>
pub unsafe fn const_in_bounds_gep<T: BasicType<'ctx>>( self, ty: T, ordered_indexes: &[IntValue<'ctx>] ) -> PointerValue<'ctx>
GEP is very likely to segfault if indexes are used incorrectly, and is therefore an unsafe function. Maybe we can change this in the future.
source§impl<'ctx> PointerValue<'ctx>
impl<'ctx> PointerValue<'ctx>
pub fn const_to_int(self, int_type: IntType<'ctx>) -> IntValue<'ctx>
pub fn const_cast(self, ptr_type: PointerType<'ctx>) -> PointerValue<'ctx>
pub fn const_address_space_cast( self, ptr_type: PointerType<'ctx> ) -> PointerValue<'ctx>
pub fn replace_all_uses_with(self, other: PointerValue<'ctx>)
Trait Implementations§
source§impl<'ctx> AnyValue<'ctx> for PointerValue<'ctx>
impl<'ctx> AnyValue<'ctx> for PointerValue<'ctx>
source§fn as_any_value_enum(&self) -> AnyValueEnum<'ctx>
fn as_any_value_enum(&self) -> AnyValueEnum<'ctx>
Returns an enum containing a typed version of
AnyValue
.source§fn print_to_string(&self) -> LLVMString
fn print_to_string(&self) -> LLVMString
Prints a value to a
LLVMString
source§impl AsValueRef for PointerValue<'_>
impl AsValueRef for PointerValue<'_>
fn as_value_ref(&self) -> LLVMValueRef
source§impl<'ctx> BasicValue<'ctx> for PointerValue<'ctx>
impl<'ctx> BasicValue<'ctx> for PointerValue<'ctx>
source§fn 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
.source§fn as_instruction_value(&self) -> Option<InstructionValue<'ctx>>
fn as_instruction_value(&self) -> Option<InstructionValue<'ctx>>
Most
BasicValue
s are the byproduct of an instruction
and so are convertible into an InstructionValue
fn get_first_use(&self) -> Option<BasicValueUse<'_>>
source§impl<'ctx> Clone for PointerValue<'ctx>
impl<'ctx> Clone for PointerValue<'ctx>
source§fn clone(&self) -> PointerValue<'ctx>
fn clone(&self) -> PointerValue<'ctx>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<'ctx> Debug for PointerValue<'ctx>
impl<'ctx> Debug for PointerValue<'ctx>
source§impl Display for PointerValue<'_>
impl Display for PointerValue<'_>
source§impl<'ctx> From<PointerValue<'ctx>> for AnyValueEnum<'ctx>
impl<'ctx> From<PointerValue<'ctx>> for AnyValueEnum<'ctx>
source§fn from(value: PointerValue<'_>) -> AnyValueEnum<'_>
fn from(value: PointerValue<'_>) -> AnyValueEnum<'_>
Converts to this type from the input type.
source§impl<'ctx> From<PointerValue<'ctx>> for BasicMetadataValueEnum<'ctx>
impl<'ctx> From<PointerValue<'ctx>> for BasicMetadataValueEnum<'ctx>
source§fn from(value: PointerValue<'_>) -> BasicMetadataValueEnum<'_>
fn from(value: PointerValue<'_>) -> BasicMetadataValueEnum<'_>
Converts to this type from the input type.
source§impl<'ctx> From<PointerValue<'ctx>> for BasicValueEnum<'ctx>
impl<'ctx> From<PointerValue<'ctx>> for BasicValueEnum<'ctx>
source§fn from(value: PointerValue<'_>) -> BasicValueEnum<'_>
fn from(value: PointerValue<'_>) -> BasicValueEnum<'_>
Converts to this type from the input type.
source§impl<'ctx> Hash for PointerValue<'ctx>
impl<'ctx> Hash for PointerValue<'ctx>
source§impl<'ctx> IntMathValue<'ctx> for PointerValue<'ctx>
impl<'ctx> IntMathValue<'ctx> for PointerValue<'ctx>
type BaseType = IntType<'ctx>
unsafe fn new(value: LLVMValueRef) -> PointerValue<'ctx>
source§impl<'ctx> PartialEq<AnyValueEnum<'ctx>> for PointerValue<'ctx>
impl<'ctx> PartialEq<AnyValueEnum<'ctx>> for PointerValue<'ctx>
source§fn 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 ==
.source§impl<'ctx> PartialEq<BasicMetadataValueEnum<'ctx>> for PointerValue<'ctx>
impl<'ctx> PartialEq<BasicMetadataValueEnum<'ctx>> for PointerValue<'ctx>
source§fn 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 ==
.source§impl<'ctx> PartialEq<BasicValueEnum<'ctx>> for PointerValue<'ctx>
impl<'ctx> PartialEq<BasicValueEnum<'ctx>> for PointerValue<'ctx>
source§fn 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 ==
.source§impl<'ctx> PartialEq<PointerValue<'ctx>> for AnyValueEnum<'ctx>
impl<'ctx> PartialEq<PointerValue<'ctx>> for AnyValueEnum<'ctx>
source§fn eq(&self, other: &PointerValue<'ctx>) -> bool
fn eq(&self, other: &PointerValue<'ctx>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl<'ctx> PartialEq<PointerValue<'ctx>> for BasicMetadataValueEnum<'ctx>
impl<'ctx> PartialEq<PointerValue<'ctx>> for BasicMetadataValueEnum<'ctx>
source§fn eq(&self, other: &PointerValue<'ctx>) -> bool
fn eq(&self, other: &PointerValue<'ctx>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl<'ctx> PartialEq<PointerValue<'ctx>> for BasicValueEnum<'ctx>
impl<'ctx> PartialEq<PointerValue<'ctx>> for BasicValueEnum<'ctx>
source§fn eq(&self, other: &PointerValue<'ctx>) -> bool
fn eq(&self, other: &PointerValue<'ctx>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl<'ctx> PartialEq for PointerValue<'ctx>
impl<'ctx> PartialEq for PointerValue<'ctx>
source§fn eq(&self, other: &PointerValue<'ctx>) -> bool
fn eq(&self, other: &PointerValue<'ctx>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl<'ctx> PointerMathValue<'ctx> for PointerValue<'ctx>
impl<'ctx> PointerMathValue<'ctx> for PointerValue<'ctx>
type BaseType = PointerType<'ctx>
unsafe fn new(value: LLVMValueRef) -> PointerValue<'ctx>
source§impl<'ctx> TryFrom<AnyValueEnum<'ctx>> for PointerValue<'ctx>
impl<'ctx> TryFrom<AnyValueEnum<'ctx>> for PointerValue<'ctx>
source§impl<'ctx> TryFrom<BasicMetadataValueEnum<'ctx>> for PointerValue<'ctx>
impl<'ctx> TryFrom<BasicMetadataValueEnum<'ctx>> for PointerValue<'ctx>
source§impl<'ctx> TryFrom<BasicValueEnum<'ctx>> for PointerValue<'ctx>
impl<'ctx> TryFrom<BasicValueEnum<'ctx>> for PointerValue<'ctx>
source§impl<'ctx> TryFrom<InstructionValue<'ctx>> for PointerValue<'ctx>
impl<'ctx> TryFrom<InstructionValue<'ctx>> for PointerValue<'ctx>
impl<'ctx> Copy for PointerValue<'ctx>
impl<'ctx> Eq for PointerValue<'ctx>
impl<'ctx> StructuralPartialEq for PointerValue<'ctx>
Auto Trait Implementations§
impl<'ctx> RefUnwindSafe for PointerValue<'ctx>
impl<'ctx> !Send for PointerValue<'ctx>
impl<'ctx> !Sync for PointerValue<'ctx>
impl<'ctx> Unpin for PointerValue<'ctx>
impl<'ctx> UnwindSafe for PointerValue<'ctx>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more