avx512bitalgintrin.h revision 327330
1/*===------------- avx512bitalgintrin.h - BITALG intrinsics ------------------===
2 *
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a copy
5 * of this software and associated documentation files (the "Software"), to deal
6 * in the Software without restriction, including without limitation the rights
7 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8 * copies of the Software, and to permit persons to whom the Software is
9 * furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
13 *
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
20 * THE SOFTWARE.
21 *
22 *===-----------------------------------------------------------------------===
23 */
24#ifndef __IMMINTRIN_H
25#error "Never use <avx512bitalgintrin.h> directly; include <immintrin.h> instead."
26#endif
27
28#ifndef __AVX512BITALGINTRIN_H
29#define __AVX512BITALGINTRIN_H
30
31/* Define the default attributes for the functions in this file. */
32#define __DEFAULT_FN_ATTRS __attribute__((__always_inline__, __nodebug__, __target__("avx512bitalg")))
33
34static __inline__ __m512i __DEFAULT_FN_ATTRS
35_mm512_popcnt_epi16(__m512i __A)
36{
37  return (__m512i) __builtin_ia32_vpopcntw_512((__v32hi) __A);
38}
39
40static __inline__ __m512i __DEFAULT_FN_ATTRS
41_mm512_mask_popcnt_epi16(__m512i __A, __mmask32 __U, __m512i __B)
42{
43  return (__m512i) __builtin_ia32_selectw_512((__mmask32) __U,
44              (__v32hi) _mm512_popcnt_epi16(__B),
45              (__v32hi) __A);
46}
47
48static __inline__ __m512i __DEFAULT_FN_ATTRS
49_mm512_maskz_popcnt_epi16(__mmask32 __U, __m512i __B)
50{
51  return _mm512_mask_popcnt_epi16((__m512i) _mm512_setzero_hi(),
52              __U,
53              __B);
54}
55
56static __inline__ __m512i __DEFAULT_FN_ATTRS
57_mm512_popcnt_epi8(__m512i __A)
58{
59  return (__m512i) __builtin_ia32_vpopcntb_512((__v64qi) __A);
60}
61
62static __inline__ __m512i __DEFAULT_FN_ATTRS
63_mm512_mask_popcnt_epi8(__m512i __A, __mmask64 __U, __m512i __B)
64{
65  return (__m512i) __builtin_ia32_selectb_512((__mmask64) __U,
66              (__v64qi) _mm512_popcnt_epi8(__B),
67              (__v64qi) __A);
68}
69
70static __inline__ __m512i __DEFAULT_FN_ATTRS
71_mm512_maskz_popcnt_epi8(__mmask64 __U, __m512i __B)
72{
73  return _mm512_mask_popcnt_epi8((__m512i) _mm512_setzero_qi(),
74              __U,
75              __B);
76}
77
78static __inline__ __mmask64 __DEFAULT_FN_ATTRS
79_mm512_mask_bitshuffle_epi64_mask(__mmask64 __U, __m512i __A, __m512i __B)
80{
81  return (__mmask64) __builtin_ia32_vpshufbitqmb512_mask((__v64qi) __A,
82              (__v64qi) __B,
83              __U);
84}
85
86static __inline__ __mmask64 __DEFAULT_FN_ATTRS
87_mm512_bitshuffle_epi64_mask(__m512i __A, __m512i __B)
88{
89  return _mm512_mask_bitshuffle_epi64_mask((__mmask64) -1,
90              __A,
91              __B);
92}
93
94
95#undef __DEFAULT_FN_ATTRS
96
97#endif
98