aboutsummaryrefslogtreecommitdiff
path: root/isa/rv32uzbb/rori.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/rv32uzbb/rori.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/rv32uzbb/rori.S')
-rw-r--r--isa/rv32uzbb/rori.S68
1 files changed, 68 insertions, 0 deletions
diff --git a/isa/rv32uzbb/rori.S b/isa/rv32uzbb/rori.S
new file mode 100644
index 0000000..c98ed85
--- /dev/null
+++ b/isa/rv32uzbb/rori.S
@@ -0,0 +1,68 @@
+# See LICENSE for license details.
+
+#*****************************************************************************
+# rori.S
+#-----------------------------------------------------------------------------
+#
+# Test rori instruction.
+#
+
+#include "riscv_test.h"
+#include "test_macros.h"
+
+RVTEST_RV32U
+RVTEST_CODE_BEGIN
+
+ #-------------------------------------------------------------
+ # Arithmetic tests
+ #-------------------------------------------------------------
+
+ TEST_IMM_OP( 2, rori, 0x00000001, 0x00000001, 0 );
+ TEST_IMM_OP( 3, rori, 0x80000000, 0x00000001, 1 );
+ TEST_IMM_OP( 4, rori, 0x02000000, 0x00000001, 7 );
+ TEST_IMM_OP( 5, rori, 0x00040000, 0x00000001, 14 );
+ TEST_IMM_OP( 6, rori, 0x00000002, 0x00000001, 31 );
+
+ TEST_IMM_OP( 7, rori, 0xffffffff, 0xffffffff, 0 );
+ TEST_IMM_OP( 8, rori, 0xffffffff, 0xffffffff, 1 );
+ TEST_IMM_OP( 9, rori, 0xffffffff, 0xffffffff, 7 );
+ TEST_IMM_OP( 10, rori, 0xffffffff, 0xffffffff, 14 );
+ TEST_IMM_OP( 11, rori, 0xffffffff, 0xffffffff, 31 );
+
+ TEST_IMM_OP( 12, rori, 0x21212121, 0x21212121, 0 );
+ TEST_IMM_OP( 13, rori, 0x90909090, 0x21212121, 1 );
+ TEST_IMM_OP( 14, rori, 0x42424242, 0x21212121, 7 );
+ TEST_IMM_OP( 15, rori, 0x84848484, 0x21212121, 14 );
+ TEST_IMM_OP( 16, rori, 0x42424242, 0x21212121, 31 );
+
+ #-------------------------------------------------------------
+ # Source/Destination tests
+ #-------------------------------------------------------------
+
+ TEST_IMM_SRC1_EQ_DEST( 20, rori, 0x02000000, 0x00000001, 7 );
+
+ #-------------------------------------------------------------
+ # Bypassing tests
+ #-------------------------------------------------------------
+
+ TEST_IMM_DEST_BYPASS( 21, 0, rori, 0x02000000, 0x00000001, 7 );
+ TEST_IMM_DEST_BYPASS( 22, 1, rori, 0x00040000, 0x00000001, 14 );
+ TEST_IMM_DEST_BYPASS( 23, 2, rori, 0x00000002, 0x00000001, 31 );
+
+ TEST_IMM_SRC1_BYPASS( 24, 0, rori, 0x02000000, 0x00000001, 7 );
+ TEST_IMM_SRC1_BYPASS( 25, 1, rori, 0x00040000, 0x00000001, 14 );
+ TEST_IMM_SRC1_BYPASS( 26, 2, rori, 0x00000002, 0x00000001, 31 );
+
+ TEST_IMM_ZEROSRC1( 27, rori, 0, 31 );
+ TEST_IMM_ZERODEST( 28, rori, 33, 20 );
+
+ TEST_PASSFAIL
+
+RVTEST_CODE_END
+
+ .data
+RVTEST_DATA_BEGIN
+
+ TEST_DATA
+
+RVTEST_DATA_END