aboutsummaryrefslogtreecommitdiff
path: root/gas
diff options
context:
space:
mode:
authorMary Bennett <mary.bennett@embecosm.com>2023-10-02 03:02:06 +0100
committerNelson Chu <nelson@rivosinc.com>2023-11-07 12:06:32 +0800
commitd1bd9787f9ad8c49fb463d8d53411aeb5f9c179b (patch)
tree2cb9c05606e9c273a1a7f99ef40cc24e112e16d0 /gas
parentccb388ca39f49b611acadce03916837c9c1c1ed1 (diff)
downloadbinutils-d1bd9787f9ad8c49fb463d8d53411aeb5f9c179b.zip
binutils-d1bd9787f9ad8c49fb463d8d53411aeb5f9c179b.tar.gz
binutils-d1bd9787f9ad8c49fb463d8d53411aeb5f9c179b.tar.bz2
RISC-V: Add support for XCValu extension in CV32E40P
Spec: https://docs.openhwgroup.org/projects/cv32e40p-user-manual/en/latest/instruction_set_extensions.html Contributors: Mary Bennett <mary.bennett@embecosm.com> Nandni Jamnadas <nandni.jamnadas@embecosm.com> Pietra Ferreira <pietra.ferreira@embecosm.com> Charlie Keaney Jessica Mills Craig Blackmore <craig.blackmore@embecosm.com> Simon Cook <simon.cook@embecosm.com> Jeremy Bennett <jeremy.bennett@embecosm.com> Helene Chelin <helene.chelin@embecosm.com> bfd/ChangeLog: * elfxx-riscv.c (riscv_multi_subset_supports): Added `xcvalu` instruction class. (riscv_multi_subset_supports_ext): Likewise. gas/ChangeLog: * config/tc-riscv.c (validate_riscv_insn): Added the necessary operands for the extension. (riscv_ip): Likewise. * doc/c-riscv.texi: Noted XCValu as an additional ISA extension for CORE-V. * testsuite/gas/riscv/cv-alu-boundaries.d: New test. * testsuite/gas/riscv/cv-alu-boundaries.l: New test. * testsuite/gas/riscv/cv-alu-boundaries.s: New test. * testsuite/gas/riscv/cv-alu-fail-march.d: New test. * testsuite/gas/riscv/cv-alu-fail-march.l: New test. * testsuite/gas/riscv/cv-alu-fail-march.s: New test. * testsuite/gas/riscv/cv-alu-fail-operand-01.d: New test. * testsuite/gas/riscv/cv-alu-fail-operand-01.l: New test. * testsuite/gas/riscv/cv-alu-fail-operand-01.s: New test. * testsuite/gas/riscv/cv-alu-fail-operand-02.d: New test. * testsuite/gas/riscv/cv-alu-fail-operand-02.l: New test. * testsuite/gas/riscv/cv-alu-fail-operand-02.s: New test. * testsuite/gas/riscv/cv-alu-fail-operand-03.d: New test. * testsuite/gas/riscv/cv-alu-fail-operand-03.l: New test. * testsuite/gas/riscv/cv-alu-fail-operand-03.s: New test. * testsuite/gas/riscv/cv-alu-fail-operand-04.d: New test. * testsuite/gas/riscv/cv-alu-fail-operand-04.l: New test. * testsuite/gas/riscv/cv-alu-fail-operand-04.s: New test. * testsuite/gas/riscv/cv-alu-fail-operand-05.d: New test. * testsuite/gas/riscv/cv-alu-fail-operand-05.l: New test. * testsuite/gas/riscv/cv-alu-fail-operand-05.s: New test. * testsuite/gas/riscv/cv-alu-fail-operand-06.d: New test. * testsuite/gas/riscv/cv-alu-fail-operand-06.l: New test. * testsuite/gas/riscv/cv-alu-fail-operand-06.s: New test. * testsuite/gas/riscv/cv-alu-fail-operand-07.d: New test. * testsuite/gas/riscv/cv-alu-fail-operand-07.l: New test. * testsuite/gas/riscv/cv-alu-fail-operand-07.s: New test. * testsuite/gas/riscv/cv-alu-insns.d: New test. * testsuite/gas/riscv/cv-alu-insns.s: New test. opcodes/ChangeLog: * riscv-dis.c (print_insn_args): Disassemble xcb operand. * riscv-opc.c: Defined the MASK and added XCValu instructions. include/ChangeLog: * opcode/riscv-opc.h: Added corresponding MATCH and MASK macros for XCValu. * opcode/riscv.h: Added corresponding EXTRACT and ENCODE macros for XCValu. (enum riscv_insn_class): Added the XCValu instruction class.
Diffstat (limited to 'gas')
-rw-r--r--gas/config/tc-riscv.c14
-rw-r--r--gas/doc/c-riscv.texi5
-rw-r--r--gas/testsuite/gas/riscv/cv-alu-boundaries.d3
-rw-r--r--gas/testsuite/gas/riscv/cv-alu-boundaries.l14
-rw-r--r--gas/testsuite/gas/riscv/cv-alu-boundaries.s27
-rw-r--r--gas/testsuite/gas/riscv/cv-alu-fail-march.d3
-rw-r--r--gas/testsuite/gas/riscv/cv-alu-fail-march.l32
-rw-r--r--gas/testsuite/gas/riscv/cv-alu-fail-march.s33
-rw-r--r--gas/testsuite/gas/riscv/cv-alu-fail-operand-01.d3
-rw-r--r--gas/testsuite/gas/riscv/cv-alu-fail-operand-01.l32
-rw-r--r--gas/testsuite/gas/riscv/cv-alu-fail-operand-01.s33
-rw-r--r--gas/testsuite/gas/riscv/cv-alu-fail-operand-02.d3
-rw-r--r--gas/testsuite/gas/riscv/cv-alu-fail-operand-02.l32
-rw-r--r--gas/testsuite/gas/riscv/cv-alu-fail-operand-02.s33
-rw-r--r--gas/testsuite/gas/riscv/cv-alu-fail-operand-03.d3
-rw-r--r--gas/testsuite/gas/riscv/cv-alu-fail-operand-03.l25
-rw-r--r--gas/testsuite/gas/riscv/cv-alu-fail-operand-03.s26
-rw-r--r--gas/testsuite/gas/riscv/cv-alu-fail-operand-04.d3
-rw-r--r--gas/testsuite/gas/riscv/cv-alu-fail-operand-04.l3
-rw-r--r--gas/testsuite/gas/riscv/cv-alu-fail-operand-04.s4
-rw-r--r--gas/testsuite/gas/riscv/cv-alu-fail-operand-05.d3
-rw-r--r--gas/testsuite/gas/riscv/cv-alu-fail-operand-05.l9
-rw-r--r--gas/testsuite/gas/riscv/cv-alu-fail-operand-05.s10
-rw-r--r--gas/testsuite/gas/riscv/cv-alu-fail-operand-06.d3
-rw-r--r--gas/testsuite/gas/riscv/cv-alu-fail-operand-06.l9
-rw-r--r--gas/testsuite/gas/riscv/cv-alu-fail-operand-06.s10
-rw-r--r--gas/testsuite/gas/riscv/cv-alu-fail-operand-07.d3
-rw-r--r--gas/testsuite/gas/riscv/cv-alu-fail-operand-07.l33
-rw-r--r--gas/testsuite/gas/riscv/cv-alu-fail-operand-07.s34
-rw-r--r--gas/testsuite/gas/riscv/cv-alu-insns.d102
-rw-r--r--gas/testsuite/gas/riscv/cv-alu-insns.s124
31 files changed, 671 insertions, 0 deletions
diff --git a/gas/config/tc-riscv.c b/gas/config/tc-riscv.c
index 29676bc..402c46a 100644
--- a/gas/config/tc-riscv.c
+++ b/gas/config/tc-riscv.c
@@ -1484,6 +1484,10 @@ validate_riscv_insn (const struct riscv_opcode *opc, int length)
case 'c': /* Vendor-specific (CORE-V) operands. */
switch (*++oparg)
{
+ case '2':
+ /* ls2[4:0] */
+ used_bits |= ENCODE_CV_IS2_UIMM5 (-1U);
+ break;
case '3':
used_bits |= ENCODE_CV_IS3_UIMM5 (-1U);
break;
@@ -3594,6 +3598,16 @@ riscv_ip (char *str, struct riscv_cl_insn *ip, expressionS *imm_expr,
case 'c': /* Vendor-specific (CORE-V) operands. */
switch (*++oparg)
{
+ case '2':
+ my_getExpression (imm_expr, asarg);
+ check_absolute_expr (ip, imm_expr, FALSE);
+ asarg = expr_parse_end;
+ if (imm_expr->X_add_number<0
+ || imm_expr->X_add_number>31)
+ break;
+ ip->insn_opcode
+ |= ENCODE_CV_IS2_UIMM5 (imm_expr->X_add_number);
+ continue;
case '3':
my_getExpression (imm_expr, asarg);
check_absolute_expr (ip, imm_expr, FALSE);
diff --git a/gas/doc/c-riscv.texi b/gas/doc/c-riscv.texi
index c77fa9e..b235046 100644
--- a/gas/doc/c-riscv.texi
+++ b/gas/doc/c-riscv.texi
@@ -749,6 +749,11 @@ The Xcvmac extension provides instructions for multiply-accumulate operations.
It is documented in @url{https://docs.openhwgroup.org/projects/cv32e40p-user-manual/en/latest/instruction_set_extensions.html}
+@item Xcvalu
+The Xcvalu extension provides instructions for general ALU operations.
+
+It is documented in @url{https://docs.openhwgroup.org/projects/cv32e40p-user-manual/en/latest/instruction_set_extensions.html}
+
@item XTheadBa
The XTheadBa extension provides instructions for address calculations.
diff --git a/gas/testsuite/gas/riscv/cv-alu-boundaries.d b/gas/testsuite/gas/riscv/cv-alu-boundaries.d
new file mode 100644
index 0000000..907b043
--- /dev/null
+++ b/gas/testsuite/gas/riscv/cv-alu-boundaries.d
@@ -0,0 +1,3 @@
+#as: -march=rv32i_xcvalu
+#source: cv-alu-boundaries.s
+#error_output: cv-alu-boundaries.l
diff --git a/gas/testsuite/gas/riscv/cv-alu-boundaries.l b/gas/testsuite/gas/riscv/cv-alu-boundaries.l
new file mode 100644
index 0000000..fae4022
--- /dev/null
+++ b/gas/testsuite/gas/riscv/cv-alu-boundaries.l
@@ -0,0 +1,14 @@
+.*: Assembler messages:
+.*: Error: illegal operands `cv.subnr 10,t3,t6'
+.*: Error: illegal operands `cv.addrnr t4,26,t6'
+.*: Error: illegal operands `cv.subunr t6,t3,15'
+.*: Error: instruction cv.clipu requires absolute expression
+.*: Error: instruction cv.addn requires absolute expression
+.*: Error: illegal operands `cv.clipu t0,t3,-10'
+.*: Error: illegal operands `cv.clipu t0,t3,500'
+.*: Error: illegal operands `cv.addn t0,t3,t6,-60'
+.*: Error: illegal operands `cv.addn t0,t3,t6,302'
+.*: Error: illegal operands `cv.clipu t0,t3,-1'
+.*: Error: illegal operands `cv.clipu t0,t3,32'
+.*: Error: illegal operands `cv.addn t0,t3,t6,-1'
+.*: Error: illegal operands `cv.addn t0,t3,t6,32'
diff --git a/gas/testsuite/gas/riscv/cv-alu-boundaries.s b/gas/testsuite/gas/riscv/cv-alu-boundaries.s
new file mode 100644
index 0000000..bb4da94
--- /dev/null
+++ b/gas/testsuite/gas/riscv/cv-alu-boundaries.s
@@ -0,0 +1,27 @@
+# Destination must be of type register
+target:
+ cv.subnr 10, t3, t6
+# Source 1 must be of type register
+ cv.addrnr t4, 26, t6
+# Source 2 must be of type register
+ cv.subunr t6, t3, 15
+# Five bit immediate must be an absolute value
+ cv.clipu t0, t3, t6
+# Five bit immediate must be an absolute value
+ cv.addn t0, t3, t6, t2
+# Five bit immediate must be an absolute value in range [0, 31]
+ cv.clipu t0, t3, -10
+# Five bit immediate must be an absolute value in range [0, 31]
+ cv.clipu t0, t3, 500
+# Five bit immediate must be an absolute value in range [0, 31]
+ cv.addn t0, t3, t6, -60
+# Five bit immediate must be an absolute value in range [0, 31]
+ cv.addn t0, t3, t6, 302
+# Five bit immediate must be an absolute value in range [0, 31]
+ cv.clipu t0, t3, -1
+# Five bit immediate must be an absolute value in range [0, 31]
+ cv.clipu t0, t3, 32
+# Five bit immediate must be an absolute value in range [0, 31]
+ cv.addn t0, t3, t6, -1
+# Five bit immediate must be an absolute value in range [0, 31]
+ cv.addn t0, t3, t6, 32
diff --git a/gas/testsuite/gas/riscv/cv-alu-fail-march.d b/gas/testsuite/gas/riscv/cv-alu-fail-march.d
new file mode 100644
index 0000000..963aa40
--- /dev/null
+++ b/gas/testsuite/gas/riscv/cv-alu-fail-march.d
@@ -0,0 +1,3 @@
+#as: -march=rv32i
+#source: cv-alu-fail-march.s
+#error_output: cv-alu-fail-march.l
diff --git a/gas/testsuite/gas/riscv/cv-alu-fail-march.l b/gas/testsuite/gas/riscv/cv-alu-fail-march.l
new file mode 100644
index 0000000..11e5a7c
--- /dev/null
+++ b/gas/testsuite/gas/riscv/cv-alu-fail-march.l
@@ -0,0 +1,32 @@
+.*: Assembler messages:
+.*: Error: unrecognized opcode `cv.abs t4,t2', extension `xcvalu' required
+.*: Error: unrecognized opcode `cv.slet t4,t2,t6', extension `xcvalu' required
+.*: Error: unrecognized opcode `cv.sletu t4,t2,t6', extension `xcvalu' required
+.*: Error: unrecognized opcode `cv.min t4,t2,t6', extension `xcvalu' required
+.*: Error: unrecognized opcode `cv.minu t4,t2,t6', extension `xcvalu' required
+.*: Error: unrecognized opcode `cv.max t4,t2,t6', extension `xcvalu' required
+.*: Error: unrecognized opcode `cv.maxu t4,t2,t6', extension `xcvalu' required
+.*: Error: unrecognized opcode `cv.exths t4,t2', extension `xcvalu' required
+.*: Error: unrecognized opcode `cv.exthz t4,t2', extension `xcvalu' required
+.*: Error: unrecognized opcode `cv.extbs t4,t2', extension `xcvalu' required
+.*: Error: unrecognized opcode `cv.extbz t4,t2', extension `xcvalu' required
+.*: Error: unrecognized opcode `cv.clip t4,t2,5', extension `xcvalu' required
+.*: Error: unrecognized opcode `cv.clipu t4,t2,5', extension `xcvalu' required
+.*: Error: unrecognized opcode `cv.clipr t4,t2,t6', extension `xcvalu' required
+.*: Error: unrecognized opcode `cv.clipur t4,t2,t6', extension `xcvalu' required
+.*: Error: unrecognized opcode `cv.addn t4,t2,t0,4', extension `xcvalu' required
+.*: Error: unrecognized opcode `cv.addun t4,t2,t0,4', extension `xcvalu' required
+.*: Error: unrecognized opcode `cv.addrn t6,t0,t3,9', extension `xcvalu' required
+.*: Error: unrecognized opcode `cv.addurn t6,t0,t3,14', extension `xcvalu' required
+.*: Error: unrecognized opcode `cv.addnr t6,t0,t3', extension `xcvalu' required
+.*: Error: unrecognized opcode `cv.addunr t6,t0,t3', extension `xcvalu' required
+.*: Error: unrecognized opcode `cv.addrnr t6,t0,t3', extension `xcvalu' required
+.*: Error: unrecognized opcode `cv.addurnr t6,t0,t3', extension `xcvalu' required
+.*: Error: unrecognized opcode `cv.subn t6,t0,t3,6', extension `xcvalu' required
+.*: Error: unrecognized opcode `cv.subun t6,t0,t3,24', extension `xcvalu' required
+.*: Error: unrecognized opcode `cv.subrn t6,t0,t3,21', extension `xcvalu' required
+.*: Error: unrecognized opcode `cv.suburn t6,t0,t3,3', extension `xcvalu' required
+.*: Error: unrecognized opcode `cv.subnr t6,t0,t3', extension `xcvalu' required
+.*: Error: unrecognized opcode `cv.subunr t6,t0,t3', extension `xcvalu' required
+.*: Error: unrecognized opcode `cv.subrnr t6,t0,t3', extension `xcvalu' required
+.*: Error: unrecognized opcode `cv.suburnr t6,t0,t3', extension `xcvalu' required
diff --git a/gas/testsuite/gas/riscv/cv-alu-fail-march.s b/gas/testsuite/gas/riscv/cv-alu-fail-march.s
new file mode 100644
index 0000000..8dd39b7
--- /dev/null
+++ b/gas/testsuite/gas/riscv/cv-alu-fail-march.s
@@ -0,0 +1,33 @@
+# Absence of xcv or xcvalu march option disables all CORE-V general ALU ops extensions
+target:
+ cv.abs t4,t2
+ cv.slet t4,t2,t6
+ cv.sletu t4,t2,t6
+ cv.min t4,t2,t6
+ cv.minu t4,t2,t6
+ cv.max t4,t2,t6
+ cv.maxu t4,t2,t6
+ cv.exths t4,t2
+ cv.exthz t4,t2
+ cv.extbs t4,t2
+ cv.extbz t4,t2
+ cv.clip t4,t2,5
+ cv.clipu t4,t2,5
+ cv.clipr t4,t2,t6
+ cv.clipur t4,t2,t6
+ cv.addn t4, t2, t0, 4
+ cv.addun t4, t2, t0, 4
+ cv.addrn t6, t0, t3, 9
+ cv.addurn t6, t0, t3, 14
+ cv.addnr t6, t0, t3
+ cv.addunr t6, t0, t3
+ cv.addrnr t6, t0, t3
+ cv.addurnr t6, t0, t3
+ cv.subn t6, t0, t3, 6
+ cv.subun t6, t0, t3, 24
+ cv.subrn t6, t0, t3, 21
+ cv.suburn t6, t0, t3, 3
+ cv.subnr t6, t0, t3
+ cv.subunr t6, t0, t3
+ cv.subrnr t6, t0, t3
+ cv.suburnr t6, t0, t3
diff --git a/gas/testsuite/gas/riscv/cv-alu-fail-operand-01.d b/gas/testsuite/gas/riscv/cv-alu-fail-operand-01.d
new file mode 100644
index 0000000..81b1734
--- /dev/null
+++ b/gas/testsuite/gas/riscv/cv-alu-fail-operand-01.d
@@ -0,0 +1,3 @@
+#as: -march=rv32i_xcvalu
+#source: cv-alu-fail-operand-01.s
+#error_output: cv-alu-fail-operand-01.l
diff --git a/gas/testsuite/gas/riscv/cv-alu-fail-operand-01.l b/gas/testsuite/gas/riscv/cv-alu-fail-operand-01.l
new file mode 100644
index 0000000..f670e43
--- /dev/null
+++ b/gas/testsuite/gas/riscv/cv-alu-fail-operand-01.l
@@ -0,0 +1,32 @@
+.*: Assembler messages:
+.*: Error: illegal operands `cv.abs 5,t2'
+.*: Error: illegal operands `cv.slet 10,t2,t6'
+.*: Error: illegal operands `cv.sletu 11,t2,t6'
+.*: Error: illegal operands `cv.min 15,t2,t6'
+.*: Error: illegal operands `cv.minu 16,t2,t6'
+.*: Error: illegal operands `cv.max 8,t2,t6'
+.*: Error: illegal operands `cv.maxu 3,t2,t6'
+.*: Error: illegal operands `cv.exths 2,t2'
+.*: Error: illegal operands `cv.exthz 6,t2'
+.*: Error: illegal operands `cv.extbs 4,t2'
+.*: Error: illegal operands `cv.extbz 7,t2'
+.*: Error: illegal operands `cv.clip 17,t2,5'
+.*: Error: illegal operands `cv.clipu 11,t2,5'
+.*: Error: illegal operands `cv.clipr 16,t2,t6'
+.*: Error: illegal operands `cv.clipur 15,t2,t6'
+.*: Error: illegal operands `cv.addn 9,t2,t0,4'
+.*: Error: illegal operands `cv.addun 30,t2,t0,4'
+.*: Error: illegal operands `cv.addrn 21,t0,t3,9'
+.*: Error: illegal operands `cv.addurn 6,t0,t3,14'
+.*: Error: illegal operands `cv.addnr 2,t0,t3'
+.*: Error: illegal operands `cv.addunr 26,t0,t3'
+.*: Error: illegal operands `cv.addrnr 3,t0,t3'
+.*: Error: illegal operands `cv.addurnr 14,t0,t3'
+.*: Error: illegal operands `cv.subn 15,t0,t3,6'
+.*: Error: illegal operands `cv.subun 9,t0,t3,24'
+.*: Error: illegal operands `cv.subrn 24,t0,t3,21'
+.*: Error: illegal operands `cv.suburn 25,t0,t3,3'
+.*: Error: illegal operands `cv.subnr 3,t0,t3'
+.*: Error: illegal operands `cv.subunr 12,t0,t3'
+.*: Error: illegal operands `cv.subrnr 13,t0,t3'
+.*: Error: illegal operands `cv.suburnr 8,t0,t3'
diff --git a/gas/testsuite/gas/riscv/cv-alu-fail-operand-01.s b/gas/testsuite/gas/riscv/cv-alu-fail-operand-01.s
new file mode 100644
index 0000000..7920ebd
--- /dev/null
+++ b/gas/testsuite/gas/riscv/cv-alu-fail-operand-01.s
@@ -0,0 +1,33 @@
+# Destination must be of type register
+target:
+ cv.abs 5,t2
+ cv.slet 10,t2,t6
+ cv.sletu 11,t2,t6
+ cv.min 15,t2,t6
+ cv.minu 16,t2,t6
+ cv.max 8,t2,t6
+ cv.maxu 3,t2,t6
+ cv.exths 2,t2
+ cv.exthz 6,t2
+ cv.extbs 4,t2
+ cv.extbz 7,t2
+ cv.clip 17,t2,5
+ cv.clipu 11,t2,5
+ cv.clipr 16,t2,t6
+ cv.clipur 15,t2,t6
+ cv.addn 9,t2,t0,4
+ cv.addun 30,t2,t0,4
+ cv.addrn 21,t0,t3,9
+ cv.addurn 6,t0,t3,14
+ cv.addnr 2,t0,t3
+ cv.addunr 26,t0,t3
+ cv.addrnr 3,t0,t3
+ cv.addurnr 14,t0,t3
+ cv.subn 15,t0,t3,6
+ cv.subun 9,t0,t3,24
+ cv.subrn 24,t0,t3,21
+ cv.suburn 25,t0,t3,3
+ cv.subnr 3,t0,t3
+ cv.subunr 12,t0,t3
+ cv.subrnr 13,t0,t3
+ cv.suburnr 8,t0,t3
diff --git a/gas/testsuite/gas/riscv/cv-alu-fail-operand-02.d b/gas/testsuite/gas/riscv/cv-alu-fail-operand-02.d
new file mode 100644
index 0000000..46645aa
--- /dev/null
+++ b/gas/testsuite/gas/riscv/cv-alu-fail-operand-02.d
@@ -0,0 +1,3 @@
+#as: -march=rv32i_xcvalu
+#source: cv-alu-fail-operand-02.s
+#error_output: cv-alu-fail-operand-02.l
diff --git a/gas/testsuite/gas/riscv/cv-alu-fail-operand-02.l b/gas/testsuite/gas/riscv/cv-alu-fail-operand-02.l
new file mode 100644
index 0000000..0a888c7
--- /dev/null
+++ b/gas/testsuite/gas/riscv/cv-alu-fail-operand-02.l
@@ -0,0 +1,32 @@
+.*: Assembler messages:
+.*: Error: illegal operands `cv.abs t4,5'
+.*: Error: illegal operands `cv.slet t4,7,t6'
+.*: Error: illegal operands `cv.sletu t4,3,t6'
+.*: Error: illegal operands `cv.min t4,5,t6'
+.*: Error: illegal operands `cv.minu t4,3,t6'
+.*: Error: illegal operands `cv.max t4,4,t6'
+.*: Error: illegal operands `cv.maxu t4,6,t6'
+.*: Error: illegal operands `cv.exths t4,30'
+.*: Error: illegal operands `cv.exthz t4,23'
+.*: Error: illegal operands `cv.extbs t4,25'
+.*: Error: illegal operands `cv.extbz t4,21'
+.*: Error: illegal operands `cv.clip t4,2,5'
+.*: Error: illegal operands `cv.clipu t4,16,5'
+.*: Error: illegal operands `cv.clipr t4,17,t6'
+.*: Error: illegal operands `cv.clipur t4,14,t6'
+.*: Error: illegal operands `cv.addn t4,5,t0,4'
+.*: Error: illegal operands `cv.addun t4,18,t0,4'
+.*: Error: illegal operands `cv.addrn t6,19,t3,9'
+.*: Error: illegal operands `cv.addurn t6,4,t3,14'
+.*: Error: illegal operands `cv.addnr t6,6,t3'
+.*: Error: illegal operands `cv.addunr t6,7,t3'
+.*: Error: illegal operands `cv.addrnr t6,9,t3'
+.*: Error: illegal operands `cv.addurnr t6,5,t3'
+.*: Error: illegal operands `cv.subn t6,11,t3,6'
+.*: Error: illegal operands `cv.subun t6,14,t3,24'
+.*: Error: illegal operands `cv.subrn t6,15,t3,21'
+.*: Error: illegal operands `cv.suburn t6,24,t3,3'
+.*: Error: illegal operands `cv.subnr t6,4,t3'
+.*: Error: illegal operands `cv.subunr t6,8,t3'
+.*: Error: illegal operands `cv.subrnr t6,7,t3'
+.*: Error: illegal operands `cv.suburnr t6,6,t3'
diff --git a/gas/testsuite/gas/riscv/cv-alu-fail-operand-02.s b/gas/testsuite/gas/riscv/cv-alu-fail-operand-02.s
new file mode 100644
index 0000000..6083f1f
--- /dev/null
+++ b/gas/testsuite/gas/riscv/cv-alu-fail-operand-02.s
@@ -0,0 +1,33 @@
+# Source 1 must be of type register
+target:
+ cv.abs t4,5
+ cv.slet t4,7,t6
+ cv.sletu t4,3,t6
+ cv.min t4,5,t6
+ cv.minu t4,3,t6
+ cv.max t4,4,t6
+ cv.maxu t4,6,t6
+ cv.exths t4,30
+ cv.exthz t4,23
+ cv.extbs t4,25
+ cv.extbz t4,21
+ cv.clip t4,2,5
+ cv.clipu t4,16,5
+ cv.clipr t4,17,t6
+ cv.clipur t4,14,t6
+ cv.addn t4,5,t0,4
+ cv.addun t4,18,t0,4
+ cv.addrn t6,19,t3,9
+ cv.addurn t6,4,t3,14
+ cv.addnr t6,6,t3
+ cv.addunr t6,7,t3
+ cv.addrnr t6,9,t3
+ cv.addurnr t6,5,t3
+ cv.subn t6,11,t3,6
+ cv.subun t6,14,t3,24
+ cv.subrn t6,15,t3,21
+ cv.suburn t6,24,t3,3
+ cv.subnr t6,4,t3
+ cv.subunr t6,8,t3
+ cv.subrnr t6,7,t3
+ cv.suburnr t6,6,t3
diff --git a/gas/testsuite/gas/riscv/cv-alu-fail-operand-03.d b/gas/testsuite/gas/riscv/cv-alu-fail-operand-03.d
new file mode 100644
index 0000000..6f68128
--- /dev/null
+++ b/gas/testsuite/gas/riscv/cv-alu-fail-operand-03.d
@@ -0,0 +1,3 @@
+#as: -march=rv32i_xcvalu
+#source: cv-alu-fail-operand-03.s
+#error_output: cv-alu-fail-operand-03.l
diff --git a/gas/testsuite/gas/riscv/cv-alu-fail-operand-03.l b/gas/testsuite/gas/riscv/cv-alu-fail-operand-03.l
new file mode 100644
index 0000000..c7a1118
--- /dev/null
+++ b/gas/testsuite/gas/riscv/cv-alu-fail-operand-03.l
@@ -0,0 +1,25 @@
+.*: Assembler messages:
+.*: Error: illegal operands `cv.slet t4,t2,3'
+.*: Error: illegal operands `cv.sletu t4,t2,4'
+.*: Error: illegal operands `cv.min t4,t2,13'
+.*: Error: illegal operands `cv.minu t4,t2,7'
+.*: Error: illegal operands `cv.max t4,t2,17'
+.*: Error: illegal operands `cv.maxu t4,t2,30'
+.*: Error: illegal operands `cv.clipr t4,t2,18'
+.*: Error: illegal operands `cv.clipur t4,t2,29'
+.*: Error: illegal operands `cv.addn t4,t2,24,4'
+.*: Error: illegal operands `cv.addun t4,t2,6,4'
+.*: Error: illegal operands `cv.addrn t6,t0,7,9'
+.*: Error: illegal operands `cv.addurn t6,t0,18,14'
+.*: Error: illegal operands `cv.addnr t6,t0,15'
+.*: Error: illegal operands `cv.addunr t6,t0,24'
+.*: Error: illegal operands `cv.addrnr t6,t0,3'
+.*: Error: illegal operands `cv.addurnr t6,t0,2'
+.*: Error: illegal operands `cv.subn t6,t0,1,6'
+.*: Error: illegal operands `cv.subun t6,t0,8,24'
+.*: Error: illegal operands `cv.subrn t6,t0,18,21'
+.*: Error: illegal operands `cv.suburn t6,t0,25,3'
+.*: Error: illegal operands `cv.subnr t6,t0,14'
+.*: Error: illegal operands `cv.subunr t6,t0,7'
+.*: Error: illegal operands `cv.subrnr t6,t0,18'
+.*: Error: illegal operands `cv.suburnr t6,t0,26'
diff --git a/gas/testsuite/gas/riscv/cv-alu-fail-operand-03.s b/gas/testsuite/gas/riscv/cv-alu-fail-operand-03.s
new file mode 100644
index 0000000..64ee870
--- /dev/null
+++ b/gas/testsuite/gas/riscv/cv-alu-fail-operand-03.s
@@ -0,0 +1,26 @@
+# Source 2 must be of type register
+target:
+ cv.slet t4,t2,3
+ cv.sletu t4,t2,4
+ cv.min t4,t2,13
+ cv.minu t4,t2,7
+ cv.max t4,t2,17
+ cv.maxu t4,t2,30
+ cv.clipr t4,t2,18
+ cv.clipur t4,t2,29
+ cv.addn t4,t2,24,4
+ cv.addun t4,t2,6,4
+ cv.addrn t6,t0,7,9
+ cv.addurn t6,t0,18,14
+ cv.addnr t6,t0,15
+ cv.addunr t6,t0,24
+ cv.addrnr t6,t0,3
+ cv.addurnr t6,t0,2
+ cv.subn t6,t0,1,6
+ cv.subun t6,t0,8,24
+ cv.subrn t6,t0,18,21
+ cv.suburn t6,t0,25,3
+ cv.subnr t6,t0,14
+ cv.subunr t6,t0,7
+ cv.subrnr t6,t0,18
+ cv.suburnr t6,t0,26
diff --git a/gas/testsuite/gas/riscv/cv-alu-fail-operand-04.d b/gas/testsuite/gas/riscv/cv-alu-fail-operand-04.d
new file mode 100644
index 0000000..634d9bf
--- /dev/null
+++ b/gas/testsuite/gas/riscv/cv-alu-fail-operand-04.d
@@ -0,0 +1,3 @@
+#as: -march=rv32i_xcvalu
+#source: cv-alu-fail-operand-04.s
+#error_output: cv-alu-fail-operand-04.l
diff --git a/gas/testsuite/gas/riscv/cv-alu-fail-operand-04.l b/gas/testsuite/gas/riscv/cv-alu-fail-operand-04.l
new file mode 100644
index 0000000..d6fd960
--- /dev/null
+++ b/gas/testsuite/gas/riscv/cv-alu-fail-operand-04.l
@@ -0,0 +1,3 @@
+.*: Assembler messages:
+.*: Error: instruction cv.clip requires absolute expression
+.*: Error: instruction cv.clipu requires absolute expression
diff --git a/gas/testsuite/gas/riscv/cv-alu-fail-operand-04.s b/gas/testsuite/gas/riscv/cv-alu-fail-operand-04.s
new file mode 100644
index 0000000..b97d52a
--- /dev/null
+++ b/gas/testsuite/gas/riscv/cv-alu-fail-operand-04.s
@@ -0,0 +1,4 @@
+# Five bit immediate must be an absolute value
+target:
+ cv.clip t4,t2,t3
+ cv.clipu t4,t2,t3
diff --git a/gas/testsuite/gas/riscv/cv-alu-fail-operand-05.d b/gas/testsuite/gas/riscv/cv-alu-fail-operand-05.d
new file mode 100644
index 0000000..1b90d3e
--- /dev/null
+++ b/gas/testsuite/gas/riscv/cv-alu-fail-operand-05.d
@@ -0,0 +1,3 @@
+#as: -march=rv32i_xcvalu
+#source: cv-alu-fail-operand-05.s
+#error_output: cv-alu-fail-operand-05.l
diff --git a/gas/testsuite/gas/riscv/cv-alu-fail-operand-05.l b/gas/testsuite/gas/riscv/cv-alu-fail-operand-05.l
new file mode 100644
index 0000000..05b5289
--- /dev/null
+++ b/gas/testsuite/gas/riscv/cv-alu-fail-operand-05.l
@@ -0,0 +1,9 @@
+.*: Assembler messages:
+.*: Error: instruction cv.addn requires absolute expression
+.*: Error: instruction cv.addun requires absolute expression
+.*: Error: instruction cv.addrn requires absolute expression
+.*: Error: instruction cv.addurn requires absolute expression
+.*: Error: instruction cv.subn requires absolute expression
+.*: Error: instruction cv.subun requires absolute expression
+.*: Error: instruction cv.subrn requires absolute expression
+.*: Error: instruction cv.suburn requires absolute expression
diff --git a/gas/testsuite/gas/riscv/cv-alu-fail-operand-05.s b/gas/testsuite/gas/riscv/cv-alu-fail-operand-05.s
new file mode 100644
index 0000000..1b0ac6f
--- /dev/null
+++ b/gas/testsuite/gas/riscv/cv-alu-fail-operand-05.s
@@ -0,0 +1,10 @@
+# Five bit immediate must be an absolute value
+target:
+ cv.addn t4,t2,t0,t3
+ cv.addun t4,t2,t0,t3
+ cv.addrn t6,t0,t3,t2
+ cv.addurn t6,t0,t3,t2
+ cv.subn t6,t0,t3,t2
+ cv.subun t6,t0,t3,t2
+ cv.subrn t6,t0,t3,t2
+ cv.suburn t6,t0,t3,t2
diff --git a/gas/testsuite/gas/riscv/cv-alu-fail-operand-06.d b/gas/testsuite/gas/riscv/cv-alu-fail-operand-06.d
new file mode 100644
index 0000000..0a49e68
--- /dev/null
+++ b/gas/testsuite/gas/riscv/cv-alu-fail-operand-06.d
@@ -0,0 +1,3 @@
+#as: -march=rv32i_xcvalu
+#source: cv-alu-fail-operand-06.s
+#error_output: cv-alu-fail-operand-06.l
diff --git a/gas/testsuite/gas/riscv/cv-alu-fail-operand-06.l b/gas/testsuite/gas/riscv/cv-alu-fail-operand-06.l
new file mode 100644
index 0000000..d8059cb
--- /dev/null
+++ b/gas/testsuite/gas/riscv/cv-alu-fail-operand-06.l
@@ -0,0 +1,9 @@
+.*: Assembler messages:
+.*: Error: illegal operands `cv.clip t0,t3,-1'
+.*: Error: illegal operands `cv.clipu t0,t3,-1'
+.*: Error: illegal operands `cv.clip t0,t3,-400'
+.*: Error: illegal operands `cv.clipu t0,t3,-985'
+.*: Error: illegal operands `cv.clip t0,t3,32'
+.*: Error: illegal operands `cv.clipu t0,t3,32'
+.*: Error: illegal operands `cv.clip t0,t3,859'
+.*: Error: illegal operands `cv.clipu t0,t3,7283'
diff --git a/gas/testsuite/gas/riscv/cv-alu-fail-operand-06.s b/gas/testsuite/gas/riscv/cv-alu-fail-operand-06.s
new file mode 100644
index 0000000..1b810bd
--- /dev/null
+++ b/gas/testsuite/gas/riscv/cv-alu-fail-operand-06.s
@@ -0,0 +1,10 @@
+# Five bit immediate must be an absolute value in range [0, 31]
+target:
+ cv.clip t0,t3,-1
+ cv.clipu t0,t3,-1
+ cv.clip t0,t3,-400
+ cv.clipu t0,t3,-985
+ cv.clip t0,t3,32
+ cv.clipu t0,t3,32
+ cv.clip t0,t3,859
+ cv.clipu t0,t3,7283
diff --git a/gas/testsuite/gas/riscv/cv-alu-fail-operand-07.d b/gas/testsuite/gas/riscv/cv-alu-fail-operand-07.d
new file mode 100644
index 0000000..06d17fe
--- /dev/null
+++ b/gas/testsuite/gas/riscv/cv-alu-fail-operand-07.d
@@ -0,0 +1,3 @@
+#as: -march=rv32i_xcvalu
+#source: cv-alu-fail-operand-07.s
+#error_output: cv-alu-fail-operand-07.l
diff --git a/gas/testsuite/gas/riscv/cv-alu-fail-operand-07.l b/gas/testsuite/gas/riscv/cv-alu-fail-operand-07.l
new file mode 100644
index 0000000..5a34156
--- /dev/null
+++ b/gas/testsuite/gas/riscv/cv-alu-fail-operand-07.l
@@ -0,0 +1,33 @@
+.*: Assembler messages:
+.*: Error: illegal operands `cv.addn t4,t2,t0,-1'
+.*: Error: illegal operands `cv.addun t4,t2,t0,-1'
+.*: Error: illegal operands `cv.addrn t6,t0,t3,-1'
+.*: Error: illegal operands `cv.addurn t6,t0,t3,-1'
+.*: Error: illegal operands `cv.subn t6,t0,t3,-1'
+.*: Error: illegal operands `cv.subun t6,t0,t3,-1'
+.*: Error: illegal operands `cv.subrn t6,t0,t3,-1'
+.*: Error: illegal operands `cv.suburn t6,t0,t3,-1'
+.*: Error: illegal operands `cv.addn t4,t2,t0,-34'
+.*: Error: illegal operands `cv.addun t4,t2,t0,-3556'
+.*: Error: illegal operands `cv.addrn t6,t0,t3,-212'
+.*: Error: illegal operands `cv.addurn t6,t0,t3,-6584'
+.*: Error: illegal operands `cv.subn t6,t0,t3,-89'
+.*: Error: illegal operands `cv.subun t6,t0,t3,-9034'
+.*: Error: illegal operands `cv.subrn t6,t0,t3,-234'
+.*: Error: illegal operands `cv.suburn t6,t0,t3,-284'
+.*: Error: illegal operands `cv.addn t4,t2,t0,32'
+.*: Error: illegal operands `cv.addun t4,t2,t0,32'
+.*: Error: illegal operands `cv.addrn t6,t0,t3,32'
+.*: Error: illegal operands `cv.addurn t6,t0,t3,32'
+.*: Error: illegal operands `cv.subn t6,t0,t3,32'
+.*: Error: illegal operands `cv.subun t6,t0,t3,32'
+.*: Error: illegal operands `cv.subrn t6,t0,t3,32'
+.*: Error: illegal operands `cv.suburn t6,t0,t3,32'
+.*: Error: illegal operands `cv.addn t4,t2,t0,320'
+.*: Error: illegal operands `cv.addun t4,t2,t0,34534'
+.*: Error: illegal operands `cv.addrn t6,t0,t3,254'
+.*: Error: illegal operands `cv.addurn t6,t0,t3,398'
+.*: Error: illegal operands `cv.subn t6,t0,t3,89'
+.*: Error: illegal operands `cv.subun t6,t0,t3,3489'
+.*: Error: illegal operands `cv.subrn t6,t0,t3,143'
+.*: Error: illegal operands `cv.suburn t6,t0,t3,234'
diff --git a/gas/testsuite/gas/riscv/cv-alu-fail-operand-07.s b/gas/testsuite/gas/riscv/cv-alu-fail-operand-07.s
new file mode 100644
index 0000000..04788f6
--- /dev/null
+++ b/gas/testsuite/gas/riscv/cv-alu-fail-operand-07.s
@@ -0,0 +1,34 @@
+# Five bit immediate must be an absolute value in range [0, 31]
+target:
+ cv.addn t4,t2,t0,-1
+ cv.addun t4,t2,t0,-1
+ cv.addrn t6,t0,t3,-1
+ cv.addurn t6,t0,t3,-1
+ cv.subn t6,t0,t3,-1
+ cv.subun t6,t0,t3,-1
+ cv.subrn t6,t0,t3,-1
+ cv.suburn t6,t0,t3,-1
+ cv.addn t4,t2,t0,-34
+ cv.addun t4,t2,t0,-3556
+ cv.addrn t6,t0,t3,-212
+ cv.addurn t6,t0,t3,-6584
+ cv.subn t6,t0,t3,-89
+ cv.subun t6,t0,t3,-9034
+ cv.subrn t6,t0,t3,-234
+ cv.suburn t6,t0,t3,-284
+ cv.addn t4,t2,t0,32
+ cv.addun t4,t2,t0,32
+ cv.addrn t6,t0,t3,32
+ cv.addurn t6,t0,t3,32
+ cv.subn t6,t0,t3,32
+ cv.subun t6,t0,t3,32
+ cv.subrn t6,t0,t3,32
+ cv.suburn t6,t0,t3,32
+ cv.addn t4,t2,t0,320
+ cv.addun t4,t2,t0,34534
+ cv.addrn t6,t0,t3,254
+ cv.addurn t6,t0,t3,398
+ cv.subn t6,t0,t3,89
+ cv.subun t6,t0,t3,3489
+ cv.subrn t6,t0,t3,143
+ cv.suburn t6,t0,t3,234
diff --git a/gas/testsuite/gas/riscv/cv-alu-insns.d b/gas/testsuite/gas/riscv/cv-alu-insns.d
new file mode 100644
index 0000000..784cf5c
--- /dev/null
+++ b/gas/testsuite/gas/riscv/cv-alu-insns.d
@@ -0,0 +1,102 @@
+#as: -march=rv32i_xcvalu
+#objdump: -d
+
+.*:[ ]+file format .*
+
+
+Disassembly of section .text:
+
+0+000 <target>:
+[ ]+0:[ ]+500332ab[ ]+cv.abs[ ]+t0,t1
+[ ]+4:[ ]+5003beab[ ]+cv.abs[ ]+t4,t2
+[ ]+8:[ ]+500f3e2b[ ]+cv.abs[ ]+t3,t5
+[ ]+c:[ ]+81fe32ab[ ]+cv.addnr[ ]+t0,t3,t6
+[ ]+10:[ ]+81c2bfab[ ]+cv.addnr[ ]+t6,t0,t3
+[ ]+14:[ ]+805fbe2b[ ]+cv.addnr[ ]+t3,t6,t0
+[ ]+18:[ ]+007322db[ ]+cv.addn[ ]+t0,t1,t2,0
+[ ]+1c:[ ]+0853aedb[ ]+cv.addn[ ]+t4,t2,t0,4
+[ ]+20:[ ]+3e6f2e5b[ ]+cv.addn[ ]+t3,t5,t1,31
+[ ]+24:[ ]+85fe32ab[ ]+cv.addrnr[ ]+t0,t3,t6
+[ ]+28:[ ]+85c2bfab[ ]+cv.addrnr[ ]+t6,t0,t3
+[ ]+2c:[ ]+845fbe2b[ ]+cv.addrnr[ ]+t3,t6,t0
+[ ]+30:[ ]+81fe22db[ ]+cv.addrn[ ]+t0,t3,t6,0
+[ ]+34:[ ]+93c2afdb[ ]+cv.addrn[ ]+t6,t0,t3,9
+[ ]+38:[ ]+be5fae5b[ ]+cv.addrn[ ]+t3,t6,t0,31
+[ ]+3c:[ ]+83fe32ab[ ]+cv.addunr[ ]+t0,t3,t6
+[ ]+40:[ ]+83c2bfab[ ]+cv.addunr[ ]+t6,t0,t3
+[ ]+44:[ ]+825fbe2b[ ]+cv.addunr[ ]+t3,t6,t0
+[ ]+48:[ ]+407322db[ ]+cv.addun[ ]+t0,t1,t2,0
+[ ]+4c:[ ]+4853aedb[ ]+cv.addun[ ]+t4,t2,t0,4
+[ ]+50:[ ]+7e6f2e5b[ ]+cv.addun[ ]+t3,t5,t1,31
+[ ]+54:[ ]+87fe32ab[ ]+cv.addurnr[ ]+t0,t3,t6
+[ ]+58:[ ]+87c2bfab[ ]+cv.addurnr[ ]+t6,t0,t3
+[ ]+5c:[ ]+865fbe2b[ ]+cv.addurnr[ ]+t3,t6,t0
+[ ]+60:[ ]+c1fe22db[ ]+cv.addurn[ ]+t0,t3,t6,0
+[ ]+64:[ ]+ddc2afdb[ ]+cv.addurn[ ]+t6,t0,t3,14
+[ ]+68:[ ]+fe5fae5b[ ]+cv.addurn[ ]+t3,t6,t0,31
+[ ]+6c:[ ]+747332ab[ ]+cv.clipr[ ]+t0,t1,t2
+[ ]+70:[ ]+75f3beab[ ]+cv.clipr[ ]+t4,t2,t6
+[ ]+74:[ ]+746f3e2b[ ]+cv.clipr[ ]+t3,t5,t1
+[ ]+78:[ ]+700332ab[ ]+cv.clip[ ]+t0,t1,0
+[ ]+7c:[ ]+7053beab[ ]+cv.clip[ ]+t4,t2,5
+[ ]+80:[ ]+71ff3e2b[ ]+cv.clip[ ]+t3,t5,31
+[ ]+84:[ ]+767332ab[ ]+cv.clipur[ ]+t0,t1,t2
+[ ]+88:[ ]+77f3beab[ ]+cv.clipur[ ]+t4,t2,t6
+[ ]+8c:[ ]+766f3e2b[ ]+cv.clipur[ ]+t3,t5,t1
+[ ]+90:[ ]+720332ab[ ]+cv.clipu[ ]+t0,t1,0
+[ ]+94:[ ]+7253beab[ ]+cv.clipu[ ]+t4,t2,5
+[ ]+98:[ ]+73ff3e2b[ ]+cv.clipu[ ]+t3,t5,31
+[ ]+9c:[ ]+640332ab[ ]+cv.extbs[ ]+t0,t1
+[ ]+a0:[ ]+6403beab[ ]+cv.extbs[ ]+t4,t2
+[ ]+a4:[ ]+640f3e2b[ ]+cv.extbs[ ]+t3,t5
+[ ]+a8:[ ]+660332ab[ ]+cv.extbz[ ]+t0,t1
+[ ]+ac:[ ]+6603beab[ ]+cv.extbz[ ]+t4,t2
+[ ]+b0:[ ]+660f3e2b[ ]+cv.extbz[ ]+t3,t5
+[ ]+b4:[ ]+600332ab[ ]+cv.exths[ ]+t0,t1
+[ ]+b8:[ ]+6003beab[ ]+cv.exths[ ]+t4,t2
+[ ]+bc:[ ]+600f3e2b[ ]+cv.exths[ ]+t3,t5
+[ ]+c0:[ ]+620332ab[ ]+cv.exthz[ ]+t0,t1
+[ ]+c4:[ ]+6203beab[ ]+cv.exthz[ ]+t4,t2
+[ ]+c8:[ ]+620f3e2b[ ]+cv.exthz[ ]+t3,t5
+[ ]+cc:[ ]+5a7332ab[ ]+cv.max[ ]+t0,t1,t2
+[ ]+d0:[ ]+5bf3beab[ ]+cv.max[ ]+t4,t2,t6
+[ ]+d4:[ ]+5a6f3e2b[ ]+cv.max[ ]+t3,t5,t1
+[ ]+d8:[ ]+5c7332ab[ ]+cv.maxu[ ]+t0,t1,t2
+[ ]+dc:[ ]+5df3beab[ ]+cv.maxu[ ]+t4,t2,t6
+[ ]+e0:[ ]+5c6f3e2b[ ]+cv.maxu[ ]+t3,t5,t1
+[ ]+e4:[ ]+567332ab[ ]+cv.min[ ]+t0,t1,t2
+[ ]+e8:[ ]+57f3beab[ ]+cv.min[ ]+t4,t2,t6
+[ ]+ec:[ ]+566f3e2b[ ]+cv.min[ ]+t3,t5,t1
+[ ]+f0:[ ]+587332ab[ ]+cv.minu[ ]+t0,t1,t2
+[ ]+f4:[ ]+59f3beab[ ]+cv.minu[ ]+t4,t2,t6
+[ ]+f8:[ ]+586f3e2b[ ]+cv.minu[ ]+t3,t5,t1
+[ ]+fc:[ ]+527332ab[ ]+cv.sle[ ]+t0,t1,t2
+[ ]+100:[ ]+53f3beab[ ]+cv.sle[ ]+t4,t2,t6
+[ ]+104:[ ]+526f3e2b[ ]+cv.sle[ ]+t3,t5,t1
+[ ]+108:[ ]+547332ab[ ]+cv.sleu[ ]+t0,t1,t2
+[ ]+10c:[ ]+55f3beab[ ]+cv.sleu[ ]+t4,t2,t6
+[ ]+110:[ ]+546f3e2b[ ]+cv.sleu[ ]+t3,t5,t1
+[ ]+114:[ ]+89fe32ab[ ]+cv.subnr[ ]+t0,t3,t6
+[ ]+118:[ ]+89c2bfab[ ]+cv.subnr[ ]+t6,t0,t3
+[ ]+11c:[ ]+885fbe2b[ ]+cv.subnr[ ]+t3,t6,t0
+[ ]+120:[ ]+01fe32db[ ]+cv.subn[ ]+t0,t3,t6,0
+[ ]+124:[ ]+0dc2bfdb[ ]+cv.subn[ ]+t6,t0,t3,6
+[ ]+128:[ ]+3e5fbe5b[ ]+cv.subn[ ]+t3,t6,t0,31
+[ ]+12c:[ ]+8dfe32ab[ ]+cv.subrnr[ ]+t0,t3,t6
+[ ]+130:[ ]+8dc2bfab[ ]+cv.subrnr[ ]+t6,t0,t3
+[ ]+134:[ ]+8c5fbe2b[ ]+cv.subrnr[ ]+t3,t6,t0
+[ ]+138:[ ]+81fe32db[ ]+cv.subrn[ ]+t0,t3,t6,0
+[ ]+13c:[ ]+abc2bfdb[ ]+cv.subrn[ ]+t6,t0,t3,21
+[ ]+140:[ ]+be5fbe5b[ ]+cv.subrn[ ]+t3,t6,t0,31
+[ ]+144:[ ]+8bfe32ab[ ]+cv.subunr[ ]+t0,t3,t6
+[ ]+148:[ ]+8bc2bfab[ ]+cv.subunr[ ]+t6,t0,t3
+[ ]+14c:[ ]+8a5fbe2b[ ]+cv.subunr[ ]+t3,t6,t0
+[ ]+150:[ ]+41fe32db[ ]+cv.subun[ ]+t0,t3,t6,0
+[ ]+154:[ ]+71c2bfdb[ ]+cv.subun[ ]+t6,t0,t3,24
+[ ]+158:[ ]+7e5fbe5b[ ]+cv.subun[ ]+t3,t6,t0,31
+[ ]+15c:[ ]+8ffe32ab[ ]+cv.suburnr[ ]+t0,t3,t6
+[ ]+160:[ ]+8fc2bfab[ ]+cv.suburnr[ ]+t6,t0,t3
+[ ]+164:[ ]+8e5fbe2b[ ]+cv.suburnr[ ]+t3,t6,t0
+[ ]+168:[ ]+c1fe32db[ ]+cv.suburn[ ]+t0,t3,t6,0
+[ ]+16c:[ ]+c7c2bfdb[ ]+cv.suburn[ ]+t6,t0,t3,3
+[ ]+170:[ ]+fe5fbe5b[ ]+cv.suburn[ ]+t3,t6,t0,31
diff --git a/gas/testsuite/gas/riscv/cv-alu-insns.s b/gas/testsuite/gas/riscv/cv-alu-insns.s
new file mode 100644
index 0000000..82ea0c3
--- /dev/null
+++ b/gas/testsuite/gas/riscv/cv-alu-insns.s
@@ -0,0 +1,124 @@
+target:
+ cv.abs t0,t1
+ cv.abs t4,t2
+ cv.abs t3,t5
+
+ cv.addnr t0, t3, t6
+ cv.addnr t6, t0, t3
+ cv.addnr t3, t6, t0
+
+ cv.addn t0, t1, t2, 0
+ cv.addn t4, t2, t0, 4
+ cv.addn t3, t5, t1, 31
+
+ cv.addrnr t0, t3, t6
+ cv.addrnr t6, t0, t3
+ cv.addrnr t3, t6, t0
+
+ cv.addrn t0, t3, t6, 0
+ cv.addrn t6, t0, t3, 9
+ cv.addrn t3, t6, t0, 31
+
+ cv.addunr t0, t3, t6
+ cv.addunr t6, t0, t3
+ cv.addunr t3, t6, t0
+
+ cv.addun t0, t1, t2, 0
+ cv.addun t4, t2, t0, 4
+ cv.addun t3, t5, t1, 31
+
+ cv.addurnr t0, t3, t6
+ cv.addurnr t6, t0, t3
+ cv.addurnr t3, t6, t0
+
+ cv.addurn t0, t3, t6, 0
+ cv.addurn t6, t0, t3, 14
+ cv.addurn t3, t6, t0, 31
+
+ cv.clipr t0,t1,t2
+ cv.clipr t4,t2,t6
+ cv.clipr t3,t5,t1
+
+ cv.clip t0,t1,0
+ cv.clip t4,t2,5
+ cv.clip t3,t5,31
+
+ cv.clipur t0,t1,t2
+ cv.clipur t4,t2,t6
+ cv.clipur t3,t5,t1
+
+ cv.clipu t0,t1,0
+ cv.clipu t4,t2,5
+ cv.clipu t3,t5,31
+
+ cv.extbs t0,t1
+ cv.extbs t4,t2
+ cv.extbs t3,t5
+
+ cv.extbz t0,t1
+ cv.extbz t4,t2
+ cv.extbz t3,t5
+
+ cv.exths t0,t1
+ cv.exths t4,t2
+ cv.exths t3,t5
+
+ cv.exthz t0,t1
+ cv.exthz t4,t2
+ cv.exthz t3,t5
+
+ cv.max t0,t1,t2
+ cv.max t4,t2,t6
+ cv.max t3,t5,t1
+
+ cv.maxu t0,t1,t2
+ cv.maxu t4,t2,t6
+ cv.maxu t3,t5,t1
+
+ cv.min t0,t1,t2
+ cv.min t4,t2,t6
+ cv.min t3,t5,t1
+
+ cv.minu t0,t1,t2
+ cv.minu t4,t2,t6
+ cv.minu t3,t5,t1
+
+ cv.sle t0,t1,t2
+ cv.sle t4,t2,t6
+ cv.sle t3,t5,t1
+
+ cv.sleu t0,t1,t2
+ cv.sleu t4,t2,t6
+ cv.sleu t3,t5,t1
+
+ cv.subnr t0, t3, t6
+ cv.subnr t6, t0, t3
+ cv.subnr t3, t6, t0
+
+ cv.subn t0, t3, t6, 0
+ cv.subn t6, t0, t3, 6
+ cv.subn t3, t6, t0, 31
+
+ cv.subrnr t0, t3, t6
+ cv.subrnr t6, t0, t3
+ cv.subrnr t3, t6, t0
+
+ cv.subrn t0, t3, t6, 0
+ cv.subrn t6, t0, t3, 21
+ cv.subrn t3, t6, t0, 31
+
+ cv.subunr t0, t3, t6
+ cv.subunr t6, t0, t3
+ cv.subunr t3, t6, t0
+
+ cv.subun t0, t3, t6, 0
+ cv.subun t6, t0, t3, 24
+ cv.subun t3, t6, t0, 31
+
+ cv.suburnr t0, t3, t6
+ cv.suburnr t6, t0, t3
+ cv.suburnr t3, t6, t0
+
+ cv.suburn t0, t3, t6, 0
+ cv.suburn t6, t0, t3, 3
+ cv.suburn t3, t6, t0, 31