ETISS 0.8.0
Extendable Translating Instruction Set Simulator (version 0.8.0)
__wmmintrin_pclmul.h
Go to the documentation of this file.
1 /*===---- __wmmintrin_pclmul.h - PCMUL intrinsics ---------------------------===
2  *
3  * Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4  * See https://llvm.org/LICENSE.txt for license information.
5  * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6  *
7  *===-----------------------------------------------------------------------===
8  */
9 
10 #ifndef __WMMINTRIN_H
11 #error "Never use <__wmmintrin_pclmul.h> directly; include <wmmintrin.h> instead."
12 #endif
13 
14 #ifndef __WMMINTRIN_PCLMUL_H
15 #define __WMMINTRIN_PCLMUL_H
16 
44 #define _mm_clmulepi64_si128(X, Y, I) \
45  ((__m128i)__builtin_ia32_pclmulqdq128((__v2di)(__m128i)(X), \
46  (__v2di)(__m128i)(Y), (char)(I)))
47 
48 #endif /* __WMMINTRIN_PCLMUL_H */