Struct llvm_plugin_inkwell::values::PointerValue
source · [−]pub struct PointerValue<'ctx> { /* private fields */ }Implementations
sourceimpl<'ctx> PointerValue<'ctx>
impl<'ctx> PointerValue<'ctx>
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(
self,
ordered_indexes: &[IntValue<'ctx>]
) -> PointerValue<'ctx>
pub unsafe fn const_gep(
self,
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(
self,
ordered_indexes: &[IntValue<'ctx>]
) -> PointerValue<'ctx>
pub unsafe fn const_in_bounds_gep(
self,
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.
sourceimpl<'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
sourceimpl<'ctx> AnyValue<'ctx> for PointerValue<'ctx>
impl<'ctx> AnyValue<'ctx> for PointerValue<'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 PointerValue<'_>
impl AsValueRef for PointerValue<'_>
fn as_value_ref(&self) -> LLVMValueRef
sourceimpl<'ctx> BasicValue<'ctx> for PointerValue<'ctx>
impl<'ctx> BasicValue<'ctx> for PointerValue<'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 PointerValue<'ctx>
impl<'ctx> Clone for PointerValue<'ctx>
sourcefn clone(&self) -> PointerValue<'ctx>
fn clone(&self) -> PointerValue<'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 PointerValue<'ctx>
impl<'ctx> Debug for PointerValue<'ctx>
sourceimpl Display for PointerValue<'_>
impl Display for PointerValue<'_>
sourceimpl<'ctx> From<PointerValue<'ctx>> for AnyValueEnum<'ctx>
impl<'ctx> From<PointerValue<'ctx>> for AnyValueEnum<'ctx>
sourcefn from(value: PointerValue<'_>) -> AnyValueEnum<'_>
fn from(value: PointerValue<'_>) -> AnyValueEnum<'_>
Converts to this type from the input type.
sourceimpl<'ctx> From<PointerValue<'ctx>> for BasicMetadataValueEnum<'ctx>
impl<'ctx> From<PointerValue<'ctx>> for BasicMetadataValueEnum<'ctx>
sourcefn from(value: PointerValue<'_>) -> BasicMetadataValueEnum<'_>
fn from(value: PointerValue<'_>) -> BasicMetadataValueEnum<'_>
Converts to this type from the input type.
sourceimpl<'ctx> From<PointerValue<'ctx>> for BasicValueEnum<'ctx>
impl<'ctx> From<PointerValue<'ctx>> for BasicValueEnum<'ctx>
sourcefn from(value: PointerValue<'_>) -> BasicValueEnum<'_>
fn from(value: PointerValue<'_>) -> BasicValueEnum<'_>
Converts to this type from the input type.
sourceimpl<'ctx> Hash for PointerValue<'ctx>
impl<'ctx> Hash for PointerValue<'ctx>
sourceimpl<'ctx> PartialEq<AnyValueEnum<'ctx>> for PointerValue<'ctx>
impl<'ctx> PartialEq<AnyValueEnum<'ctx>> for PointerValue<'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 PointerValue<'ctx>
impl<'ctx> PartialEq<BasicMetadataValueEnum<'ctx>> for PointerValue<'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 PointerValue<'ctx>
impl<'ctx> PartialEq<BasicValueEnum<'ctx>> for PointerValue<'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<PointerValue<'ctx>> for AnyValueEnum<'ctx>
impl<'ctx> PartialEq<PointerValue<'ctx>> for AnyValueEnum<'ctx>
sourcefn 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 ==. Read more
sourceimpl<'ctx> PartialEq<PointerValue<'ctx>> for BasicMetadataValueEnum<'ctx>
impl<'ctx> PartialEq<PointerValue<'ctx>> for BasicMetadataValueEnum<'ctx>
sourcefn 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 ==. Read more
sourceimpl<'ctx> PartialEq<PointerValue<'ctx>> for BasicValueEnum<'ctx>
impl<'ctx> PartialEq<PointerValue<'ctx>> for BasicValueEnum<'ctx>
sourcefn 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 ==. Read more
sourceimpl<'ctx> PartialEq<PointerValue<'ctx>> for PointerValue<'ctx>
impl<'ctx> PartialEq<PointerValue<'ctx>> for PointerValue<'ctx>
sourcefn 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 ==. Read more
sourceimpl<'ctx> PointerMathValue<'ctx> for PointerValue<'ctx>
impl<'ctx> PointerMathValue<'ctx> for PointerValue<'ctx>
type BaseType = PointerType<'ctx>
fn new(value: LLVMValueRef) -> Self
sourceimpl<'ctx> TryFrom<AnyValueEnum<'ctx>> for PointerValue<'ctx>
impl<'ctx> TryFrom<AnyValueEnum<'ctx>> for PointerValue<'ctx>
sourceimpl<'ctx> TryFrom<BasicMetadataValueEnum<'ctx>> for PointerValue<'ctx>
impl<'ctx> TryFrom<BasicMetadataValueEnum<'ctx>> for PointerValue<'ctx>
sourceimpl<'ctx> TryFrom<BasicValueEnum<'ctx>> for PointerValue<'ctx>
impl<'ctx> TryFrom<BasicValueEnum<'ctx>> for PointerValue<'ctx>
sourceimpl<'ctx> TryFrom<InstructionValue<'ctx>> for PointerValue<'ctx>
impl<'ctx> TryFrom<InstructionValue<'ctx>> for PointerValue<'ctx>
sourceimpl<'ctx> TryFrom<PointerValue<'ctx>> for CallableValue<'ctx>
impl<'ctx> TryFrom<PointerValue<'ctx>> for CallableValue<'ctx>
impl<'ctx> Copy for PointerValue<'ctx>
impl<'ctx> Eq for PointerValue<'ctx>
impl<'ctx> StructuralEq 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
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