root / lab4 / .minix-src / include / clang-3.6 / avx512vlbwintrin.h @ 13
History | View | Annotate | Download (3.61 KB)
1 | 13 | up20180614 | /*===---- avx512vlbwintrin.h - AVX512VL and AVX512BW 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 <avx512vlbwintrin.h> directly; include <immintrin.h> instead." |
||
26 | #endif
|
||
27 | |||
28 | #ifndef __AVX512VLBWINTRIN_H
|
||
29 | #define __AVX512VLBWINTRIN_H
|
||
30 | |||
31 | /* Integer compare */
|
||
32 | |||
33 | static __inline__ __mmask16 __attribute__((__always_inline__, __nodebug__))
|
||
34 | _mm_cmpeq_epi8_mask(__m128i __a, __m128i __b) { |
||
35 | return (__mmask16)__builtin_ia32_pcmpeqb128_mask((__v16qi)__a, (__v16qi)__b,
|
||
36 | (__mmask16)-1);
|
||
37 | } |
||
38 | |||
39 | static __inline__ __mmask16 __attribute__((__always_inline__, __nodebug__))
|
||
40 | _mm_mask_cmpeq_epi8_mask(__mmask16 __u, __m128i __a, __m128i __b) { |
||
41 | return (__mmask16)__builtin_ia32_pcmpeqb128_mask((__v16qi)__a, (__v16qi)__b,
|
||
42 | __u); |
||
43 | } |
||
44 | |||
45 | |||
46 | static __inline__ __mmask32 __attribute__((__always_inline__, __nodebug__))
|
||
47 | _mm256_cmpeq_epi8_mask(__m256i __a, __m256i __b) { |
||
48 | return (__mmask32)__builtin_ia32_pcmpeqb256_mask((__v32qi)__a, (__v32qi)__b,
|
||
49 | (__mmask32)-1);
|
||
50 | } |
||
51 | |||
52 | static __inline__ __mmask32 __attribute__((__always_inline__, __nodebug__))
|
||
53 | _mm256_mask_cmpeq_epi8_mask(__mmask32 __u, __m256i __a, __m256i __b) { |
||
54 | return (__mmask32)__builtin_ia32_pcmpeqb256_mask((__v32qi)__a, (__v32qi)__b,
|
||
55 | __u); |
||
56 | } |
||
57 | |||
58 | static __inline__ __mmask8 __attribute__((__always_inline__, __nodebug__))
|
||
59 | _mm_cmpeq_epi16_mask(__m128i __a, __m128i __b) { |
||
60 | return (__mmask8)__builtin_ia32_pcmpeqw128_mask((__v8hi)__a, (__v8hi)__b,
|
||
61 | (__mmask8)-1);
|
||
62 | } |
||
63 | |||
64 | static __inline__ __mmask8 __attribute__((__always_inline__, __nodebug__))
|
||
65 | _mm_mask_cmpeq_epi16_mask(__mmask8 __u, __m128i __a, __m128i __b) { |
||
66 | return (__mmask8)__builtin_ia32_pcmpeqw128_mask((__v8hi)__a, (__v8hi)__b,
|
||
67 | __u); |
||
68 | } |
||
69 | |||
70 | |||
71 | static __inline__ __mmask16 __attribute__((__always_inline__, __nodebug__))
|
||
72 | _mm256_cmpeq_epi16_mask(__m256i __a, __m256i __b) { |
||
73 | return (__mmask16)__builtin_ia32_pcmpeqw256_mask((__v16hi)__a, (__v16hi)__b,
|
||
74 | (__mmask16)-1);
|
||
75 | } |
||
76 | |||
77 | static __inline__ __mmask16 __attribute__((__always_inline__, __nodebug__))
|
||
78 | _mm256_mask_cmpeq_epi16_mask(__mmask16 __u, __m256i __a, __m256i __b) { |
||
79 | return (__mmask16)__builtin_ia32_pcmpeqw256_mask((__v16hi)__a, (__v16hi)__b,
|
||
80 | __u); |
||
81 | } |
||
82 | |||
83 | #endif /* __AVX512VLBWINTRIN_H */ |