aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Bøe <sebastianbooe@gmail.com>2016-06-15 02:17:16 +0200
committerAndrew Waterman <waterman@eecs.berkeley.edu>2016-06-14 17:17:16 -0700
commit190d9f8416b03a6b073d483ef181ee6fb3bad40d (patch)
treef01421290c3e353d5dad36df4e45334a8a042187
parent654a7a4a85918b73de6e301d7220a6e09bb6587a (diff)
downloadriscv-tests-190d9f8416b03a6b073d483ef181ee6fb3bad40d.zip
riscv-tests-190d9f8416b03a6b073d483ef181ee6fb3bad40d.tar.gz
riscv-tests-190d9f8416b03a6b073d483ef181ee6fb3bad40d.tar.bz2
rv32ui: sh: Added side effect test (#14)
From the test comment: sh to a word aligned address should only affect the 2 lower bytes and should leave the 2 upper bytes unmodified. In this test we write 2 bytes to the lower 2 bytes of the word tdat11 and then ensure that the both the upper 2 bytes and lower 2 bytes are as expected.
-rw-r--r--isa/rv32ui/sh.S18
1 files changed, 18 insertions, 0 deletions
diff --git a/isa/rv32ui/sh.S b/isa/rv32ui/sh.S
index 387e181..6c47274 100644
--- a/isa/rv32ui/sh.S
+++ b/isa/rv32ui/sh.S
@@ -68,6 +68,23 @@ RVTEST_CODE_BEGIN
TEST_ST_SRC21_BYPASS( 22, 1, 1, lh, sh, 0x0011, 8, tdat );
TEST_ST_SRC21_BYPASS( 23, 2, 0, lh, sh, 0x3001, 10, tdat );
+ #---------------------------------------------------------------
+ # Side effect tests
+ #---------------------------------------------------------------
+
+ # sh to a word aligned address should only affect the 2 lower bytes
+ # and should leave the 2 upper bytes unmodified.
+ #
+ # In this test we write 2 bytes to the lower 2 bytes of the word
+ # tdat11 and then ensure that the both the upper 2 bytes and
+ # lower 2 bytes are as expected.
+ TEST_CASE( 24, x3, 0x12343098, \
+ la x1, tdat11; \
+ li x2, 0x00003098; \
+ sh x2, 0(x1); \
+ lw x3, 0(x1); \
+ )
+
li a0, 0xbeef
la a1, tdat
sh a0, 6(a1)
@@ -92,5 +109,6 @@ tdat7: .half 0xbeef
tdat8: .half 0xbeef
tdat9: .half 0xbeef
tdat10: .half 0xbeef
+tdat11: .word 0x12345678
RVTEST_DATA_END