[][src]Struct llir::values::GetElementPtrInstruction

pub struct GetElementPtrInstruction<'ctx>(_, _);

Implementations

impl<'ctx> GetElementPtrInstruction<'ctx>[src]

pub fn location(&self) -> Operand<'ctx>[src]

Get the base location

pub fn num_indices(&self) -> usize[src]

Get the number of indices used to get the element pointer

pub fn indices(&self) -> Vec<Operand<'ctx>>[src]

Get the indices used to get the pointer, in vector form

pub fn get_pointer_type(&self) -> PointerType<'ctx>[src]

Get the pointer type of the result of this GEP instruction

Trait Implementations

impl<'ctx> AsInstruction<'ctx> for GetElementPtrInstruction<'ctx>[src]

impl<'ctx> AsOperand<'ctx> for GetElementPtrInstruction<'ctx>[src]

impl<'ctx> Clone for GetElementPtrInstruction<'ctx>[src]

impl<'ctx> Copy for GetElementPtrInstruction<'ctx>[src]

impl<'ctx> Debug for GetElementPtrInstruction<'ctx>[src]

impl<'ctx> Eq for GetElementPtrInstruction<'ctx>[src]

impl<'ctx> GetDebugMetadata<'ctx> for GetElementPtrInstruction<'ctx>[src]

impl<'ctx> GetType<'ctx> for GetElementPtrInstruction<'ctx>[src]

impl<'ctx> Hash for GetElementPtrInstruction<'ctx>[src]

impl<'ctx> InstructionDebugLoc for GetElementPtrInstruction<'ctx>[src]

impl<'ctx> InstructionTrait<'ctx> for GetElementPtrInstruction<'ctx>[src]

impl<'ctx> PartialEq<GetElementPtrInstruction<'ctx>> for GetElementPtrInstruction<'ctx>[src]

impl<'ctx> Send for GetElementPtrInstruction<'ctx>[src]

impl<'ctx> StructuralEq for GetElementPtrInstruction<'ctx>[src]

impl<'ctx> StructuralPartialEq for GetElementPtrInstruction<'ctx>[src]

impl<'ctx> Sync for GetElementPtrInstruction<'ctx>[src]

impl<'ctx> ValueOpcode for GetElementPtrInstruction<'ctx>[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.