Struct llvm_ir::instruction::Shl
source · [−]pub struct Shl {
pub operand0: Operand,
pub operand1: Operand,
pub dest: Name,
pub debugloc: Option<DebugLoc>,
}
Expand description
Shift left. See LLVM 14 docs on the ‘shl’ instruction
Fields
operand0: Operand
operand1: Operand
dest: Name
debugloc: Option<DebugLoc>
Trait Implementations
sourceimpl BinaryOp for Shl
impl BinaryOp for Shl
fn get_operand0(&self) -> &Operand
fn get_operand1(&self) -> &Operand
sourceimpl From<Shl> for Instruction
impl From<Shl> for Instruction
sourcefn from(inst: Shl) -> Instruction
fn from(inst: Shl) -> Instruction
Converts to this type from the input type.
sourceimpl HasDebugLoc for Shl
impl HasDebugLoc for Shl
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<Shl> for Shl
impl PartialEq<Shl> for Shl
sourceimpl TryFrom<Instruction> for Shl
impl TryFrom<Instruction> for Shl
impl StructuralPartialEq for Shl
Auto Trait Implementations
impl RefUnwindSafe for Shl
impl Send for Shl
impl Sync for Shl
impl Unpin for Shl
impl UnwindSafe for Shl
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