Enum hazardflow_designs::cpu::multiplier::MulOp
source · pub enum MulOp {
Mul,
Mulh,
Mulhu,
Mulhsu,
Div,
Rem,
Divu,
Remu,
}
Expand description
Multiplier function.
Variants§
Mul
MUL operation.
Mulh
MULH operation.
Mulhu
MULHU operation.
Mulhsu
MULHSU operation.
Div
DIV operation.
Rem
REM operation.
Divu
DIVU operation.
Remu
REMU operation.
Implementations§
Trait Implementations§
source§impl PartialEq for MulOp
impl PartialEq for MulOp
impl Copy for MulOp
impl Eq for MulOp
impl StructuralEq for MulOp
impl StructuralPartialEq for MulOp
Auto Trait Implementations§
impl RefUnwindSafe for MulOp
impl Send for MulOp
impl Sync for MulOp
impl Unpin for MulOp
impl UnwindSafe for MulOp
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