aboutsummaryrefslogtreecommitdiff
path: root/isa/rv64uzbb/roriw.S
diff options
context:
space:
mode:
authorAndrew Waterman <andrew@sifive.com>2024-02-18 20:09:30 -0800
committerGitHub <noreply@github.com>2024-02-18 20:09:30 -0800
commit3bd02c8ab45666cf1c0532294f115c4d2ce3e027 (patch)
tree1a5653d944c240bb81dbfa4c37e922186af35215 /isa/rv64uzbb/roriw.S
parentad33ed3cb50b4cc23a44657a541f76325e659af0 (diff)
parent9c06101326cdd451a051bc3e6469b3c76f24d101 (diff)
downloadriscv-tests-3bd02c8ab45666cf1c0532294f115c4d2ce3e027.zip
riscv-tests-3bd02c8ab45666cf1c0532294f115c4d2ce3e027.tar.gz
riscv-tests-3bd02c8ab45666cf1c0532294f115c4d2ce3e027.tar.bz2
Merge pull request #539 from rogerchang23424/bitmanip
Add bitmanip test cases
Diffstat (limited to 'isa/rv64uzbb/roriw.S')
-rw-r--r--isa/rv64uzbb/roriw.S68
1 files changed, 68 insertions, 0 deletions
diff --git a/isa/rv64uzbb/roriw.S b/isa/rv64uzbb/roriw.S
new file mode 100644
index 0000000..44f3819
--- /dev/null
+++ b/isa/rv64uzbb/roriw.S
@@ -0,0 +1,68 @@
+# See LICENSE for license details.
+
+#*****************************************************************************
+# rori.S
+#-----------------------------------------------------------------------------
+#
+# Test rori instruction.
+#
+
+#include "riscv_test.h"
+#include "test_macros.h"
+
+RVTEST_RV64U
+RVTEST_CODE_BEGIN
+
+ #-------------------------------------------------------------
+ # Arithmetic tests
+ #-------------------------------------------------------------
+
+ TEST_IMM_OP( 2, roriw, 0x0000000000000001, 0x0000000000000001, 0 );
+ TEST_IMM_OP( 3, roriw, 0xffffffff80000000, 0x0000000000000001, 1 );
+ TEST_IMM_OP( 4, roriw, 0x0000000002000000, 0x0000000000000001, 7 );
+ TEST_IMM_OP( 5, roriw, 0x0000000000040000, 0x0000000000000001, 14 );
+ TEST_IMM_OP( 6, roriw, 0x0000000000000002, 0x0000000000000001, 31 );
+
+ TEST_IMM_OP( 7, roriw, 0xffffffffffffffff, 0xffffffffffffffff, 0 );
+ TEST_IMM_OP( 8, roriw, 0xffffffffffffffff, 0xffffffffffffffff, 1 );
+ TEST_IMM_OP( 9, roriw, 0xffffffffffffffff, 0xffffffffffffffff, 7 );
+ TEST_IMM_OP( 10, roriw, 0xffffffffffffffff, 0xffffffffffffffff, 14 );
+ TEST_IMM_OP( 11, roriw, 0xffffffffffffffff, 0xffffffffffffffff, 31 );
+
+ TEST_IMM_OP( 12, roriw, 0x0000000021212121, 0x0000000021212121, 0 );
+ TEST_IMM_OP( 13, roriw, 0xffffffff90909090, 0x0000000021212121, 1 );
+ TEST_IMM_OP( 14, roriw, 0x0000000042424242, 0x0000000021212121, 7 );
+ TEST_IMM_OP( 15, roriw, 0xffffffff84848484, 0x0000000021212121, 14 );
+ TEST_IMM_OP( 16, roriw, 0x0000000042424242, 0x0000000021212121, 31 );
+
+ #-------------------------------------------------------------
+ # Source/Destination tests
+ #-------------------------------------------------------------
+
+ TEST_IMM_SRC1_EQ_DEST( 20, roriw, 0x0000000002000000, 0x00000001, 7 );
+
+ #-------------------------------------------------------------
+ # Bypassing tests
+ #-------------------------------------------------------------
+
+ TEST_IMM_DEST_BYPASS( 21, 0, roriw, 0x0000000002000000, 0x0000000000000001, 7 );
+ TEST_IMM_DEST_BYPASS( 22, 1, roriw, 0x0000000000040000, 0x0000000000000001, 14 );
+ TEST_IMM_DEST_BYPASS( 23, 2, roriw, 0x0000000000000002, 0x0000000000000001, 31 );
+
+ TEST_IMM_SRC1_BYPASS( 24, 0, roriw, 0x0000000002000000, 0x0000000000000001, 7 );
+ TEST_IMM_SRC1_BYPASS( 25, 1, roriw, 0x0000000000040000, 0x0000000000000001, 14 );
+ TEST_IMM_SRC1_BYPASS( 26, 2, roriw, 0x0000000000000002, 0x0000000000000001, 31 );
+
+ TEST_IMM_ZEROSRC1( 27, roriw, 0, 31 );
+ TEST_IMM_ZERODEST( 28, roriw, 33, 20 );
+
+ TEST_PASSFAIL
+
+RVTEST_CODE_END
+
+ .data
+RVTEST_DATA_BEGIN
+
+ TEST_DATA
+
+RVTEST_DATA_END