From c91d26c50725a6eb3bcff2b01d4c65eba2f82541 Mon Sep 17 00:00:00 2001 From: Tim Newsome Date: Thu, 2 Jun 2022 17:04:09 -0700 Subject: Test unaligned ld accesses. Identical to the lw change in #391. --- isa/rv64ui/ld.S | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) (limited to 'isa') diff --git a/isa/rv64ui/ld.S b/isa/rv64ui/ld.S index 948c34b..341122e 100644 --- a/isa/rv64ui/ld.S +++ b/isa/rv64ui/ld.S @@ -74,8 +74,35 @@ RVTEST_CODE_BEGIN li x2, 2; \ ) + # Test unaligned accesses, if the target supports them. + # Assume little-endian + TEST_LD_OP( 1000, ld, 0x00ff00ff00ff00ff, 0, tdat ); + TEST_LD_OP( 1001, ld, 0x0000ff00ff00ff00, 1, tdat ); + TEST_LD_OP( 1002, ld, 0xff0000ff00ff00ff, 2, tdat ); + TEST_LD_OP( 1003, ld, 0x00ff0000ff00ff00, 3, tdat ); + TEST_LD_OP( 1004, ld, 0xff00ff0000ff00ff, 4, tdat ); + TEST_LD_OP( 1005, ld, 0x00ff00ff0000ff00, 5, tdat ); + TEST_LD_OP( 1006, ld, 0xff00ff00ff0000ff, 6, tdat ); + TEST_LD_OP( 1007, ld, 0x00ff00ff00ff0000, 7, tdat ); + +skip_unaligned_tests: TEST_PASSFAIL + .align 2 + .global mtvec_handler +mtvec_handler: + # Only unaligned access tests should trap + li t0, 1000 + blt TESTNUM, t0, fail + + li t0, CAUSE_MISALIGNED_LOAD + csrr t1, mcause + bne t0, t1, fail + + la t0, skip_unaligned_tests + csrw mepc, t0 + mret + RVTEST_CODE_END .data -- cgit v1.1