Struct hazardflow_designs::gemmini::reservation_station::Deps
source · pub struct Deps {
pub ld: Array<bool, RS_ENTRIES_LD>,
pub ex: Array<bool, RS_ENTRIES_EX>,
pub st: Array<bool, RS_ENTRIES_ST>,
}
Expand description
Represents dependencies between entries in the queue.
Fields§
§ld: Array<bool, RS_ENTRIES_LD>
Dependencies between entries in LD queue.
ex: Array<bool, RS_ENTRIES_EX>
Dependencies between entries in EX queue.
st: Array<bool, RS_ENTRIES_ST>
Dependencies between entries in ST queue.
Implementations§
Trait Implementations§
impl Copy for Deps
Auto Trait Implementations§
impl RefUnwindSafe for Deps
impl Send for Deps
impl Sync for Deps
impl Unpin for Deps
impl UnwindSafe for Deps
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