Skip to content

Commit

Permalink
[rtl] The commit of the load instruction needs to wait for the confir…
Browse files Browse the repository at this point in the history
…mation of the lane.
  • Loading branch information
qinjun-li committed Dec 26, 2024
1 parent 629d7b7 commit 69ad66f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion t1/src/T1.scala
Original file line number Diff line number Diff line change
Expand Up @@ -486,7 +486,7 @@ class T1(val parameter: T1Parameter)
val readOnlyInstruction: Bool = decodeResult(Decoder.readOnly)
// 只进mask unit的指令
val maskUnitInstruction: Bool = (decodeResult(Decoder.slid) || decodeResult(Decoder.mv))
val skipLastFromLane: Bool = isLoadStoreType || maskUnitInstruction || readOnlyInstruction
val skipLastFromLane: Bool = isStoreType || maskUnitInstruction || readOnlyInstruction
val instructionValid: Bool = requestReg.bits.issue.vl > requestReg.bits.issue.vstart

// TODO: these should be decoding results
Expand Down

0 comments on commit 69ad66f

Please sign in to comment.