Enum hazardflow_designs::cpu::riscv_isa::BrType
source · pub enum BrType {
Jal,
Jalr,
Beq,
Bne,
Bge,
Blt,
Bgeu,
Bltu,
}
Expand description
Branch type.
Variants§
Jal
JAL.
Jalr
JALR.
Beq
Branch on equal.
Bne
Branch on not equal.
Bge
Branch on greater or equal.
Blt
Branch on less.
Bgeu
Branch on greater or equal (unsigned).
Bltu
Branch on less (unsigned).
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for BrType
impl Send for BrType
impl Sync for BrType
impl Unpin for BrType
impl UnwindSafe for BrType
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