[][src]Struct llir::values::SelectInstruction

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

Select instruction

The code res = a < b ? a : b will be turned into

%cmp = icmp slt %a %b
%res = select %cmp %a %b

Implementations

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

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

The condition to check

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

The value to select when the condition is true

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

The value to select when the condition is false

Trait Implementations

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Auto Trait Implementations

impl<'ctx> RefUnwindSafe for SelectInstruction<'ctx>

impl<'ctx> Unpin for SelectInstruction<'ctx>

impl<'ctx> UnwindSafe for SelectInstruction<'ctx>

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.