diff options
author | Richard Xia <richardxia@richardxia.com> | 2017-10-30 12:18:49 -0700 |
---|---|---|
committer | Andrew Waterman <aswaterman@gmail.com> | 2017-10-30 12:18:49 -0700 |
commit | dc87148473bc407d91ab8b4a6e69f7eade79bfa0 (patch) | |
tree | e4ca30bc50eff28ffcda085454c336068a3b5b96 /isa/rv64si | |
parent | 7b4922e130bb520f9328dca77cf7330df96ce2f9 (diff) | |
download | riscv-tests-dc87148473bc407d91ab8b4a6e69f7eade79bfa0.zip riscv-tests-dc87148473bc407d91ab8b4a6e69f7eade79bfa0.tar.gz riscv-tests-dc87148473bc407d91ab8b4a6e69f7eade79bfa0.tar.bz2 |
Declare trap handlers as global symbols. (#87)
This allows them to be referenced by other files, such as a test environment
that lives in a separate compilation unit.
Diffstat (limited to 'isa/rv64si')
-rw-r--r-- | isa/rv64si/csr.S | 1 | ||||
-rw-r--r-- | isa/rv64si/dirty.S | 1 | ||||
-rw-r--r-- | isa/rv64si/ma_fetch.S | 1 | ||||
-rw-r--r-- | isa/rv64si/sbreak.S | 1 | ||||
-rw-r--r-- | isa/rv64si/scall.S | 1 |
5 files changed, 5 insertions, 0 deletions
diff --git a/isa/rv64si/csr.S b/isa/rv64si/csr.S index 292e298..5a8edbe 100644 --- a/isa/rv64si/csr.S +++ b/isa/rv64si/csr.S @@ -110,6 +110,7 @@ finish: TEST_PASSFAIL .align 2 + .global stvec_handler stvec_handler: # Trapping on tests 10-12 is good news. # Note that since the test didn't complete, TESTNUM is smaller by 1. diff --git a/isa/rv64si/dirty.S b/isa/rv64si/dirty.S index 783522c..fa1581f 100644 --- a/isa/rv64si/dirty.S +++ b/isa/rv64si/dirty.S @@ -74,6 +74,7 @@ RVTEST_CODE_BEGIN TEST_PASSFAIL .align 2 + .global mtvec_handler mtvec_handler: csrr t0, mcause add t0, t0, -CAUSE_STORE_PAGE_FAULT diff --git a/isa/rv64si/ma_fetch.S b/isa/rv64si/ma_fetch.S index eb50f94..5943456 100644 --- a/isa/rv64si/ma_fetch.S +++ b/isa/rv64si/ma_fetch.S @@ -110,6 +110,7 @@ RVTEST_CODE_BEGIN TEST_PASSFAIL .align 2 + .global stvec_handler stvec_handler: # tests 2, 4, 5, and 6 should trap li a0, 2 diff --git a/isa/rv64si/sbreak.S b/isa/rv64si/sbreak.S index c2a6e49..d5a2de7 100644 --- a/isa/rv64si/sbreak.S +++ b/isa/rv64si/sbreak.S @@ -30,6 +30,7 @@ RVTEST_CODE_BEGIN TEST_PASSFAIL .align 2 + .global stvec_handler stvec_handler: li t1, CAUSE_BREAKPOINT csrr t0, scause diff --git a/isa/rv64si/scall.S b/isa/rv64si/scall.S index 82ba7c0..cb97635 100644 --- a/isa/rv64si/scall.S +++ b/isa/rv64si/scall.S @@ -40,6 +40,7 @@ RVTEST_CODE_BEGIN TEST_PASSFAIL .align 2 + .global stvec_handler stvec_handler: li t1, CAUSE_USER_ECALL csrr t0, scause |