Struct hazardflow_designs::cpu::decode::DecEP
source · pub struct DecEP {
pub wb_info: HOption<(U<{ _ }>, WbSel)>,
pub br_info: HOption<BrInfo>,
pub alu_input: AluInput,
pub mem_info: HOption<MemInfo>,
pub csr_info: HOption<CsrInfo>,
pub is_illegal: bool,
pub pc: u32,
pub debug_inst: u32,
}
Expand description
Payload from decode stage to execute stage.
Fields§
§wb_info: HOption<(U<{ _ }>, WbSel)>
Writeback information.
It contains the writeback address and selector.
br_info: HOption<BrInfo>
Branch information.
alu_input: AluInput
ALU input.
mem_info: HOption<MemInfo>
Memory information.
csr_info: HOption<CsrInfo>
CSR information.
is_illegal: bool
Indicates that the instruction is illegal or not.
pc: u32
PC.
debug_inst: u32
Instruction (for debugging purpose).
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for DecEP
impl Send for DecEP
impl Sync for DecEP
impl Unpin for DecEP
impl UnwindSafe for DecEP
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