2 /* { dg-options "-O3 -mpower8-vector -Wno-psabi" } */
3 /* { dg-require-effective-target lp64 } */
4 /* { dg-require-effective-target p8vector_hw } */
7 #define CHECK_H "sse2-check.h"
13 #define TEST sse2_test_pshufhw_1
18 #include <emmintrin.h>
21 __attribute__((noinline
, unused
))
24 return _mm_shufflehi_epi16 (s1
, N
);
34 int m1
[4] = { 0x3, 0x3<<2, 0x3<<4, 0x3<<6 };
37 s1
.x
= _mm_set_epi64x (0xabcde,0xef58a234);
40 for (i
= 0; i
< 4; i
++)
41 e
[i
] = (s1
.a
[0]>>(16 * i
)) & 0xffff;
43 for (i
= 0; i
< 4; i
++)
44 m2
[i
] = (N
& m1
[i
])>>(2*i
);
46 for (i
= 0; i
< 4; i
++)
47 e
[i
+4] = (s1
.a
[1] >> (16 * m2
[i
])) & 0xffff;
49 if (check_union128i_w(u
, e
))
54 printf ("sse2_test_pshufhw_1; check_union128i_w failed\n");
55 printf ("\t ([%hx,%hx,%hx,%hx, %hx,%hx,%hx,%hx])\n", s
.a
[0], s
.a
[1],
56 s
.a
[2], s
.a
[3], s
.a
[4], s
.a
[5], s
.a
[6], s
.a
[7]);
57 printf ("\t\t -> [%hx,%hx,%hx,%hx, %hx,%hx,%hx,%hx]\n", u
.a
[0], u
.a
[1],
58 u
.a
[2], u
.a
[3], u
.a
[4], u
.a
[5], u
.a
[6], u
.a
[7]);
59 printf ("\t expect [%hx,%hx,%hx,%hx, %hx,%hx,%hx,%hx]\n", e
[0], e
[1],
60 e
[2], e
[3], e
[4], e
[5], e
[6], e
[7]);