1 /* { dg-do compile { target { powerpc*-*-* } } } */
2 /* { dg-skip-if "" { powerpc*-*-darwin* } } */
3 /* { dg-require-effective-target powerpc_p8vector_ok } */
4 /* { dg-skip-if "do not override -mcpu" { powerpc*-*-* } { "-mcpu=*" } { "-mcpu=power8" } } */
5 /* { dg-options "-mcpu=power8 -O2 -ftree-vectorize -fvect-cost-model=dynamic -fno-unroll-loops -fno-unroll-all-loops" } */
15 #define ALIGN_ATTR __attribute__((__aligned__(ALIGN)))
17 #define DO_BUILTIN(PREFIX, TYPE, CLZ, POPCNT) \
18 TYPE PREFIX ## _a[SIZE] ALIGN_ATTR; \
19 TYPE PREFIX ## _b[SIZE] ALIGN_ATTR; \
22 PREFIX ## _clz (void) \
26 for (i = 0; i < SIZE; i++) \
27 PREFIX ## _a[i] = CLZ (PREFIX ## _b[i]); \
31 PREFIX ## _popcnt (void) \
35 for (i = 0; i < SIZE; i++) \
36 PREFIX ## _a[i] = POPCNT (PREFIX ## _b[i]); \
39 #if !defined(DO_LONG_LONG) && !defined(DO_LONG) && !defined(DO_INT) && !defined(DO_SHORT) && !defined(DO_CHAR)
44 /* At the moment, only int is auto vectorized. */
45 DO_BUILTIN (sll
, long long, __builtin_clzll
, __builtin_popcountll
)
46 DO_BUILTIN (ull
, unsigned long long, __builtin_clzll
, __builtin_popcountll
)
49 #if defined(_ARCH_PPC64) && DO_LONG
50 DO_BUILTIN (sl
, long, __builtin_clzl
, __builtin_popcountl
)
51 DO_BUILTIN (ul
, unsigned long, __builtin_clzl
, __builtin_popcountl
)
55 DO_BUILTIN (si
, int, __builtin_clz
, __builtin_popcount
)
56 DO_BUILTIN (ui
, unsigned int, __builtin_clz
, __builtin_popcount
)
60 DO_BUILTIN (ss
, short, __builtin_clz
, __builtin_popcount
)
61 DO_BUILTIN (us
, unsigned short, __builtin_clz
, __builtin_popcount
)
65 DO_BUILTIN (sc
, signed char, __builtin_clz
, __builtin_popcount
)
66 DO_BUILTIN (uc
, unsigned char, __builtin_clz
, __builtin_popcount
)
69 /* { dg-final { scan-assembler-times "vclzw" 2 } } */
70 /* { dg-final { scan-assembler-times "vpopcntw" 2 } } */