From 81ad66f25ce4c15180e558696961bd8eaf967fea Mon Sep 17 00:00:00 2001 From: Yunsup Lee Date: Mon, 22 Apr 2013 14:56:59 -0700 Subject: initial commit --- isa/rv64uv/amominu_w.S | 58 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 isa/rv64uv/amominu_w.S (limited to 'isa/rv64uv/amominu_w.S') diff --git a/isa/rv64uv/amominu_w.S b/isa/rv64uv/amominu_w.S new file mode 100644 index 0000000..67e5f93 --- /dev/null +++ b/isa/rv64uv/amominu_w.S @@ -0,0 +1,58 @@ +#***************************************************************************** +# amominu_w.S +#----------------------------------------------------------------------------- +# +# Test amominu.w 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 + vsw vx1,a6 + fence.v.l + + li a1,0 + li a2,0 +loop: + lw a0,0(a6) + addi x28,a1,2 + bne a0,a2,fail + addi a6,a6,4 + addi a1,a1,1 + bne a1,a4,loop + j pass + +vtcode: + utidx x3 + addi x3,x3,1 + li x1,-1 + mul x3,x3,x1 + amominu.w x1,x3,0(x2) + stop + + TEST_PASSFAIL + +RVTEST_CODE_END + + .data +RVTEST_DATA_BEGIN + + TEST_DATA + +amodest: + .word 0 +dest: + .skip 16384 + +RVTEST_DATA_END -- cgit v1.1