[testsuite] require sqrt_insn effective target where needed
[official-gcc.git] / gcc / testsuite / gcc.target / powerpc / ssse3-phaddsw.c
blob1c39ae5f4953b5feca1eadf99e4a48945847bd38
1 /* { dg-do run } */
2 /* { dg-options "-O3 -mvsx -Wno-psabi" } */
3 /* { dg-additional-options "-mdejagnu-cpu=power8" { target { ! has_arch_pwr8 } } } */
4 /* { dg-require-effective-target p8vector_hw } */
6 #ifndef CHECK_H
7 #define CHECK_H "ssse3-check.h"
8 #endif
10 #ifndef TEST
11 #define TEST ssse3_test
12 #endif
14 #include CHECK_H
16 #include "ssse3-vals.h"
18 #include <tmmintrin.h>
20 #ifndef __AVX__
21 /* Test the 64-bit form */
22 static void
23 ssse3_test_phaddsw (__m64 *i1, __m64 *i2, __m64 *r)
25 *r = _mm_hadds_pi16 (*i1, *i2);
26 _mm_empty ();
28 #endif
30 /* Test the 128-bit form */
31 static void
32 ssse3_test_phaddsw128 (__m128i *i1, __m128i *i2, __m128i *r)
34 /* Assumes incoming pointers are 16-byte aligned */
35 *(__m128i *) r = _mm_hadds_epi16 (*i1, *i2);
38 static short
39 signed_saturate_to_word (int x)
41 if (x > (int) 0x7fff)
42 return 0x7fff;
44 if (x < (int) 0xffff8000)
45 return 0x8000;
47 return (short) x;
50 /* Routine to manually compute the results */
51 static void
52 compute_correct_result (short *i1, short *i2, short *r)
54 int i;
56 for (i = 0; i < 4; i++)
57 r[i + 0] = signed_saturate_to_word(i1[2 * i] + i1[2 * i + 1]);
58 for (i = 0; i < 4; i++)
59 r[i + 4] = signed_saturate_to_word(i2[2 * i] + i2[2 * i + 1]);
62 static void
63 TEST (void)
65 int i;
66 union data r __attribute__ ((aligned(16)));
67 union data ck;
68 int fail = 0;
70 for (i = 0; i < ARRAY_SIZE (vals) - 1; i++)
72 /* Manually compute the result */
73 compute_correct_result (&vals[i + 0].h[0], &vals[i + 1].h[0], &ck.h[0]);
75 #ifndef __AVX__
76 /* Run the 64-bit tests */
77 ssse3_test_phaddsw (&vals[i + 0].ll[0], &vals[i + 0].ll[1], &r.ll[0]);
78 ssse3_test_phaddsw (&vals[i + 1].ll[0], &vals[i + 1].ll[1], &r.ll[1]);
79 fail += chk_128 (ck.m[0], r.m[0]);
80 #endif
82 /* Run the 128-bit tests */
83 ssse3_test_phaddsw128 (&vals[i + 0].m[0], &vals[i + 1].m[0], &r.m[0]);
84 fail += chk_128 (ck.m[0], r.m[0]);
87 if (fail != 0)
88 abort ();