qemu-patch-raspberry4/tests/tcg/cris/bare/check_subq.s
Alex Bennée d4f6e58fcb tests/tcg: split cris tests into bare and libc directories
Bare tests are standalone assembly tests that don't require linking to
any libc and hence can be built with kernel only compilers. The libc
tests need a compiler capable of building properly linked userspace
binaries. As we don't have such a cross compiler at the moment we
won't be building those tests.

Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
2019-03-12 17:05:21 +00:00

53 lines
714 B
ArmAsm

# mach: crisv3 crisv8 crisv10 crisv32
# output: 0\nffffffff\nfffffffe\nffff\nff\n56788f9\n56788d9\n567889a\n0\n7ffffffc\n
.include "testutils.inc"
start
moveq 1,r3
subq 1,r3
test_cc 0 1 0 0
checkr3 0
subq 1,r3
test_cc 1 0 0 1
checkr3 ffffffff
subq 1,r3
test_cc 1 0 0 0
checkr3 fffffffe
move.d 0x10000,r3
subq 1,r3
test_cc 0 0 0 0
checkr3 ffff
move.d 0x100,r3
subq 1,r3
test_cc 0 0 0 0
checkr3 ff
move.d 0x5678900,r3
subq 7,r3
test_cc 0 0 0 0
checkr3 56788f9
subq 32,r3
test_cc 0 0 0 0
checkr3 56788d9
subq 63,r3
test_cc 0 0 0 0
checkr3 567889a
move.d 34,r3
subq 34,r3
test_cc 0 1 0 0
checkr3 0
move.d 0x80000024,r3
subq 40,r3
test_cc 0 0 1 0
checkr3 7ffffffc
quit