avx512vlintrin.h revision 277718
1/*===---- avx512vlintrin.h - AVX512VL intrinsics ---------------------------===
2 *
3 * Permission is hereby granted, free of charge, to any person obtaining a copy
4 * of this software and associated documentation files (the "Software"), to deal
5 * in the Software without restriction, including without limitation the rights
6 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7 * copies of the Software, and to permit persons to whom the Software is
8 * furnished to do so, subject to the following conditions:
9 *
10 * The above copyright notice and this permission notice shall be included in
11 * all copies or substantial portions of the Software.
12 *
13 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19 * THE SOFTWARE.
20 *
21 *===-----------------------------------------------------------------------===
22 */
23
24#ifndef __IMMINTRIN_H
25#error "Never use <avx512vlintrin.h> directly; include <immintrin.h> instead."
26#endif
27
28#ifndef __AVX512VLINTRIN_H
29#define __AVX512VLINTRIN_H
30
31/* Integer compare */
32
33static __inline__ __mmask8 __attribute__((__always_inline__, __nodebug__))
34_mm_cmpeq_epi32_mask(__m128i __a, __m128i __b) {
35  return (__mmask8)__builtin_ia32_pcmpeqd128_mask((__v4si)__a, (__v4si)__b,
36                                                  (__mmask8)-1);
37}
38
39static __inline__ __mmask8 __attribute__((__always_inline__, __nodebug__))
40_mm_mask_cmpeq_epi32_mask(__mmask8 __u, __m128i __a, __m128i __b) {
41  return (__mmask8)__builtin_ia32_pcmpeqd128_mask((__v4si)__a, (__v4si)__b,
42                                                  __u);
43}
44
45
46static __inline__ __mmask8 __attribute__((__always_inline__, __nodebug__))
47_mm256_cmpeq_epi32_mask(__m256i __a, __m256i __b) {
48  return (__mmask8)__builtin_ia32_pcmpeqd256_mask((__v8si)__a, (__v8si)__b,
49                                                  (__mmask8)-1);
50}
51
52static __inline__ __mmask8 __attribute__((__always_inline__, __nodebug__))
53_mm256_mask_cmpeq_epi32_mask(__mmask8 __u, __m256i __a, __m256i __b) {
54  return (__mmask8)__builtin_ia32_pcmpeqd256_mask((__v8si)__a, (__v8si)__b,
55                                                  __u);
56}
57
58static __inline__ __mmask8 __attribute__((__always_inline__, __nodebug__))
59_mm_cmpeq_epi64_mask(__m128i __a, __m128i __b) {
60  return (__mmask8)__builtin_ia32_pcmpeqq128_mask((__v2di)__a, (__v2di)__b,
61                                                  (__mmask8)-1);
62}
63
64static __inline__ __mmask8 __attribute__((__always_inline__, __nodebug__))
65_mm_mask_cmpeq_epi64_mask(__mmask8 __u, __m128i __a, __m128i __b) {
66  return (__mmask8)__builtin_ia32_pcmpeqq128_mask((__v2di)__a, (__v2di)__b,
67                                                  __u);
68}
69
70
71static __inline__ __mmask8 __attribute__((__always_inline__, __nodebug__))
72_mm256_cmpeq_epi64_mask(__m256i __a, __m256i __b) {
73  return (__mmask8)__builtin_ia32_pcmpeqq256_mask((__v4di)__a, (__v4di)__b,
74                                                  (__mmask8)-1);
75}
76
77static __inline__ __mmask8 __attribute__((__always_inline__, __nodebug__))
78_mm256_mask_cmpeq_epi64_mask(__mmask8 __u, __m256i __a, __m256i __b) {
79  return (__mmask8)__builtin_ia32_pcmpeqq256_mask((__v4di)__a, (__v4di)__b,
80                                                  __u);
81}
82
83#endif /* __AVX512VLINTRIN_H */
84