78 lines · c
1/*===------- avx512vpintersectintrin.h - VP2INTERSECT intrinsics ------------===2 *3 *4 * Permission is hereby granted, free of charge, to any person obtaining a copy5 * of this software and associated documentation files (the "Software"), to deal6 * in the Software without restriction, including without limitation the rights7 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell8 * copies of the Software, and to permit persons to whom the Software is9 * furnished to do so, subject to the following conditions:10 *11 * The above copyright notice and this permission notice shall be included in12 * all copies or substantial portions of the Software.13 *14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE17 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER18 * 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 IN20 * THE SOFTWARE.21 *22 *===-----------------------------------------------------------------------===23 */24#ifndef __IMMINTRIN_H25#error "Never use <avx512vp2intersect.h> directly; include <immintrin.h> instead."26#endif27 28#ifndef _AVX512VP2INTERSECT_H29#define _AVX512VP2INTERSECT_H30 31#define __DEFAULT_FN_ATTRS \32 __attribute__((__always_inline__, __nodebug__, \33 __target__("avx512vp2intersect"), __min_vector_width__(512)))34 35/// Store, in an even/odd pair of mask registers, the indicators of the36/// locations of value matches between dwords in operands __a and __b.37///38/// \headerfile <x86intrin.h>39///40/// This intrinsic corresponds to the <c> VP2INTERSECTD </c> instruction.41///42/// \param __a43/// A 512-bit vector of [16 x i32].44/// \param __b45/// A 512-bit vector of [16 x i32]46/// \param __m047/// A pointer point to 16-bit mask48/// \param __m149/// A pointer point to 16-bit mask50static __inline__ void __DEFAULT_FN_ATTRS51_mm512_2intersect_epi32(__m512i __a, __m512i __b, __mmask16 *__m0, __mmask16 *__m1) {52 __builtin_ia32_vp2intersect_d_512((__v16si)__a, (__v16si)__b, __m0, __m1);53}54 55/// Store, in an even/odd pair of mask registers, the indicators of the56/// locations of value matches between quadwords in operands __a and __b.57///58/// \headerfile <x86intrin.h>59///60/// This intrinsic corresponds to the <c> VP2INTERSECTQ </c> instruction.61///62/// \param __a63/// A 512-bit vector of [8 x i64].64/// \param __b65/// A 512-bit vector of [8 x i64]66/// \param __m067/// A pointer point to 8-bit mask68/// \param __m169/// A pointer point to 8-bit mask70static __inline__ void __DEFAULT_FN_ATTRS71_mm512_2intersect_epi64(__m512i __a, __m512i __b, __mmask8 *__m0, __mmask8 *__m1) {72 __builtin_ia32_vp2intersect_q_512((__v8di)__a, (__v8di)__b, __m0, __m1);73}74 75#undef __DEFAULT_FN_ATTRS76 77#endif78