2 /* { dg-options "-O2 -mavx512f" } */
3 /* { dg-require-effective-target avx512f } */
7 #include "avx512f-helper.h"
9 #define SIZE (AVX512F_LEN / 64)
10 #include "avx512f-mask-type.h"
12 CALC (unsigned long long *r
, unsigned long long *s1
, unsigned long long* s2
)
15 unsigned long long count
= s2
[0];
16 for (i
= 0; i
< SIZE
; i
++)
18 r
[i
] = count
< 64 ? (s1
[i
] >> count
) : 0;
26 UNION_TYPE (AVX512F_LEN
, i_q
) res1
, res2
, res3
, src1
;
27 UNION_TYPE (128, i_q
) src2
;
28 MASK_TYPE mask
= MASK_VALUE
;
29 unsigned long long res_ref
[SIZE
];
31 unsigned long long imm
;
32 for (i
= 0; i
< SIZE
; i
++)
34 src1
.a
[i
] = 2 + 7 * i
% 291;
37 for (imm
= 1; imm
<= 65; imm
++)
40 for (i
= 0; i
< SIZE
; i
++)
41 res2
.a
[i
] = DEFAULT_VALUE
;
43 res1
.x
= INTRINSIC (_srl_epi64
) (src1
.x
, src2
.x
);
44 res2
.x
= INTRINSIC (_mask_srl_epi64
) (res2
.x
, mask
, src1
.x
, src2
.x
);
45 res3
.x
= INTRINSIC (_maskz_srl_epi64
) (mask
, src1
.x
, src2
.x
);
47 CALC (res_ref
, src1
.a
, src2
.a
);
49 if (UNION_CHECK (AVX512F_LEN
, i_q
) (res1
, res_ref
))
52 MASK_MERGE (i_q
) (res_ref
, mask
, SIZE
);
53 if (UNION_CHECK (AVX512F_LEN
, i_q
) (res2
, res_ref
))
56 MASK_ZERO (i_q
) (res_ref
, mask
, SIZE
);
57 if (UNION_CHECK (AVX512F_LEN
, i_q
) (res3
, res_ref
))