pub enum Zbc64ExtInstruction<Reg> {
Clmul {
rd: Reg,
rs1: Reg,
rs2: Reg,
},
Clmulh {
rd: Reg,
rs1: Reg,
rs2: Reg,
},
Clmulr {
rd: Reg,
rs1: Reg,
rs2: Reg,
},
}Expand description
RISC-V Zbc instruction (Carryless multiplication)
Variants§
Trait Implementations§
Source§impl<Reg: Clone> Clone for Zbc64ExtInstruction<Reg>
impl<Reg: Clone> Clone for Zbc64ExtInstruction<Reg>
Source§fn clone(&self) -> Zbc64ExtInstruction<Reg>
fn clone(&self) -> Zbc64ExtInstruction<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 Zbc64ExtInstruction<Reg>
impl<Reg: Debug> Debug for Zbc64ExtInstruction<Reg>
Source§impl<Reg> Display for Zbc64ExtInstruction<Reg>where
Reg: Display,
impl<Reg> Display for Zbc64ExtInstruction<Reg>where
Reg: Display,
Source§impl<Reg> Instruction for Zbc64ExtInstruction<Reg>
impl<Reg> Instruction for Zbc64ExtInstruction<Reg>
Source§type Base = Rv64Instruction<Reg>
type Base = Rv64Instruction<Reg>
Lower-level instruction like
Rv64InstructionSource§fn try_decode(instruction: u32) -> Option<Self>
fn try_decode(instruction: u32) -> Option<Self>
Try to decode a single valid instruction
Source§impl<Reg: PartialEq> PartialEq for Zbc64ExtInstruction<Reg>
impl<Reg: PartialEq> PartialEq for Zbc64ExtInstruction<Reg>
impl<Reg: Copy> Copy for Zbc64ExtInstruction<Reg>
impl<Reg: Eq> Eq for Zbc64ExtInstruction<Reg>
impl<Reg> StructuralPartialEq for Zbc64ExtInstruction<Reg>
Auto Trait Implementations§
impl<Reg> Freeze for Zbc64ExtInstruction<Reg>where
Reg: Freeze,
impl<Reg> RefUnwindSafe for Zbc64ExtInstruction<Reg>where
Reg: RefUnwindSafe,
impl<Reg> Send for Zbc64ExtInstruction<Reg>where
Reg: Send,
impl<Reg> Sync for Zbc64ExtInstruction<Reg>where
Reg: Sync,
impl<Reg> Unpin for Zbc64ExtInstruction<Reg>where
Reg: Unpin,
impl<Reg> UnwindSafe for Zbc64ExtInstruction<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