Skip to content

Commit c232bf0

Browse files
docs: remove "This instruction" from inst.description (#764)
Currently the grammar of many inst.descriptions is inconsistent this tries to reduce that problem relates to #744
1 parent 92f84c9 commit c232bf0

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+119
-119
lines changed

arch/inst/B/andn.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ kind: instruction
55
name: andn
66
long_name: AND with inverted operand
77
description: |
8-
This instruction performs the bitwise logical AND operation between `rs1` and the
8+
Performs the bitwise logical AND operation between `rs1` and the
99
bitwise inversion of `rs2`.
1010
definedBy:
1111
anyOf: [Zbb, Zbkb]

arch/inst/B/orn.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ kind: instruction
55
name: orn
66
long_name: OR with inverted operand
77
description: |
8-
This instruction performs the bitwise logical OR operation between rs1 and the bitwise inversion of rs2.
8+
Performs the bitwise logical OR operation between rs1 and the bitwise inversion of rs2.
99
definedBy:
1010
anyOf: [Zbb, Zbkb]
1111
assembly: xd, xs1, xs2

arch/inst/B/rev8.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ kind: instruction
55
name: rev8
66
long_name: Byte-reverse register (RV64 encoding)
77
description: |
8-
This instruction reverses the order of the bytes in rs1.
8+
Reverses the order of the bytes in rs1.
99
1010
[NOTE]
1111
The rev8 mnemonic corresponds to different instruction encodings in RV32 and RV64.

arch/inst/B/rol.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ kind: instruction
55
name: rol
66
long_name: Rotate left (Register)
77
description: |
8-
This instruction performs a rotate left of rs1 by the amount in least-significant `log2(XLEN)` bits of rs2.
8+
Performs a rotate left of rs1 by the amount in least-significant `log2(XLEN)` bits of rs2.
99
definedBy:
1010
anyOf: [Zbb, Zbkb]
1111
assembly: xd, xs1, xs2

arch/inst/B/rolw.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ kind: instruction
55
name: rolw
66
long_name: Rotate left word (Register)
77
description: |
8-
This instruction performs a rotate left of the least-significant word of rs1 by the amount in least-significant 5 bits of rs2.
8+
Performs a rotate left of the least-significant word of rs1 by the amount in least-significant 5 bits of rs2.
99
The resulting word value is sign-extended by copying bit 31 to all of the more-significant bits.
1010
definedBy:
1111
anyOf: [Zbb, Zbkb]

arch/inst/B/ror.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ kind: instruction
55
name: ror
66
long_name: Rotate right (Register)
77
description: |
8-
This instruction performs a rotate right of rs1 by the amount in least-significant `log2(XLEN)` bits of rs2.
8+
Performs a rotate right of rs1 by the amount in least-significant `log2(XLEN)` bits of rs2.
99
definedBy:
1010
anyOf: [Zbb, Zbkb]
1111
assembly: xd, xs1, xs2

arch/inst/B/rori.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ kind: instruction
55
name: rori
66
long_name: Rotate right (Immediate)
77
description: |
8-
This instruction performs a rotate right of rs1 by the amount in the least-significant log2(XLEN) bits of shamt.
8+
Performs a rotate right of rs1 by the amount in the least-significant log2(XLEN) bits of shamt.
99
For RV32, the encodings corresponding to shamt[5]=1 are reserved.
1010
definedBy:
1111
anyOf: [Zbb, Zbkb]

arch/inst/B/roriw.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ kind: instruction
55
name: roriw
66
long_name: Rotate right word (Immediate)
77
description: |
8-
This instruction performs a rotate right on the least-significant word of rs1 by the amount in
8+
Performs a rotate right on the least-significant word of rs1 by the amount in
99
the least-significant log2(XLEN) bits of shamt. The resulting word value is sign-extended by
1010
copying bit 31 to all of the more-significant bits.
1111
definedBy:

arch/inst/B/rorw.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ kind: instruction
55
name: rorw
66
long_name: Rotate right word (Register)
77
description: |
8-
This instruction performs a rotate right on the least-significant word of rs1 by the amount in
8+
Performs a rotate right on the least-significant word of rs1 by the amount in
99
least-significant 5 bits of rs2. The resultant word is sign-extended by copying bit 31 to all
1010
of the more-significant bits.
1111
definedBy:

arch/inst/B/xnor.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ kind: instruction
55
name: xnor
66
long_name: Exclusive NOR
77
description: |
8-
This instruction performs the bit-wise exclusive-NOR operation on rs1 and rs2.
8+
Performs the bit-wise exclusive-NOR operation on rs1 and rs2.
99
definedBy:
1010
anyOf: [Zbb, Zbkb]
1111
assembly: xd, xs1, xs2

0 commit comments

Comments
 (0)