blob: 485692ea2b5b17be49688eda073867a762fa8ecd [file] [log] [blame]
Logan Chiendf4f7662019-09-04 16:45:23 -07001/*===------------ vpclmulqdqintrin.h - VPCLMULQDQ intrinsics ---------------===
2 *
3 *
4 * Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
5 * See https://llvm.org/LICENSE.txt for license information.
6 * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 *
8 *===-----------------------------------------------------------------------===
9 */
10#ifndef __IMMINTRIN_H
11#error "Never use <vpclmulqdqintrin.h> directly; include <immintrin.h> instead."
12#endif
13
14#ifndef __VPCLMULQDQINTRIN_H
15#define __VPCLMULQDQINTRIN_H
16
17#define _mm256_clmulepi64_epi128(A, B, I) \
Pirama Arumuga Nainar494f6452021-12-02 10:42:14 -080018 ((__m256i)__builtin_ia32_pclmulqdq256((__v4di)(__m256i)(A), \
19 (__v4di)(__m256i)(B), \
20 (char)(I)))
Logan Chiendf4f7662019-09-04 16:45:23 -070021
Pirama Arumuga Nainar7e1f8392021-08-16 17:30:48 -070022#ifdef __AVX512FINTRIN_H
Logan Chiendf4f7662019-09-04 16:45:23 -070023#define _mm512_clmulepi64_epi128(A, B, I) \
Pirama Arumuga Nainar494f6452021-12-02 10:42:14 -080024 ((__m512i)__builtin_ia32_pclmulqdq512((__v8di)(__m512i)(A), \
25 (__v8di)(__m512i)(B), \
26 (char)(I)))
Pirama Arumuga Nainar7e1f8392021-08-16 17:30:48 -070027#endif // __AVX512FINTRIN_H
Logan Chiendf4f7662019-09-04 16:45:23 -070028
29#endif /* __VPCLMULQDQINTRIN_H */
30