aboutsummaryrefslogtreecommitdiff
path: root/isa/rv64uv/fence.S
diff options
context:
space:
mode:
authorAndrew Waterman <waterman@cs.berkeley.edu>2015-09-20 23:38:00 -0700
committerAndrew Waterman <waterman@cs.berkeley.edu>2015-09-20 23:39:33 -0700
commit7155726ad6612a7f87318d84ac496672f9bbc8ce (patch)
tree41536c613ff20382b4a9a789e91e11a176c027d5 /isa/rv64uv/fence.S
parentf66d9faeca28d491115eb60a8f5b6b747f255a09 (diff)
downloadriscv-tests-7155726ad6612a7f87318d84ac496672f9bbc8ce.zip
riscv-tests-7155726ad6612a7f87318d84ac496672f9bbc8ce.tar.gz
riscv-tests-7155726ad6612a7f87318d84ac496672f9bbc8ce.tar.bz2
Remove Hwacha v3 tests
Diffstat (limited to 'isa/rv64uv/fence.S')
-rw-r--r--isa/rv64uv/fence.S61
1 files changed, 0 insertions, 61 deletions
diff --git a/isa/rv64uv/fence.S b/isa/rv64uv/fence.S
deleted file mode 100644
index 1a50807..0000000
--- a/isa/rv64uv/fence.S
+++ /dev/null
@@ -1,61 +0,0 @@
-# See LICENSE for license details.
-
-#*****************************************************************************
-# fence.S
-#-----------------------------------------------------------------------------
-#
-# Test fence instruction in a vf block.
-#
-
-#include "riscv_test.h"
-#include "test_macros.h"
-
-RVTEST_RV64UV
-RVTEST_CODE_BEGIN
-
- # make sure these don't choke at the beginning
- fence
- fence rw,io
- fence io,rw
- fence r,io
- fence w,io
- fence rw,i
- fence rw,o
-
- li a0,1
- bne a0,x0,skip1
- fence
-skip1:
-
- bne a0,x0,skip3
- fence
-skip3:
-
- j pass
-
- TEST_PASSFAIL
-
-RVTEST_CODE_END
-
- .data
-RVTEST_DATA_BEGIN
-
- TEST_DATA
-
-src1:
- .dword 1
- .dword 2
- .dword 3
- .dword 4
-src2:
- .dword 4
- .dword 3
- .dword 2
- .dword 1
-dest:
- .dword 0xdeadbeefcafebabe
- .dword 0xdeadbeefcafebabe
- .dword 0xdeadbeefcafebabe
- .dword 0xdeadbeefcafebabe
-
-RVTEST_DATA_END