aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoger Chang <rogerycchang@google.com>2024-02-19 11:32:24 +0800
committerRoger Chang <rogerycchang@google.com>2024-02-19 11:32:24 +0800
commit879cb3ccf7672f537cefece890c85e8cc913c0ea (patch)
tree3f0e61c8965f4a8be51396181d865c3dfcd758bf
parenta3498c6d2f770af95964a0a7ba46f285cecd1eb3 (diff)
downloadriscv-tests-879cb3ccf7672f537cefece890c85e8cc913c0ea.zip
riscv-tests-879cb3ccf7672f537cefece890c85e8cc913c0ea.tar.gz
riscv-tests-879cb3ccf7672f537cefece890c85e8cc913c0ea.tar.bz2
Add zbc test cases
Signed-off-by: Roger Chang <rogerycchang@google.com>
-rw-r--r--isa/Makefile8
-rw-r--r--isa/rv32uzbc/Makefrag14
-rw-r--r--isa/rv32uzbc/clmul.S84
-rw-r--r--isa/rv32uzbc/clmulh.S84
-rw-r--r--isa/rv32uzbc/clmulr.S84
-rw-r--r--isa/rv64uzbc/Makefrag14
-rw-r--r--isa/rv64uzbc/clmul.S78
-rw-r--r--isa/rv64uzbc/clmulh.S78
-rw-r--r--isa/rv64uzbc/clmulr.S78
9 files changed, 520 insertions, 2 deletions
diff --git a/isa/Makefile b/isa/Makefile
index 28ae6a6..cb790a0 100644
--- a/isa/Makefile
+++ b/isa/Makefile
@@ -16,6 +16,7 @@ include $(src_dir)/rv64ud/Makefrag
include $(src_dir)/rv64uzfh/Makefrag
include $(src_dir)/rv64uzba/Makefrag
include $(src_dir)/rv64uzbb/Makefrag
+include $(src_dir)/rv64uzbc/Makefrag
include $(src_dir)/rv64si/Makefrag
include $(src_dir)/rv64ssvnapot/Makefrag
include $(src_dir)/rv64mi/Makefrag
@@ -30,6 +31,7 @@ include $(src_dir)/rv32ud/Makefrag
include $(src_dir)/rv32uzfh/Makefrag
include $(src_dir)/rv32uzba/Makefrag
include $(src_dir)/rv32uzbb/Makefrag
+include $(src_dir)/rv32uzbc/Makefrag
include $(src_dir)/rv32si/Makefrag
include $(src_dir)/rv32mi/Makefrag
@@ -54,10 +56,10 @@ vpath %.S $(src_dir)
$(RISCV_OBJDUMP) $< > $@
%.out: %
- $(RISCV_SIM) --isa=rv64gc_zfh_zicboz_svnapot_zicntr_zba_zbb --misaligned $< 2> $@
+ $(RISCV_SIM) --isa=rv64gc_zfh_zicboz_svnapot_zicntr_zba_zbb_zbc --misaligned $< 2> $@
%.out32: %
- $(RISCV_SIM) --isa=rv32gc_zfh_zicboz_svnapot_zicntr_zba_zbb --misaligned $< 2> $@
+ $(RISCV_SIM) --isa=rv32gc_zfh_zicboz_svnapot_zicntr_zba_zbb_zbc --misaligned $< 2> $@
define compile_template
@@ -92,6 +94,7 @@ $(eval $(call compile_template,rv32ud,-march=rv32g -mabi=ilp32))
$(eval $(call compile_template,rv32uzfh,-march=rv32g_zfh -mabi=ilp32))
$(eval $(call compile_template,rv32uzba,-march=rv32g_zba -mabi=ilp32))
$(eval $(call compile_template,rv32uzbb,-march=rv32g_zbb -mabi=ilp32))
+$(eval $(call compile_template,rv32uzbc,-march=rv32g_zbc -mabi=ilp32))
$(eval $(call compile_template,rv32si,-march=rv32g -mabi=ilp32))
$(eval $(call compile_template,rv32mi,-march=rv32g -mabi=ilp32))
ifeq ($(XLEN),64)
@@ -104,6 +107,7 @@ $(eval $(call compile_template,rv64ud,-march=rv64g -mabi=lp64))
$(eval $(call compile_template,rv64uzfh,-march=rv64g_zfh -mabi=lp64))
$(eval $(call compile_template,rv64uzba,-march=rv64g_zba -mabi=lp64))
$(eval $(call compile_template,rv64uzbb,-march=rv64g_zbb -mabi=lp64))
+$(eval $(call compile_template,rv64uzbc,-march=rv64g_zbc -mabi=lp64))
$(eval $(call compile_template,rv64mzicbo,-march=rv64g_zicboz -mabi=lp64))
$(eval $(call compile_template,rv64si,-march=rv64g -mabi=lp64))
$(eval $(call compile_template,rv64ssvnapot,-march=rv64g -mabi=lp64))
diff --git a/isa/rv32uzbc/Makefrag b/isa/rv32uzbc/Makefrag
new file mode 100644
index 0000000..7dcf6d5
--- /dev/null
+++ b/isa/rv32uzbc/Makefrag
@@ -0,0 +1,14 @@
+#=======================================================================
+# Makefrag for rv32uzbc tests
+#-----------------------------------------------------------------------
+
+rv32uzbc_sc_tests = \
+ clmul \
+ clmulh \
+ clmulr \
+
+rv32uzbc_p_tests = $(addprefix rv32uzbc-p-, $(rv32uzbc_sc_tests))
+rv32uzbc_v_tests = $(addprefix rv32uzbc-v-, $(rv32uzbc_sc_tests))
+rv32uzbc_ps_tests = $(addprefix rv32uzbc-ps-, $(rv32uzbc_sc_tests))
+
+spike_tests += $(rv32uzbc_p_tests) $(rv32uzbc_v_tests)
diff --git a/isa/rv32uzbc/clmul.S b/isa/rv32uzbc/clmul.S
new file mode 100644
index 0000000..8a50300
--- /dev/null
+++ b/isa/rv32uzbc/clmul.S
@@ -0,0 +1,84 @@
+# See LICENSE for license details.
+
+#*****************************************************************************
+# clmul.S
+#-----------------------------------------------------------------------------
+#
+# Test clmul instruction.
+#
+
+#include "riscv_test.h"
+#include "test_macros.h"
+
+RVTEST_RV32U
+RVTEST_CODE_BEGIN
+
+ #-------------------------------------------------------------
+ # Arithmetic tests
+ #-------------------------------------------------------------
+
+ TEST_RR_OP(32, clmul, 0x00005a00, 0x00007e00, 0xb6db6db7 );
+ TEST_RR_OP(33, clmul, 0x00005b40, 0x00007fc0, 0xb6db6db7 );
+
+ TEST_RR_OP( 2, clmul, 0x00000000, 0x00000000, 0x00000000 );
+ TEST_RR_OP( 3, clmul, 0x00000001, 0x00000001, 0x00000001 );
+ TEST_RR_OP( 4, clmul, 0x00000009, 0x00000003, 0x00000007 );
+
+ TEST_RR_OP( 5, clmul, 0x00000000, 0x00000000, 0xffff8000 );
+ TEST_RR_OP( 6, clmul, 0x00000000, 0x80000000, 0x00000000 );
+ TEST_RR_OP( 7, clmul, 0x00000000, 0x80000000, 0xffff8000 );
+
+ TEST_RR_OP(30, clmul, 0xfffc324f, 0xaaaaaaab, 0x0002fe7d );
+ TEST_RR_OP(31, clmul, 0xfffc324f, 0x0002fe7d, 0xaaaaaaab );
+
+ TEST_RR_OP(34, clmul, 0x00000000, 0xff000000, 0xff000000 );
+
+ TEST_RR_OP(35, clmul, 0x55555555, 0xffffffff, 0xffffffff );
+ TEST_RR_OP(36, clmul, 0xffffffff, 0xffffffff, 0x00000001 );
+ TEST_RR_OP(37, clmul, 0xffffffff, 0x00000001, 0xffffffff );
+
+ #-------------------------------------------------------------
+ # Source/Destination tests
+ #-------------------------------------------------------------
+
+ TEST_RR_SRC1_EQ_DEST( 8, clmul, 0x7f, 13, 11 );
+ TEST_RR_SRC2_EQ_DEST( 9, clmul, 0x62, 14, 11 );
+ TEST_RR_SRC12_EQ_DEST( 10, clmul, 0x51, 13 );
+
+ #-------------------------------------------------------------
+ # Bypassing tests
+ #-------------------------------------------------------------
+
+ TEST_RR_DEST_BYPASS( 11, 0, clmul, 0x7f, 13, 11 );
+ TEST_RR_DEST_BYPASS( 12, 1, clmul, 0x62, 14, 11 );
+ TEST_RR_DEST_BYPASS( 13, 2, clmul, 0x69, 15, 11 );
+
+ TEST_RR_SRC12_BYPASS( 14, 0, 0, clmul, 0x7f, 13, 11 );
+ TEST_RR_SRC12_BYPASS( 15, 0, 1, clmul, 0x62, 14, 11 );
+ TEST_RR_SRC12_BYPASS( 16, 0, 2, clmul, 0x69, 15, 11 );
+ TEST_RR_SRC12_BYPASS( 17, 1, 0, clmul, 0x7f, 13, 11 );
+ TEST_RR_SRC12_BYPASS( 18, 1, 1, clmul, 0x62, 14, 11 );
+ TEST_RR_SRC12_BYPASS( 19, 2, 0, clmul, 0x69, 15, 11 );
+
+ TEST_RR_SRC21_BYPASS( 20, 0, 0, clmul, 0x7f, 13, 11 );
+ TEST_RR_SRC21_BYPASS( 21, 0, 1, clmul, 0x62, 14, 11 );
+ TEST_RR_SRC21_BYPASS( 22, 0, 2, clmul, 0x69, 15, 11 );
+ TEST_RR_SRC21_BYPASS( 23, 1, 0, clmul, 0x7f, 13, 11 );
+ TEST_RR_SRC21_BYPASS( 24, 1, 1, clmul, 0x62, 14, 11 );
+ TEST_RR_SRC21_BYPASS( 25, 2, 0, clmul, 0x69, 15, 11 );
+
+ TEST_RR_ZEROSRC1( 26, clmul, 0, 31 );
+ TEST_RR_ZEROSRC2( 27, clmul, 0, 32 );
+ TEST_RR_ZEROSRC12( 28, clmul, 0 );
+ TEST_RR_ZERODEST( 29, clmul, 33, 34 );
+
+ TEST_PASSFAIL
+
+RVTEST_CODE_END
+
+ .data
+RVTEST_DATA_BEGIN
+
+ TEST_DATA
+
+RVTEST_DATA_END
diff --git a/isa/rv32uzbc/clmulh.S b/isa/rv32uzbc/clmulh.S
new file mode 100644
index 0000000..b5fde88
--- /dev/null
+++ b/isa/rv32uzbc/clmulh.S
@@ -0,0 +1,84 @@
+# See LICENSE for license details.
+
+#*****************************************************************************
+# clmulh.S
+#-----------------------------------------------------------------------------
+#
+# Test clmulh instruction.
+#
+
+#include "riscv_test.h"
+#include "test_macros.h"
+
+RVTEST_RV32U
+RVTEST_CODE_BEGIN
+
+ #-------------------------------------------------------------
+ # Arithmetic tests
+ #-------------------------------------------------------------
+
+ TEST_RR_OP(32, clmulh, 0x00003600, 0x00007e00, 0xb6db6db7 );
+ TEST_RR_OP(33, clmulh, 0x000036c0, 0x00007fc0, 0xb6db6db7 );
+
+ TEST_RR_OP( 2, clmulh, 0x00000000, 0x00000000, 0x00000000 );
+ TEST_RR_OP( 3, clmulh, 0x00000000, 0x00000001, 0x00000001 );
+ TEST_RR_OP( 4, clmulh, 0x00000000, 0x00000003, 0x00000007 );
+
+ TEST_RR_OP( 5, clmulh, 0x00000000, 0x00000000, 0xffff8000 );
+ TEST_RR_OP( 6, clmulh, 0x00000000, 0x80000000, 0x00000000 );
+ TEST_RR_OP( 7, clmulh, 0x7fffc000, 0x80000000, 0xffff8000 );
+
+ TEST_RR_OP(30, clmulh, 0x000133cd, 0xaaaaaaab, 0x0002fe7d );
+ TEST_RR_OP(31, clmulh, 0x000133cd, 0x0002fe7d, 0xaaaaaaab );
+
+ TEST_RR_OP(34, clmulh, 0x55550000, 0xff000000, 0xff000000 );
+
+ TEST_RR_OP(35, clmulh, 0x55555555, 0xffffffff, 0xffffffff );
+ TEST_RR_OP(36, clmulh, 0x00000000, 0xffffffff, 0x00000001 );
+ TEST_RR_OP(37, clmulh, 0x00000000, 0x00000001, 0xffffffff );
+
+ #-------------------------------------------------------------
+ # Source/Destination tests
+ #-------------------------------------------------------------
+
+ TEST_RR_SRC1_EQ_DEST( 8, clmulh, 0, 13, 11 );
+ TEST_RR_SRC2_EQ_DEST( 9, clmulh, 0, 14, 11 );
+ TEST_RR_SRC12_EQ_DEST( 10, clmulh, 0, 13 );
+
+ #-------------------------------------------------------------
+ # Bypassing tests
+ #-------------------------------------------------------------
+
+ TEST_RR_DEST_BYPASS( 11, 0, clmulh, 0, 13, 11 );
+ TEST_RR_DEST_BYPASS( 12, 1, clmulh, 0, 14, 11 );
+ TEST_RR_DEST_BYPASS( 13, 2, clmulh, 0, 15, 11 );
+
+ TEST_RR_SRC12_BYPASS( 14, 0, 0, clmulh, 0, 13, 11 );
+ TEST_RR_SRC12_BYPASS( 15, 0, 1, clmulh, 0, 14, 11 );
+ TEST_RR_SRC12_BYPASS( 16, 0, 2, clmulh, 0, 15, 11 );
+ TEST_RR_SRC12_BYPASS( 17, 1, 0, clmulh, 0, 13, 11 );
+ TEST_RR_SRC12_BYPASS( 18, 1, 1, clmulh, 0, 14, 11 );
+ TEST_RR_SRC12_BYPASS( 19, 2, 0, clmulh, 0, 15, 11 );
+
+ TEST_RR_SRC21_BYPASS( 20, 0, 0, clmulh, 0, 13, 11 );
+ TEST_RR_SRC21_BYPASS( 21, 0, 1, clmulh, 0, 14, 11 );
+ TEST_RR_SRC21_BYPASS( 22, 0, 2, clmulh, 0, 15, 11 );
+ TEST_RR_SRC21_BYPASS( 23, 1, 0, clmulh, 0, 13, 11 );
+ TEST_RR_SRC21_BYPASS( 24, 1, 1, clmulh, 0, 14, 11 );
+ TEST_RR_SRC21_BYPASS( 25, 2, 0, clmulh, 0, 15, 11 );
+
+ TEST_RR_ZEROSRC1( 26, clmulh, 0, 31 );
+ TEST_RR_ZEROSRC2( 27, clmulh, 0, 32 );
+ TEST_RR_ZEROSRC12( 28, clmulh, 0 );
+ TEST_RR_ZERODEST( 29, clmulh, 33, 34 );
+
+ TEST_PASSFAIL
+
+RVTEST_CODE_END
+
+ .data
+RVTEST_DATA_BEGIN
+
+ TEST_DATA
+
+RVTEST_DATA_END
diff --git a/isa/rv32uzbc/clmulr.S b/isa/rv32uzbc/clmulr.S
new file mode 100644
index 0000000..dc255ec
--- /dev/null
+++ b/isa/rv32uzbc/clmulr.S
@@ -0,0 +1,84 @@
+# See LICENSE for license details.
+
+#*****************************************************************************
+# clmulr.S
+#-----------------------------------------------------------------------------
+#
+# Test clmulr instruction.
+#
+
+#include "riscv_test.h"
+#include "test_macros.h"
+
+RVTEST_RV32U
+RVTEST_CODE_BEGIN
+
+ #-------------------------------------------------------------
+ # Arithmetic tests
+ #-------------------------------------------------------------
+
+ TEST_RR_OP(32, clmulr, 0x00006c00, 0x00007e00, 0xb6db6db7 );
+ TEST_RR_OP(33, clmulr, 0x00006d80, 0x00007fc0, 0xb6db6db7 );
+
+ TEST_RR_OP( 2, clmulr, 0x00000000, 0x00000000, 0x00000000 );
+ TEST_RR_OP( 3, clmulr, 0x00000000, 0x00000001, 0x00000001 );
+ TEST_RR_OP( 4, clmulr, 0x00000000, 0x00000003, 0x00000007 );
+
+ TEST_RR_OP( 5, clmulr, 0x00000000, 0x00000000, 0xffff8000 );
+ TEST_RR_OP( 6, clmulr, 0x00000000, 0x80000000, 0x00000000 );
+ TEST_RR_OP( 7, clmulr, 0xffff8000, 0x80000000, 0xffff8000 );
+
+ TEST_RR_OP(30, clmulr, 0x0002679b, 0xaaaaaaab, 0x0002fe7d );
+ TEST_RR_OP(31, clmulr, 0x0002679b, 0x0002fe7d, 0xaaaaaaab );
+
+ TEST_RR_OP(34, clmulr, 0xaaaa0000, 0xff000000, 0xff000000 );
+
+ TEST_RR_OP(35, clmulr, 0xaaaaaaaa, 0xffffffff, 0xffffffff );
+ TEST_RR_OP(36, clmulr, 0x00000001, 0xffffffff, 0x00000001 );
+ TEST_RR_OP(37, clmulr, 0x00000001, 0x00000001, 0xffffffff );
+
+ #-------------------------------------------------------------
+ # Source/Destination tests
+ #-------------------------------------------------------------
+
+ TEST_RR_SRC1_EQ_DEST( 8, clmulr, 0, 13, 11 );
+ TEST_RR_SRC2_EQ_DEST( 9, clmulr, 0, 14, 11 );
+ TEST_RR_SRC12_EQ_DEST( 10, clmulr, 0, 13 );
+
+ #-------------------------------------------------------------
+ # Bypassing tests
+ #-------------------------------------------------------------
+
+ TEST_RR_DEST_BYPASS( 11, 0, clmulr, 0, 13, 11 );
+ TEST_RR_DEST_BYPASS( 12, 1, clmulr, 0, 14, 11 );
+ TEST_RR_DEST_BYPASS( 13, 2, clmulr, 0, 15, 11 );
+
+ TEST_RR_SRC12_BYPASS( 14, 0, 0, clmulr, 0, 13, 11 );
+ TEST_RR_SRC12_BYPASS( 15, 0, 1, clmulr, 0, 14, 11 );
+ TEST_RR_SRC12_BYPASS( 16, 0, 2, clmulr, 0, 15, 11 );
+ TEST_RR_SRC12_BYPASS( 17, 1, 0, clmulr, 0, 13, 11 );
+ TEST_RR_SRC12_BYPASS( 18, 1, 1, clmulr, 0, 14, 11 );
+ TEST_RR_SRC12_BYPASS( 19, 2, 0, clmulr, 0, 15, 11 );
+
+ TEST_RR_SRC21_BYPASS( 20, 0, 0, clmulr, 0, 13, 11 );
+ TEST_RR_SRC21_BYPASS( 21, 0, 1, clmulr, 0, 14, 11 );
+ TEST_RR_SRC21_BYPASS( 22, 0, 2, clmulr, 0, 15, 11 );
+ TEST_RR_SRC21_BYPASS( 23, 1, 0, clmulr, 0, 13, 11 );
+ TEST_RR_SRC21_BYPASS( 24, 1, 1, clmulr, 0, 14, 11 );
+ TEST_RR_SRC21_BYPASS( 25, 2, 0, clmulr, 0, 15, 11 );
+
+ TEST_RR_ZEROSRC1( 26, clmulr, 0, 31 );
+ TEST_RR_ZEROSRC2( 27, clmulr, 0, 32 );
+ TEST_RR_ZEROSRC12( 28, clmulr, 0 );
+ TEST_RR_ZERODEST( 29, clmulr, 33, 34 );
+
+ TEST_PASSFAIL
+
+RVTEST_CODE_END
+
+ .data
+RVTEST_DATA_BEGIN
+
+ TEST_DATA
+
+RVTEST_DATA_END
diff --git a/isa/rv64uzbc/Makefrag b/isa/rv64uzbc/Makefrag
new file mode 100644
index 0000000..01ce4e2
--- /dev/null
+++ b/isa/rv64uzbc/Makefrag
@@ -0,0 +1,14 @@
+#=======================================================================
+# Makefrag for rv64uzbc tests
+#-----------------------------------------------------------------------
+
+rv64uzbc_sc_tests = \
+ clmul \
+ clmulh \
+ clmulr \
+
+rv64uzbc_p_tests = $(addprefix rv64uzbc-p-, $(rv64uzbc_sc_tests))
+rv64uzbc_v_tests = $(addprefix rv64uzbc-v-, $(rv64uzbc_sc_tests))
+rv64uzbc_ps_tests = $(addprefix rv64uzbc-ps-, $(rv64uzbc_sc_tests))
+
+spike_tests += $(rv64uzbc_p_tests) $(rv64uzbc_v_tests)
diff --git a/isa/rv64uzbc/clmul.S b/isa/rv64uzbc/clmul.S
new file mode 100644
index 0000000..c147791
--- /dev/null
+++ b/isa/rv64uzbc/clmul.S
@@ -0,0 +1,78 @@
+# See LICENSE for license details.
+
+#*****************************************************************************
+# clmul.S
+#-----------------------------------------------------------------------------
+#
+# Test clmul instruction.
+#
+
+#include "riscv_test.h"
+#include "test_macros.h"
+
+RVTEST_RV64U
+RVTEST_CODE_BEGIN
+
+ #-------------------------------------------------------------
+ # Arithmetic tests
+ #-------------------------------------------------------------
+
+ TEST_RR_OP(32, clmul, 0x0000000000005a00, 0x0000000000007e00, 0x6db6db6db6db6db7 );
+ TEST_RR_OP(33, clmul, 0x0000000000005b40, 0x0000000000007fc0, 0x6db6db6db6db6db7 );
+
+ TEST_RR_OP( 2, clmul, 0x00000000, 0x00000000, 0x00000000 );
+ TEST_RR_OP( 3, clmul, 0x00000001, 0x00000001, 0x00000001 );
+ TEST_RR_OP( 4, clmul, 0x00000009, 0x00000003, 0x00000007 );
+
+ TEST_RR_OP( 5, clmul, 0x0000000000000000, 0x0000000000000000, 0xffffffffffff8000 );
+ TEST_RR_OP( 6, clmul, 0x0000000000000000, 0xffffffff80000000, 0x00000000 );
+ TEST_RR_OP( 7, clmul, 0x5555400000000000, 0xffffffff80000000, 0xffffffffffff8000 );
+
+ TEST_RR_OP(30, clmul, 0xfffffffffffc324f, 0xaaaaaaaaaaaaaaab, 0x000000000002fe7d );
+ TEST_RR_OP(31, clmul, 0xfffffffffffc324f, 0x000000000002fe7d, 0xaaaaaaaaaaaaaaab );
+
+ #-------------------------------------------------------------
+ # Source/Destination tests
+ #-------------------------------------------------------------
+
+ TEST_RR_SRC1_EQ_DEST( 8, clmul, 0x7f, 13, 11 );
+ TEST_RR_SRC2_EQ_DEST( 9, clmul, 0x62, 14, 11 );
+ TEST_RR_SRC12_EQ_DEST( 10, clmul, 0x51, 13 );
+
+ #-------------------------------------------------------------
+ # Bypassing tests
+ #-------------------------------------------------------------
+
+ TEST_RR_DEST_BYPASS( 11, 0, clmul, 0x7f, 13, 11 );
+ TEST_RR_DEST_BYPASS( 12, 1, clmul, 0x62, 14, 11 );
+ TEST_RR_DEST_BYPASS( 13, 2, clmul, 0x69, 15, 11 );
+
+ TEST_RR_SRC12_BYPASS( 14, 0, 0, clmul, 0x7f, 13, 11 );
+ TEST_RR_SRC12_BYPASS( 15, 0, 1, clmul, 0x62, 14, 11 );
+ TEST_RR_SRC12_BYPASS( 16, 0, 2, clmul, 0x69, 15, 11 );
+ TEST_RR_SRC12_BYPASS( 17, 1, 0, clmul, 0x7f, 13, 11 );
+ TEST_RR_SRC12_BYPASS( 18, 1, 1, clmul, 0x62, 14, 11 );
+ TEST_RR_SRC12_BYPASS( 19, 2, 0, clmul, 0x69, 15, 11 );
+
+ TEST_RR_SRC21_BYPASS( 20, 0, 0, clmul, 0x7f, 13, 11 );
+ TEST_RR_SRC21_BYPASS( 21, 0, 1, clmul, 0x62, 14, 11 );
+ TEST_RR_SRC21_BYPASS( 22, 0, 2, clmul, 0x69, 15, 11 );
+ TEST_RR_SRC21_BYPASS( 23, 1, 0, clmul, 0x7f, 13, 11 );
+ TEST_RR_SRC21_BYPASS( 24, 1, 1, clmul, 0x62, 14, 11 );
+ TEST_RR_SRC21_BYPASS( 25, 2, 0, clmul, 0x69, 15, 11 );
+
+ TEST_RR_ZEROSRC1( 26, clmul, 0, 31 );
+ TEST_RR_ZEROSRC2( 27, clmul, 0, 32 );
+ TEST_RR_ZEROSRC12( 28, clmul, 0 );
+ TEST_RR_ZERODEST( 29, clmul, 33, 34 );
+
+ TEST_PASSFAIL
+
+RVTEST_CODE_END
+
+ .data
+RVTEST_DATA_BEGIN
+
+ TEST_DATA
+
+RVTEST_DATA_END
diff --git a/isa/rv64uzbc/clmulh.S b/isa/rv64uzbc/clmulh.S
new file mode 100644
index 0000000..c5eaf65
--- /dev/null
+++ b/isa/rv64uzbc/clmulh.S
@@ -0,0 +1,78 @@
+# See LICENSE for license details.
+
+#*****************************************************************************
+# clmulh.S
+#-----------------------------------------------------------------------------
+#
+# Test clmulh instruction.
+#
+
+#include "riscv_test.h"
+#include "test_macros.h"
+
+RVTEST_RV64U
+RVTEST_CODE_BEGIN
+
+ #-------------------------------------------------------------
+ # Arithmetic tests
+ #-------------------------------------------------------------
+
+ TEST_RR_OP(32, clmulh, 0x0000000000001200, 0x0000000000007e00, 0x6db6db6db6db6db7 );
+ TEST_RR_OP(33, clmulh, 0x0000000000001240, 0x0000000000007fc0, 0x6db6db6db6db6db7 );
+
+ TEST_RR_OP( 2, clmulh, 0x00000000, 0x00000000, 0x00000000 );
+ TEST_RR_OP( 3, clmulh, 0x00000000, 0x00000001, 0x00000001 );
+ TEST_RR_OP( 4, clmulh, 0x00000000, 0x00000003, 0x00000007 );
+
+ TEST_RR_OP( 5, clmulh, 0x0000000000000000, 0x0000000000000000, 0xffffffffffff8000 );
+ TEST_RR_OP( 6, clmulh, 0x0000000000000000, 0xffffffff80000000, 0x00000000 );
+ TEST_RR_OP( 7, clmulh, 0x555555557fffd555, 0xffffffff80000000, 0xffffffffffff8000 );
+
+ TEST_RR_OP(30, clmulh, 0x00000000000133cd, 0xaaaaaaaaaaaaaaab, 0x000000000002fe7d );
+ TEST_RR_OP(31, clmulh, 0x00000000000133cd, 0x000000000002fe7d, 0xaaaaaaaaaaaaaaab );
+
+ #-------------------------------------------------------------
+ # Source/Destination tests
+ #-------------------------------------------------------------
+
+ TEST_RR_SRC1_EQ_DEST( 8, clmulh, 0, 13, 11 );
+ TEST_RR_SRC2_EQ_DEST( 9, clmulh, 0, 14, 11 );
+ TEST_RR_SRC12_EQ_DEST( 10, clmulh, 0, 13 );
+
+ #-------------------------------------------------------------
+ # Bypassing tests
+ #-------------------------------------------------------------
+
+ TEST_RR_DEST_BYPASS( 11, 0, clmulh, 0, 13, 11 );
+ TEST_RR_DEST_BYPASS( 12, 1, clmulh, 0, 14, 11 );
+ TEST_RR_DEST_BYPASS( 13, 2, clmulh, 0, 15, 11 );
+
+ TEST_RR_SRC12_BYPASS( 14, 0, 0, clmulh, 0, 13, 11 );
+ TEST_RR_SRC12_BYPASS( 15, 0, 1, clmulh, 0, 14, 11 );
+ TEST_RR_SRC12_BYPASS( 16, 0, 2, clmulh, 0, 15, 11 );
+ TEST_RR_SRC12_BYPASS( 17, 1, 0, clmulh, 0, 13, 11 );
+ TEST_RR_SRC12_BYPASS( 18, 1, 1, clmulh, 0, 14, 11 );
+ TEST_RR_SRC12_BYPASS( 19, 2, 0, clmulh, 0, 15, 11 );
+
+ TEST_RR_SRC21_BYPASS( 20, 0, 0, clmulh, 0, 13, 11 );
+ TEST_RR_SRC21_BYPASS( 21, 0, 1, clmulh, 0, 14, 11 );
+ TEST_RR_SRC21_BYPASS( 22, 0, 2, clmulh, 0, 15, 11 );
+ TEST_RR_SRC21_BYPASS( 23, 1, 0, clmulh, 0, 13, 11 );
+ TEST_RR_SRC21_BYPASS( 24, 1, 1, clmulh, 0, 14, 11 );
+ TEST_RR_SRC21_BYPASS( 25, 2, 0, clmulh, 0, 15, 11 );
+
+ TEST_RR_ZEROSRC1( 26, clmulh, 0, 31 );
+ TEST_RR_ZEROSRC2( 27, clmulh, 0, 32 );
+ TEST_RR_ZEROSRC12( 28, clmulh, 0 );
+ TEST_RR_ZERODEST( 29, clmulh, 33, 34 );
+
+ TEST_PASSFAIL
+
+RVTEST_CODE_END
+
+ .data
+RVTEST_DATA_BEGIN
+
+ TEST_DATA
+
+RVTEST_DATA_END
diff --git a/isa/rv64uzbc/clmulr.S b/isa/rv64uzbc/clmulr.S
new file mode 100644
index 0000000..d2f86df
--- /dev/null
+++ b/isa/rv64uzbc/clmulr.S
@@ -0,0 +1,78 @@
+# See LICENSE for license details.
+
+#*****************************************************************************
+# clmulr.S
+#-----------------------------------------------------------------------------
+#
+# Test clmulr instruction.
+#
+
+#include "riscv_test.h"
+#include "test_macros.h"
+
+RVTEST_RV64U
+RVTEST_CODE_BEGIN
+
+ #-------------------------------------------------------------
+ # Arithmetic tests
+ #-------------------------------------------------------------
+
+ TEST_RR_OP(32, clmulr, 0x0000000000002400, 0x0000000000007e00, 0x6db6db6db6db6db7 );
+ TEST_RR_OP(33, clmulr, 0x0000000000002480, 0x0000000000007fc0, 0x6db6db6db6db6db7 );
+
+ TEST_RR_OP( 2, clmulr, 0x00000000, 0x00000000, 0x00000000 );
+ TEST_RR_OP( 3, clmulr, 0x00000000, 0x00000001, 0x00000001 );
+ TEST_RR_OP( 4, clmulr, 0x00000000, 0x00000003, 0x00000007 );
+
+ TEST_RR_OP( 5, clmulr, 0x0000000000000000, 0x0000000000000000, 0xffffffffffff8000 );
+ TEST_RR_OP( 6, clmulr, 0x0000000000000000, 0xffffffff80000000, 0x00000000 );
+ TEST_RR_OP( 7, clmulr, 0xaaaaaaaaffffaaaa, 0xffffffff80000000, 0xffffffffffff8000 );
+
+ TEST_RR_OP(30, clmulr, 0x000000000002679b, 0xaaaaaaaaaaaaaaab, 0x000000000002fe7d );
+ TEST_RR_OP(31, clmulr, 0x000000000002679b, 0x000000000002fe7d, 0xaaaaaaaaaaaaaaab );
+
+ #-------------------------------------------------------------
+ # Source/Destination tests
+ #-------------------------------------------------------------
+
+ TEST_RR_SRC1_EQ_DEST( 8, clmulr, 0, 13, 11 );
+ TEST_RR_SRC2_EQ_DEST( 9, clmulr, 0, 14, 11 );
+ TEST_RR_SRC12_EQ_DEST( 10, clmulr, 0, 13 );
+
+ #-------------------------------------------------------------
+ # Bypassing tests
+ #-------------------------------------------------------------
+
+ TEST_RR_DEST_BYPASS( 11, 0, clmulr, 0, 13, 11 );
+ TEST_RR_DEST_BYPASS( 12, 1, clmulr, 0, 14, 11 );
+ TEST_RR_DEST_BYPASS( 13, 2, clmulr, 0, 15, 11 );
+
+ TEST_RR_SRC12_BYPASS( 14, 0, 0, clmulr, 0, 13, 11 );
+ TEST_RR_SRC12_BYPASS( 15, 0, 1, clmulr, 0, 14, 11 );
+ TEST_RR_SRC12_BYPASS( 16, 0, 2, clmulr, 0, 15, 11 );
+ TEST_RR_SRC12_BYPASS( 17, 1, 0, clmulr, 0, 13, 11 );
+ TEST_RR_SRC12_BYPASS( 18, 1, 1, clmulr, 0, 14, 11 );
+ TEST_RR_SRC12_BYPASS( 19, 2, 0, clmulr, 0, 15, 11 );
+
+ TEST_RR_SRC21_BYPASS( 20, 0, 0, clmulr, 0, 13, 11 );
+ TEST_RR_SRC21_BYPASS( 21, 0, 1, clmulr, 0, 14, 11 );
+ TEST_RR_SRC21_BYPASS( 22, 0, 2, clmulr, 0, 15, 11 );
+ TEST_RR_SRC21_BYPASS( 23, 1, 0, clmulr, 0, 13, 11 );
+ TEST_RR_SRC21_BYPASS( 24, 1, 1, clmulr, 0, 14, 11 );
+ TEST_RR_SRC21_BYPASS( 25, 2, 0, clmulr, 0, 15, 11 );
+
+ TEST_RR_ZEROSRC1( 26, clmulr, 0, 31 );
+ TEST_RR_ZEROSRC2( 27, clmulr, 0, 32 );
+ TEST_RR_ZEROSRC12( 28, clmulr, 0 );
+ TEST_RR_ZERODEST( 29, clmulr, 33, 34 );
+
+ TEST_PASSFAIL
+
+RVTEST_CODE_END
+
+ .data
+RVTEST_DATA_BEGIN
+
+ TEST_DATA
+
+RVTEST_DATA_END