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