1 /* { dg-do compile { target { powerpc*-*-* } } } */
2 /* { dg-skip-if "" { powerpc*-*-darwin* } } */
3 /* { dg-options "-mdejagnu-cpu=power8 -mvsx -O2 -ftree-vectorize -fvect-cost-model=dynamic -fno-unroll-loops -fno-unroll-all-loops" } */
4 /* { dg-require-effective-target powerpc_vsx } */
14 #define ALIGN_ATTR __attribute__((__aligned__(ALIGN)))
16 #define DO_BUILTIN(PREFIX, TYPE, CLZ, POPCNT) \
17 TYPE PREFIX ## _a[SIZE] ALIGN_ATTR; \
18 TYPE PREFIX ## _b[SIZE] ALIGN_ATTR; \
21 PREFIX ## _clz (void) \
25 for (i = 0; i < SIZE; i++) \
26 PREFIX ## _a[i] = CLZ (PREFIX ## _b[i]); \
30 PREFIX ## _popcnt (void) \
34 for (i = 0; i < SIZE; i++) \
35 PREFIX ## _a[i] = POPCNT (PREFIX ## _b[i]); \
38 #if !defined(DO_LONG_LONG) && !defined(DO_LONG) && !defined(DO_INT) && !defined(DO_SHORT) && !defined(DO_CHAR)
43 /* At the moment, only int is auto vectorized. */
44 DO_BUILTIN (sll
, long long, __builtin_clzll
, __builtin_popcountll
)
45 DO_BUILTIN (ull
, unsigned long long, __builtin_clzll
, __builtin_popcountll
)
48 #if defined(_ARCH_PPC64) && DO_LONG
49 DO_BUILTIN (sl
, long, __builtin_clzl
, __builtin_popcountl
)
50 DO_BUILTIN (ul
, unsigned long, __builtin_clzl
, __builtin_popcountl
)
54 DO_BUILTIN (si
, int, __builtin_clz
, __builtin_popcount
)
55 DO_BUILTIN (ui
, unsigned int, __builtin_clz
, __builtin_popcount
)
59 DO_BUILTIN (ss
, short, __builtin_clz
, __builtin_popcount
)
60 DO_BUILTIN (us
, unsigned short, __builtin_clz
, __builtin_popcount
)
64 DO_BUILTIN (sc
, signed char, __builtin_clz
, __builtin_popcount
)
65 DO_BUILTIN (uc
, unsigned char, __builtin_clz
, __builtin_popcount
)
68 /* { dg-final { scan-assembler-times "vclzw" 2 } } */
69 /* { dg-final { scan-assembler-times "vpopcntw" 2 } } */