summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/i386/avx512vpopcntdq-vpopcntq-1.c
blob: 5a628210f6338b669ef3baf73e8bb5e62eddbb3e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
/* { dg-do run } */
/* { dg-options "-O2 -mavx512vpopcntdq" } */
/* { dg-require-effective-target avx512vpopcntdq } */

#define AVX512VPOPCNTDQ
#include "avx512f-helper.h"

#define SIZE (AVX512F_LEN / 64)

#include "avx512f-mask-type.h"

#define TYPE long long

static int
compute_popcnt (TYPE v)
{
  int ret;
  int i;

 ret = 0;
 for (i = 0; i < sizeof(v) * 8; i++)
   if ((v & ((TYPE)1 << (TYPE) i)))
     ret++;

 return ret;
}

void
TEST (void)
{
  UNION_TYPE (AVX512F_LEN, i_q) res1, res2, res3, src, src0;
  MASK_TYPE mask = MASK_VALUE;
  TYPE res_ref[SIZE];
  src.x = _mm512_set1_epi8 (0x3D);
  int i;

  for (i = 0; i < SIZE; i++)
  {
    res_ref[i] = compute_popcnt (src.a[i]);
    src0.a[i] = DEFAULT_VALUE;
  }

  res1.x = INTRINSIC (_popcnt_epi64)       (src.x);
  res2.x = INTRINSIC (_mask_popcnt_epi64)  (src.x, mask, src0.x);
  res3.x = INTRINSIC (_maskz_popcnt_epi64) (mask, src.x);

  if (UNION_CHECK (AVX512F_LEN, i_q) (res1, res_ref))
    abort ();

  MASK_MERGE (i_q) (res_ref, mask, SIZE);
  if (UNION_CHECK (AVX512F_LEN, i_q) (res2, res_ref))
    abort ();

  MASK_ZERO (i_q) (res_ref, mask, SIZE);
  if (UNION_CHECK (AVX512F_LEN, i_q) (res3, res_ref))
    abort ();
}