1 /* { dg-do compile } */
2 /* { dg-require-effective-target lp64 } */
3 /* { dg-options "-mdejagnu-cpu=power10" } */
4
5 extern void abort (void);
6
7 unsigned long long int
8 do_pdepd (unsigned long long int source, unsigned long long int mask) {
9 return __builtin_pdepd (source, mask);
10 }
11
12 int main (int argc, char *argv [])
13 {
14 unsigned long long int sources [4], masks [4];
15 unsigned long long int results [4][4] = {
16 /* sources [0] with each of masks [0..3] */
17 { 0x7e3c0000ll, 0x00007e3cll, 0x070e030cll, 0x70e030c0ll },
18 /* sources [1] with each of masks [0..3] */
19 { 0xa5f00000ll, 0x0000a5f0ll, 0x0a050f00ll, 0xa050f000ll },
20 /* sources [2] with each of masks [0..3] */
21 { 0xf07e0000ll, 0x0000f07ell, 0x0f00070ell, 0xf00070e0ll },
22 /* sources [3] with each of masks [0..3] */
23 { 0xe7c30000ll, 0x0000e7c3ll, 0x0e070c03ll, 0xe070c030ll },
24 };
25
26 sources[0] = 0xa5f07e3cll;
27 sources[1] = 0x7e3ca5f0ll;
28 sources[2] = 0x3ca5f07ell;
29 sources[3] = 0x5a0fe7c3ll;
30
31 masks[0] = 0xffff0000ll;
32 masks[1] = 0x0000ffffll;
33 masks[2] = 0x0f0f0f0fll;
34 masks[3] = 0xf0f0f0f0ll;
35
36 for (int i = 0; i < 4; i++)
37 {
38 for (int j = 0; j < 4; j++)
39 {
40 if (do_pdepd (sources[i], masks[j]) != results [i][j])
41 abort ();
42 }
43 }
44
45 return 0;
46 }
47
48 /* { dg-final { scan-assembler {\mpdepd\M} } } */