mirror of https://gitee.com/openkylin/qemu.git
tests/tcg/tricore: Add ftoi test
Tested-by: Alex Bennée <alex.bennee@linaro.org> Signed-off-by: Bastian Koppelmann <kbastian@mail.uni-paderborn.de> Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Message-Id: <20210305170045.869437-13-kbastian@mail.uni-paderborn.de> Message-Id: <20210512102051.12134-23-alex.bennee@linaro.org>
This commit is contained in:
parent
14c91f75e3
commit
55f037a5d5
|
@ -9,6 +9,7 @@ TESTS += test_clz.tst
|
||||||
TESTS += test_dvstep.tst
|
TESTS += test_dvstep.tst
|
||||||
TESTS += test_fadd.tst
|
TESTS += test_fadd.tst
|
||||||
TESTS += test_fmul.tst
|
TESTS += test_fmul.tst
|
||||||
|
TESTS += test_ftoi.tst
|
||||||
|
|
||||||
QEMU_OPTS += -M tricore_testboard -nographic -kernel
|
QEMU_OPTS += -M tricore_testboard -nographic -kernel
|
||||||
|
|
||||||
|
|
|
@ -70,6 +70,13 @@ test_ ## num: \
|
||||||
insn DREG_CALC_RESULT, DREG_RS1; \
|
insn DREG_CALC_RESULT, DREG_RS1; \
|
||||||
)
|
)
|
||||||
|
|
||||||
|
#define TEST_D_D_PSW(insn, num, result, psw, rs1) \
|
||||||
|
TEST_CASE_PSW(num, DREG_CALC_RESULT, result, psw, \
|
||||||
|
LI(DREG_RS1, rs1); \
|
||||||
|
rstv; \
|
||||||
|
insn DREG_CORRECT_RESULT, DREG_RS1; \
|
||||||
|
)
|
||||||
|
|
||||||
#define TEST_D_DD_PSW(insn, num, result, psw, rs1, rs2) \
|
#define TEST_D_DD_PSW(insn, num, result, psw, rs1, rs2) \
|
||||||
TEST_CASE_PSW(num, DREG_CALC_RESULT, result, psw, \
|
TEST_CASE_PSW(num, DREG_CALC_RESULT, result, psw, \
|
||||||
LI(DREG_RS1, rs1); \
|
LI(DREG_RS1, rs1); \
|
||||||
|
|
|
@ -0,0 +1,10 @@
|
||||||
|
#include "macros.h"
|
||||||
|
.text
|
||||||
|
.global _start
|
||||||
|
_start:
|
||||||
|
TEST_D_D_PSW(ftoi, 1, 0x0, 0x84000b80, 0x05f6e605)
|
||||||
|
TEST_D_D_PSW(ftoi, 2, 0x0, 0x04000b80, 0x00012200)
|
||||||
|
TEST_D_D_PSW(ftoi, 3, 0x0, 0xc4000b80, 0xffffffff)
|
||||||
|
|
||||||
|
TEST_PASSFAIL
|
||||||
|
|
Loading…
Reference in New Issue