summaryrefslogtreecommitdiff
path: root/sim/testsuite/aarch64/cnt.s
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2021-01-05 22:09:57 -0500
committerMike Frysinger <vapier@gentoo.org>2021-01-15 19:18:34 -0500
commit1368b914e93a3af332f787d3d41c106d11bb90da (patch)
tree9893ccae5d2d8cbf2ce855e09d6b8f30b56a21bc /sim/testsuite/aarch64/cnt.s
parente403a898b5893337baea73bcb001ece74042f351 (diff)
downloadbinutils-gdb-1368b914e93a3af332f787d3d41c106d11bb90da.tar.gz
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.
Diffstat (limited to 'sim/testsuite/aarch64/cnt.s')
-rw-r--r--sim/testsuite/aarch64/cnt.s33
1 files changed, 33 insertions, 0 deletions
diff --git a/sim/testsuite/aarch64/cnt.s b/sim/testsuite/aarch64/cnt.s
new file mode 100644
index 00000000000..b4be2e3b624
--- /dev/null
+++ b/sim/testsuite/aarch64/cnt.s
@@ -0,0 +1,33 @@
+# mach: aarch64
+
+# Check the popcount instruction: cnt.
+
+.include "testutils.inc"
+
+ .data
+ .align 4
+input:
+ .word 0x04030201
+ .word 0x0f070605
+ .word 0x44332211
+ .word 0xff776655
+
+ start
+ adrp x0, input
+ ldr q0, [x0, #:lo12:input]
+
+ cnt v1.8b, v0.8b
+ addv b2, v1.8b
+ mov x1, v2.d[0]
+ cmp x1, #16
+ bne .Lfailure
+
+ cnt v1.16b, v0.16b
+ addv b2, v1.16b
+ mov x1, v2.d[0]
+ cmp x1, #48
+ bne .Lfailure
+
+ pass
+.Lfailure:
+ fail