pub enum Rv64MInstruction<Reg> {
Show 13 variants
Mul {
rd: Reg,
rs1: Reg,
rs2: Reg,
},
Mulh {
rd: Reg,
rs1: Reg,
rs2: Reg,
},
Mulhsu {
rd: Reg,
rs1: Reg,
rs2: Reg,
},
Mulhu {
rd: Reg,
rs1: Reg,
rs2: Reg,
},
Div {
rd: Reg,
rs1: Reg,
rs2: Reg,
},
Divu {
rd: Reg,
rs1: Reg,
rs2: Reg,
},
Rem {
rd: Reg,
rs1: Reg,
rs2: Reg,
},
Remu {
rd: Reg,
rs1: Reg,
rs2: Reg,
},
Mulw {
rd: Reg,
rs1: Reg,
rs2: Reg,
},
Divw {
rd: Reg,
rs1: Reg,
rs2: Reg,
},
Divuw {
rd: Reg,
rs1: Reg,
rs2: Reg,
},
Remw {
rd: Reg,
rs1: Reg,
rs2: Reg,
},
Remuw {
rd: Reg,
rs1: Reg,
rs2: Reg,
},
}Variants§
Trait Implementations§
Source§impl<Reg: Clone> Clone for Rv64MInstruction<Reg>
impl<Reg: Clone> Clone for Rv64MInstruction<Reg>
Source§fn clone(&self) -> Rv64MInstruction<Reg>
fn clone(&self) -> Rv64MInstruction<Reg>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<Reg: Debug> Debug for Rv64MInstruction<Reg>
impl<Reg: Debug> Debug for Rv64MInstruction<Reg>
Source§impl<Reg> Display for Rv64MInstruction<Reg>where
Reg: Display,
impl<Reg> Display for Rv64MInstruction<Reg>where
Reg: Display,
§impl<Reg> Instruction for Rv64MInstruction<Reg>
impl<Reg> Instruction for Rv64MInstruction<Reg>
Source§impl<Reg: PartialEq> PartialEq for Rv64MInstruction<Reg>
impl<Reg: PartialEq> PartialEq for Rv64MInstruction<Reg>
impl<Reg: Copy> Copy for Rv64MInstruction<Reg>
impl<Reg: Eq> Eq for Rv64MInstruction<Reg>
impl<Reg> StructuralPartialEq for Rv64MInstruction<Reg>
Auto Trait Implementations§
impl<Reg> Freeze for Rv64MInstruction<Reg>where
Reg: Freeze,
impl<Reg> RefUnwindSafe for Rv64MInstruction<Reg>where
Reg: RefUnwindSafe,
impl<Reg> Send for Rv64MInstruction<Reg>where
Reg: Send,
impl<Reg> Sync for Rv64MInstruction<Reg>where
Reg: Sync,
impl<Reg> Unpin for Rv64MInstruction<Reg>where
Reg: Unpin,
impl<Reg> UnwindSafe for Rv64MInstruction<Reg>where
Reg: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more