aboutsummaryrefslogtreecommitdiff
path: root/isa/rv64uzbc/clmul.S
diff options
context:
space:
mode:
Diffstat (limited to 'isa/rv64uzbc/clmul.S')
-rw-r--r--isa/rv64uzbc/clmul.S78
1 files changed, 78 insertions, 0 deletions
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