Michael Zuckerman | 10d6f9a | 2016-03-09 11:26:45 +0000 | [diff] [blame] | 1 | /*===------------- avx512vbmiintrin.h - VBMI intrinsics ------------------=== |
Michael Zuckerman | 9f33848 | 2016-03-07 17:04:11 +0000 | [diff] [blame] | 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 <avx512vbmiintrin.h> directly; include <immintrin.h> instead." |
| 26 | #endif |
| 27 | |
| 28 | #ifndef __VBMIINTRIN_H |
| 29 | #define __VBMIINTRIN_H |
| 30 | |
| 31 | /* Define the default attributes for the functions in this file. */ |
| 32 | #define __DEFAULT_FN_ATTRS __attribute__((__always_inline__, __nodebug__, __target__("avx512vbmi"))) |
| 33 | |
| 34 | |
| 35 | static __inline__ __m512i __DEFAULT_FN_ATTRS |
| 36 | _mm512_mask2_permutex2var_epi8 (__m512i __A, __m512i __I, |
| 37 | __mmask64 __U, __m512i __B) |
| 38 | { |
| 39 | return (__m512i) __builtin_ia32_vpermi2varqi512_mask ((__v64qi) __A, |
| 40 | (__v64qi) __I |
| 41 | /* idx */ , |
| 42 | (__v64qi) __B, |
Michael Zuckerman | 3378653 | 2016-07-12 12:42:27 +0000 | [diff] [blame] | 43 | (__mmask64) __U); |
Michael Zuckerman | 9f33848 | 2016-03-07 17:04:11 +0000 | [diff] [blame] | 44 | } |
| 45 | |
| 46 | static __inline__ __m512i __DEFAULT_FN_ATTRS |
| 47 | _mm512_permutex2var_epi8 (__m512i __A, __m512i __I, __m512i __B) |
| 48 | { |
| 49 | return (__m512i) __builtin_ia32_vpermt2varqi512_mask ((__v64qi) __I |
| 50 | /* idx */ , |
| 51 | (__v64qi) __A, |
| 52 | (__v64qi) __B, |
Michael Zuckerman | 3378653 | 2016-07-12 12:42:27 +0000 | [diff] [blame] | 53 | (__mmask64) -1); |
Michael Zuckerman | 9f33848 | 2016-03-07 17:04:11 +0000 | [diff] [blame] | 54 | } |
| 55 | |
| 56 | static __inline__ __m512i __DEFAULT_FN_ATTRS |
| 57 | _mm512_mask_permutex2var_epi8 (__m512i __A, __mmask64 __U, |
| 58 | __m512i __I, __m512i __B) |
| 59 | { |
| 60 | return (__m512i) __builtin_ia32_vpermt2varqi512_mask ((__v64qi) __I |
| 61 | /* idx */ , |
| 62 | (__v64qi) __A, |
| 63 | (__v64qi) __B, |
Michael Zuckerman | 3378653 | 2016-07-12 12:42:27 +0000 | [diff] [blame] | 64 | (__mmask64) __U); |
Michael Zuckerman | 9f33848 | 2016-03-07 17:04:11 +0000 | [diff] [blame] | 65 | } |
| 66 | |
| 67 | static __inline__ __m512i __DEFAULT_FN_ATTRS |
| 68 | _mm512_maskz_permutex2var_epi8 (__mmask64 __U, __m512i __A, |
| 69 | __m512i __I, __m512i __B) |
| 70 | { |
| 71 | return (__m512i) __builtin_ia32_vpermt2varqi512_maskz ((__v64qi) __I |
| 72 | /* idx */ , |
| 73 | (__v64qi) __A, |
| 74 | (__v64qi) __B, |
Michael Zuckerman | 3378653 | 2016-07-12 12:42:27 +0000 | [diff] [blame] | 75 | (__mmask64) __U); |
Michael Zuckerman | 9f33848 | 2016-03-07 17:04:11 +0000 | [diff] [blame] | 76 | } |
| 77 | |
Michael Zuckerman | 8938e83 | 2016-04-25 05:32:35 +0000 | [diff] [blame] | 78 | static __inline__ __m512i __DEFAULT_FN_ATTRS |
| 79 | _mm512_permutexvar_epi8 (__m512i __A, __m512i __B) |
| 80 | { |
Craig Topper | 55b4067 | 2018-05-20 23:34:10 +0000 | [diff] [blame] | 81 | return (__m512i)__builtin_ia32_permvarqi512((__v64qi) __B, (__v64qi) __A); |
Michael Zuckerman | 8938e83 | 2016-04-25 05:32:35 +0000 | [diff] [blame] | 82 | } |
| 83 | |
| 84 | static __inline__ __m512i __DEFAULT_FN_ATTRS |
| 85 | _mm512_maskz_permutexvar_epi8 (__mmask64 __M, __m512i __A, |
| 86 | __m512i __B) |
| 87 | { |
Craig Topper | 55b4067 | 2018-05-20 23:34:10 +0000 | [diff] [blame] | 88 | return (__m512i)__builtin_ia32_selectb_512((__mmask64)__M, |
| 89 | (__v64qi)_mm512_permutexvar_epi8(__A, __B), |
| 90 | (__v64qi)_mm512_setzero_si512()); |
Michael Zuckerman | 8938e83 | 2016-04-25 05:32:35 +0000 | [diff] [blame] | 91 | } |
| 92 | |
| 93 | static __inline__ __m512i __DEFAULT_FN_ATTRS |
| 94 | _mm512_mask_permutexvar_epi8 (__m512i __W, __mmask64 __M, __m512i __A, |
| 95 | __m512i __B) |
| 96 | { |
Craig Topper | 55b4067 | 2018-05-20 23:34:10 +0000 | [diff] [blame] | 97 | return (__m512i)__builtin_ia32_selectb_512((__mmask64)__M, |
| 98 | (__v64qi)_mm512_permutexvar_epi8(__A, __B), |
| 99 | (__v64qi)__W); |
Michael Zuckerman | 8938e83 | 2016-04-25 05:32:35 +0000 | [diff] [blame] | 100 | } |
| 101 | |
Michael Zuckerman | f86eb71 | 2016-05-23 15:04:39 +0000 | [diff] [blame] | 102 | static __inline__ __m512i __DEFAULT_FN_ATTRS |
| 103 | _mm512_mask_multishift_epi64_epi8 (__m512i __W, __mmask64 __M, __m512i __X, __m512i __Y) |
| 104 | { |
| 105 | return (__m512i) __builtin_ia32_vpmultishiftqb512_mask ((__v64qi) __X, |
| 106 | (__v64qi) __Y, |
| 107 | (__v64qi) __W, |
| 108 | (__mmask64) __M); |
| 109 | } |
| 110 | |
| 111 | static __inline__ __m512i __DEFAULT_FN_ATTRS |
| 112 | _mm512_maskz_multishift_epi64_epi8 (__mmask64 __M, __m512i __X, __m512i __Y) |
| 113 | { |
| 114 | return (__m512i) __builtin_ia32_vpmultishiftqb512_mask ((__v64qi) __X, |
| 115 | (__v64qi) __Y, |
Michael Zuckerman | 3378653 | 2016-07-12 12:42:27 +0000 | [diff] [blame] | 116 | (__v64qi) _mm512_setzero_si512 (), |
Michael Zuckerman | f86eb71 | 2016-05-23 15:04:39 +0000 | [diff] [blame] | 117 | (__mmask64) __M); |
| 118 | } |
| 119 | |
| 120 | static __inline__ __m512i __DEFAULT_FN_ATTRS |
| 121 | _mm512_multishift_epi64_epi8 (__m512i __X, __m512i __Y) |
| 122 | { |
| 123 | return (__m512i) __builtin_ia32_vpmultishiftqb512_mask ((__v64qi) __X, |
| 124 | (__v64qi) __Y, |
Michael Zuckerman | 3378653 | 2016-07-12 12:42:27 +0000 | [diff] [blame] | 125 | (__v64qi) _mm512_undefined_epi32 (), |
Michael Zuckerman | f86eb71 | 2016-05-23 15:04:39 +0000 | [diff] [blame] | 126 | (__mmask64) -1); |
| 127 | } |
| 128 | |
| 129 | |
Michael Zuckerman | 9f33848 | 2016-03-07 17:04:11 +0000 | [diff] [blame] | 130 | #undef __DEFAULT_FN_ATTRS |
| 131 | |
| 132 | #endif |