Skip to content

Commit

Permalink
[rtl] fix vfslide1.
Browse files Browse the repository at this point in the history
  • Loading branch information
qinjun-li authored and Avimitin committed Nov 8, 2024
1 parent dcef435 commit 7b85ef9
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions t1/src/decoder/attribute/topUop.scala
Original file line number Diff line number Diff line change
Expand Up @@ -93,11 +93,17 @@ object TopUop {
allMatched.contains(t1DecodePattern.instruction.name)
}
def t2(t1DecodePattern: T1DecodePattern): Boolean = {
val allMatched: Seq[String] = Seq("vslide1down.vx")
val allMatched: Seq[String] = Seq(
"vslide1down.vx",
"vfslide1down.vf"
)
allMatched.contains(t1DecodePattern.instruction.name)
}
def t3(t1DecodePattern: T1DecodePattern): Boolean = {
val allMatched: Seq[String] = Seq("vslide1up.vx")
val allMatched: Seq[String] = Seq(
"vslide1up.vx",
"vfslide1up.vf"
)
allMatched.contains(t1DecodePattern.instruction.name)
}
def t4(t1DecodePattern: T1DecodePattern): Boolean = {
Expand Down

0 comments on commit 7b85ef9

Please sign in to comment.