aboutsummaryrefslogtreecommitdiff
path: root/isa/rv64uv/amomin_d.S
diff options
context:
space:
mode:
authorYunsup Lee <yunsup@cs.berkeley.edu>2013-04-22 14:56:59 -0700
committerYunsup Lee <yunsup@cs.berkeley.edu>2013-04-22 14:56:59 -0700
commit81ad66f25ce4c15180e558696961bd8eaf967fea (patch)
treed70676fb1d11a4a66a268f7860d3ef7d469987fe /isa/rv64uv/amomin_d.S
downloadriscv-tests-81ad66f25ce4c15180e558696961bd8eaf967fea.zip
riscv-tests-81ad66f25ce4c15180e558696961bd8eaf967fea.tar.gz
riscv-tests-81ad66f25ce4c15180e558696961bd8eaf967fea.tar.bz2
initial commit
Diffstat (limited to 'isa/rv64uv/amomin_d.S')
-rw-r--r--isa/rv64uv/amomin_d.S62
1 files changed, 62 insertions, 0 deletions
diff --git a/isa/rv64uv/amomin_d.S b/isa/rv64uv/amomin_d.S
new file mode 100644
index 0000000..01e1feb
--- /dev/null
+++ b/isa/rv64uv/amomin_d.S
@@ -0,0 +1,62 @@
+#*****************************************************************************
+# amomin_d.S
+#-----------------------------------------------------------------------------
+#
+# Test amomin.d instruction in a vf block.
+#
+
+#include "riscv_test.h"
+#include "test_macros.h"
+
+RVTEST_RV64U
+RVTEST_CODE_BEGIN
+
+ li a4,2048
+ vvcfgivl a4,a4,4,0
+
+ la a5,amodest
+ vmsv vx2,a5
+ lui a0,%hi(vtcode)
+ vf %lo(vtcode)(a0)
+ la a6,dest
+ vsd vx1,a6
+ fence.v.l
+
+ li a1,0
+ li a2,-1
+loop:
+ ld a0,0(a5)
+ addi x28,a1,2
+ bne a0,a2,fail
+ addi a5,a5,8
+ addi a1,a1,1
+ addi a2,a2,-1
+ bne a1,a4,loop
+ j pass
+
+vtcode:
+ utidx x3
+ slli x3, x3, 3
+ add x2, x2, x3
+ utidx x3
+ addi x3,x3,1
+ li x1,-1
+ mul x3,x3,x1
+ amomin.d x1,x3,0(x2)
+ stop
+
+ TEST_PASSFAIL
+
+RVTEST_CODE_END
+
+ .data
+RVTEST_DATA_BEGIN
+
+ TEST_DATA
+
+amodest:
+ .skip 16384
+dest:
+ .skip 16384
+
+RVTEST_DATA_END