Struct llvm_ir::instruction::ICmp
source · [−]pub struct ICmp {
pub predicate: IntPredicate,
pub operand0: Operand,
pub operand1: Operand,
pub dest: Name,
pub debugloc: Option<DebugLoc>,
}
Expand description
Compare integers, pointers, or vectors of integers or pointers. See LLVM 14 docs on the ‘icmp’ instruction
Fields
predicate: IntPredicate
operand0: Operand
operand1: Operand
dest: Name
debugloc: Option<DebugLoc>
Trait Implementations
sourceimpl From<ICmp> for Instruction
impl From<ICmp> for Instruction
sourcefn from(inst: ICmp) -> Instruction
fn from(inst: ICmp) -> Instruction
Converts to this type from the input type.
sourceimpl HasDebugLoc for ICmp
impl HasDebugLoc for ICmp
sourcefn get_debug_loc(&self) -> &Option<DebugLoc>
fn get_debug_loc(&self) -> &Option<DebugLoc>
Returns the DebugLoc
associated with the given Instruction
,
Terminator
, GlobalVariable
, or Function
; or None
if it doesn’t
have a DebugLoc
. Read more
sourceimpl PartialEq<ICmp> for ICmp
impl PartialEq<ICmp> for ICmp
sourceimpl TryFrom<Instruction> for ICmp
impl TryFrom<Instruction> for ICmp
impl StructuralPartialEq for ICmp
Auto Trait Implementations
impl RefUnwindSafe for ICmp
impl Send for ICmp
impl Sync for ICmp
impl Unpin for ICmp
impl UnwindSafe for ICmp
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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