Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions arch/inst/A/sc.d.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@ description: |
with both bits clear, but may result in lower performance.
definedBy:
anyOf: [A, Zalrsc]
base: 64
assembly: xd, xs2, xs1
encoding:
match: 00011------------011-----0101111
Expand Down
1 change: 1 addition & 0 deletions arch/inst/C/c.ld.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ definedBy:
anyOf:
- C
- Zca
base: 64
assembly: xd, imm(xs1)
encoding:
match: 011-----------00
Expand Down
1 change: 1 addition & 0 deletions arch/inst/C/c.sd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ definedBy:
anyOf:
- C
- Zca
base: 64
assembly: xs2, imm(xs1)
encoding:
match: 111-----------00
Expand Down
1 change: 1 addition & 0 deletions arch/inst/C/c.slli.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ definedBy:
anyOf:
- C
- Zca
base: 64
assembly: xd, shamt
encoding:
match: 000-----------10
Expand Down
1 change: 1 addition & 0 deletions arch/inst/C/c.srai.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ definedBy:
anyOf:
- C
- Zca
base: 64
assembly: xd, shamt
encoding:
match: 100-01--------01
Expand Down
1 change: 1 addition & 0 deletions arch/inst/C/c.srli.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ definedBy:
anyOf:
- C
- Zca
base: 64
assembly: xd, shamt
encoding:
match: 100-00--------01
Expand Down
1 change: 1 addition & 0 deletions arch/inst/M/divuw.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ description: |

If the value in rs2 is zero, rd is written with all 1s.
definedBy: M
base: 64
assembly: xd, xs1, xs2
encoding:
match: 0000001----------101-----0111011
Expand Down
1 change: 1 addition & 0 deletions arch/inst/M/divw.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ description: |
Division resulting in signed overflow (when most negative number is divided by -1)
will put the most negative number into rd;
definedBy: M
base: 64
assembly: xd, xs1, xs2
encoding:
match: 0000001----------100-----0111011
Expand Down
1 change: 1 addition & 0 deletions arch/inst/M/mulw.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ description: |
an alternative is to shift both arguments left by 32 bits, then use MULH[[S]U].
definedBy:
anyOf: [M, Zmmul]
base: 64
assembly: xd, xs1, xs2
encoding:
match: 0000001----------000-----0111011
Expand Down
1 change: 1 addition & 0 deletions arch/inst/M/remuw.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ description: |

If the value in rs2 is zero, rd gets the sign-extended value in rs1.
definedBy: M
base: 64
assembly: xd, xs1, xs2
encoding:
match: 0000001----------111-----0111011
Expand Down
1 change: 1 addition & 0 deletions arch/inst/M/remw.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ description: |

If the result of the division overflows, write zero into rd;
definedBy: M
base: 64
assembly: xd, xs1, xs2
encoding:
match: 0000001----------110-----0111011
Expand Down
2 changes: 1 addition & 1 deletion arch/inst/Zicsr/csrrs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ description: |
definedBy: Zicsr
assembly: xd, xs1, csr
encoding:
match: -----------------010-----0010011
match: -----------------010-----1110011
variables:
- name: csr
location: 31-20
Expand Down
Loading