binutils-gdb/sim/testsuite/bfin/random_0016.S
Mike Frysinger 1368b914e9 sim: testsuite: flatten tree
Now that all port tests live under testsuite/sim/*/, and none live
in testsuite/ directly, flatten the structure by moving all of the
dirs under testsuite/sim/ to testsuite/ directly.

We need to stop passing --tool to dejagnu so that it searches all
dirs and not just ones that start with "sim".  Since we have no
other dirs in this tree, and no plans to add any, should be fine.
2021-01-15 19:18:34 -05:00

27 lines
705 B
ArmAsm

# Test LSHIFT values and ASTAT flags
# mach: bfin
#include "test.h"
.include "testutils.inc"
start
dmm32 ASTAT, (0x7ce00000 | _VS | _V | _AV0S | _AQ | _CC | _V_COPY | _AN);
dmm32 A0.w, 0xe1a3909e;
dmm32 A0.x, 0xffffffff;
imm32 R2, 0x214a26f6;
A0 = LSHIFT A0 BY R2.L;
checkreg A0.w, 0x3ff868e4;
checkreg A0.x, 0x00000000;
checkreg ASTAT, (0x7ce00000 | _VS | _V | _AV0S | _AQ | _CC | _V_COPY);
dmm32 ASTAT, (0x64008a00 | _AV1 | _AV0S | _AV0 | _AC0 | _AQ | _CC | _AN);
dmm32 A0.w, 0x72af1593;
dmm32 A0.x, 0xfffffffd;
imm32 R2, 0x6505b40c;
A0 = LSHIFT A0 BY R2.L;
checkreg A0.w, 0xf1593000;
checkreg A0.x, 0x0000002a;
checkreg ASTAT, (0x64008a00 | _AV1 | _AV0S | _AC0 | _AQ | _CC);
pass