aboutsummaryrefslogtreecommitdiff
path: root/isa/rv32ui/mulh.S
diff options
context:
space:
mode:
authorHoward Mao <zhehao.mao@gmail.com>2016-06-22 15:53:38 -0700
committerHoward Mao <zhehao.mao@gmail.com>2016-06-22 15:53:38 -0700
commit51671844c2588386ce3eacedf40d385e3c2b1484 (patch)
tree3ad4c759cb0b4c9712a95d11f99a6241877a169e /isa/rv32ui/mulh.S
parentb6b5e81217c1f2a70ecb6883b1756859cd7bb999 (diff)
downloadriscv-tests-split-isa-tests.zip
riscv-tests-split-isa-tests.tar.gz
riscv-tests-split-isa-tests.tar.bz2
separate ua and um tests from ui testssplit-isa-tests
Diffstat (limited to 'isa/rv32ui/mulh.S')
-rw-r--r--isa/rv32ui/mulh.S81
1 files changed, 0 insertions, 81 deletions
diff --git a/isa/rv32ui/mulh.S b/isa/rv32ui/mulh.S
deleted file mode 100644
index e583f5f..0000000
--- a/isa/rv32ui/mulh.S
+++ /dev/null
@@ -1,81 +0,0 @@
-# See LICENSE for license details.
-
-#*****************************************************************************
-# mulh.S
-#-----------------------------------------------------------------------------
-#
-# Test mulh instruction.
-#
-
-#include "riscv_test.h"
-#include "test_macros.h"
-
-RVTEST_RV32U
-RVTEST_CODE_BEGIN
-
- #-------------------------------------------------------------
- # Arithmetic tests
- #-------------------------------------------------------------
-
- TEST_RR_OP( 2, mulh, 0x00000000, 0x00000000, 0x00000000 );
- TEST_RR_OP( 3, mulh, 0x00000000, 0x00000001, 0x00000001 );
- TEST_RR_OP( 4, mulh, 0x00000000, 0x00000003, 0x00000007 );
-
- TEST_RR_OP( 5, mulh, 0x00000000, 0x00000000, 0xffff8000 );
- TEST_RR_OP( 6, mulh, 0x00000000, 0x80000000, 0x00000000 );
- TEST_RR_OP( 7, mulh, 0x00000000, 0x80000000, 0x00000000 );
-
- TEST_RR_OP(30, mulh, 0xffff0081, 0xaaaaaaab, 0x0002fe7d );
- TEST_RR_OP(31, mulh, 0xffff0081, 0x0002fe7d, 0xaaaaaaab );
-
- TEST_RR_OP(32, mulh, 0x00010000, 0xff000000, 0xff000000 );
-
- TEST_RR_OP(33, mulh, 0x00000000, 0xffffffff, 0xffffffff );
- TEST_RR_OP(34, mulh, 0xffffffff, 0xffffffff, 0x00000001 );
- TEST_RR_OP(35, mulh, 0xffffffff, 0x00000001, 0xffffffff );
-
- #-------------------------------------------------------------
- # Source/Destination tests
- #-------------------------------------------------------------
-
- TEST_RR_SRC1_EQ_DEST( 8, mulh, 36608, 13<<20, 11<<20 );
- TEST_RR_SRC2_EQ_DEST( 9, mulh, 39424, 14<<20, 11<<20 );
- TEST_RR_SRC12_EQ_DEST( 10, mulh, 43264, 13<<20 );
-
- #-------------------------------------------------------------
- # Bypassing tests
- #-------------------------------------------------------------
-
- TEST_RR_DEST_BYPASS( 11, 0, mulh, 36608, 13<<20, 11<<20 );
- TEST_RR_DEST_BYPASS( 12, 1, mulh, 39424, 14<<20, 11<<20 );
- TEST_RR_DEST_BYPASS( 13, 2, mulh, 42240, 15<<20, 11<<20 );
-
- TEST_RR_SRC12_BYPASS( 14, 0, 0, mulh, 36608, 13<<20, 11<<20 );
- TEST_RR_SRC12_BYPASS( 15, 0, 1, mulh, 39424, 14<<20, 11<<20 );
- TEST_RR_SRC12_BYPASS( 16, 0, 2, mulh, 42240, 15<<20, 11<<20 );
- TEST_RR_SRC12_BYPASS( 17, 1, 0, mulh, 36608, 13<<20, 11<<20 );
- TEST_RR_SRC12_BYPASS( 18, 1, 1, mulh, 39424, 14<<20, 11<<20 );
- TEST_RR_SRC12_BYPASS( 19, 2, 0, mulh, 42240, 15<<20, 11<<20 );
-
- TEST_RR_SRC21_BYPASS( 20, 0, 0, mulh, 36608, 13<<20, 11<<20 );
- TEST_RR_SRC21_BYPASS( 21, 0, 1, mulh, 39424, 14<<20, 11<<20 );
- TEST_RR_SRC21_BYPASS( 22, 0, 2, mulh, 42240, 15<<20, 11<<20 );
- TEST_RR_SRC21_BYPASS( 23, 1, 0, mulh, 36608, 13<<20, 11<<20 );
- TEST_RR_SRC21_BYPASS( 24, 1, 1, mulh, 39424, 14<<20, 11<<20 );
- TEST_RR_SRC21_BYPASS( 25, 2, 0, mulh, 42240, 15<<20, 11<<20 );
-
- TEST_RR_ZEROSRC1( 26, mulh, 0, 31<<26 );
- TEST_RR_ZEROSRC2( 27, mulh, 0, 32<<26 );
- TEST_RR_ZEROSRC12( 28, mulh, 0 );
- TEST_RR_ZERODEST( 29, mulh, 33<<20, 34<<20 );
-
- TEST_PASSFAIL
-
-RVTEST_CODE_END
-
- .data
-RVTEST_DATA_BEGIN
-
- TEST_DATA
-
-RVTEST_DATA_END