]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gcc.target/aarch64/sve2/acle/asm/tbl2_u8.c
[AArch64] Add support for the SVE2 ACLE
[thirdparty/gcc.git] / gcc / testsuite / gcc.target / aarch64 / sve2 / acle / asm / tbl2_u8.c
1 /* { dg-final { check-function-bodies "**" "" "-DCHECK_ASM" } } */
2
3 #include "test_sve_acle.h"
4
5 /*
6 ** tbl2_u8_tied1:
7 ** tbl z0\.b, {z0\.b(?:, | - )z1\.b}, z4\.b
8 ** ret
9 */
10 TEST_TBL2 (tbl2_u8_tied1, svuint8x2_t, svuint8_t, svuint8_t,
11 z0_res = svtbl2_u8 (z0, z4),
12 z0_res = svtbl2 (z0, z4))
13
14 /*
15 ** tbl2_u8_tied2:
16 ** tbl z0\.b, {z1\.b(?:, | - )z2\.b}, z0\.b
17 ** ret
18 */
19 TEST_TBL2_REV (tbl2_u8_tied2, svuint8x2_t, svuint8_t, svuint8_t,
20 z0_res = svtbl2_u8 (z1, z0),
21 z0_res = svtbl2 (z1, z0))
22
23 /*
24 ** tbl2_u8_untied:
25 ** tbl z0\.b, {z2\.b(?:, | - )z3\.b}, z4\.b
26 ** ret
27 */
28 TEST_TBL2 (tbl2_u8_untied, svuint8x2_t, svuint8_t, svuint8_t,
29 z0_res = svtbl2_u8 (z2, z4),
30 z0_res = svtbl2 (z2, z4))