blob: 9915bf13b4c3cd3fc74c421bbbf79d873d77d6dd [file] [log] [blame]
# See LICENSE for license details.
#*****************************************************************************
# ctzw.S
#-----------------------------------------------------------------------------
#
# Test ctzw instruction.
#
#include "riscv_test.h"
#include "test_macros.h"
RVTEST_RV64U
RVTEST_CODE_BEGIN
#-------------------------------------------------------------
# Arithmetic tests
#-------------------------------------------------------------
TEST_R_OP( 2, ctzw, 32, 0x00000000);
TEST_R_OP( 3, ctzw, 0, 0x00000001);
TEST_R_OP( 4, ctzw, 0, 0x00000003);
TEST_R_OP( 5, ctzw, 15, 0xffff8000 );
TEST_R_OP( 6, ctzw, 23, 0x00800000 );
TEST_R_OP( 7, ctzw, 15, 0xffff8000 );
TEST_R_OP( 8, ctzw, 0, 0x00007fff);
TEST_R_OP( 9, ctzw, 0, 0x7fffffff);
TEST_R_OP( 10, ctzw, 0, 0x0007ffff );
TEST_R_OP( 11, ctzw, 31, 0x80000000);
TEST_R_OP( 12, ctzw, 12, 0x121f5000);
TEST_R_OP( 13, ctzw, 30, 0xc0000000);
TEST_R_OP( 14, ctzw, 1, 0x0000000e);
TEST_R_OP( 15, ctzw, 0, 0x20401341);
#-------------------------------------------------------------
# Source/Destination tests
#-------------------------------------------------------------
TEST_R_SRC1_EQ_DEST( 16, ctzw, 0, 13);
TEST_R_SRC1_EQ_DEST( 17, ctzw, 0, 11);
#-------------------------------------------------------------
# Bypassing tests
#-------------------------------------------------------------
TEST_R_DEST_BYPASS( 18, 0, ctzw, 0, 13);
TEST_R_DEST_BYPASS( 29, 1, ctzw, 0, 19);
TEST_R_DEST_BYPASS( 20, 2, ctzw, 1, 34);
#-------------------------------------------------------------
# Other tests
#-------------------------------------------------------------
TEST_R_OP( 21, ctzw, 15, 0x007f8000 );
TEST_R_OP( 22, ctzw, 15, 0x00808000 );
TEST_R_OP( 23, ctzw, 12, 0x01809000 );
TEST_R_OP( 24, ctzw, 0, 0x00007fff);
TEST_R_OP( 25, ctzw, 0, 0x7fffffff);
TEST_R_OP( 26, ctzw, 0, 0x0007ffff);
TEST_PASSFAIL
RVTEST_CODE_END
.data
RVTEST_DATA_BEGIN
TEST_DATA
RVTEST_DATA_END