blob: efbb8a56529244b100550fca315ed86acfe8dd01 [file] [log] [blame]
Coby Tayreea1e5f0c2017-12-27 08:16:54 +00001/*===------------------ vaesintrin.h - VAES intrinsics ---------------------===
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 <vaesintrin.h> directly; include <immintrin.h> instead."
26#endif
27
28#ifndef __VAESINTRIN_H
29#define __VAESINTRIN_H
30
31/* Default attributes for YMM forms. */
32#define __DEFAULT_FN_ATTRS __attribute__((__always_inline__, __nodebug__, __target__("vaes")))
33
34/* Default attributes for ZMM forms. */
35#define __DEFAULT_FN_ATTRS_F __attribute__((__always_inline__, __nodebug__, __target__("avx512f,vaes")))
36
37
38static __inline__ __m256i __DEFAULT_FN_ATTRS
39 _mm256_aesenc_epi128(__m256i __A, __m256i __B)
40{
41 return (__m256i) __builtin_ia32_aesenc256((__v4di) __A,
42 (__v4di) __B);
43}
44
45static __inline__ __m512i __DEFAULT_FN_ATTRS_F
46 _mm512_aesenc_epi128(__m512i __A, __m512i __B)
47{
48 return (__m512i) __builtin_ia32_aesenc512((__v8di) __A,
49 (__v8di) __B);
50}
51
52static __inline__ __m256i __DEFAULT_FN_ATTRS
53 _mm256_aesdec_epi128(__m256i __A, __m256i __B)
54{
55 return (__m256i) __builtin_ia32_aesdec256((__v4di) __A,
56 (__v4di) __B);
57}
58
59static __inline__ __m512i __DEFAULT_FN_ATTRS_F
60 _mm512_aesdec_epi128(__m512i __A, __m512i __B)
61{
62 return (__m512i) __builtin_ia32_aesdec512((__v8di) __A,
63 (__v8di) __B);
64}
65
66static __inline__ __m256i __DEFAULT_FN_ATTRS
67 _mm256_aesenclast_epi128(__m256i __A, __m256i __B)
68{
69 return (__m256i) __builtin_ia32_aesenclast256((__v4di) __A,
70 (__v4di) __B);
71}
72
73static __inline__ __m512i __DEFAULT_FN_ATTRS_F
74 _mm512_aesenclast_epi128(__m512i __A, __m512i __B)
75{
76 return (__m512i) __builtin_ia32_aesenclast512((__v8di) __A,
77 (__v8di) __B);
78}
79
80static __inline__ __m256i __DEFAULT_FN_ATTRS
81 _mm256_aesdeclast_epi128(__m256i __A, __m256i __B)
82{
83 return (__m256i) __builtin_ia32_aesdeclast256((__v4di) __A,
84 (__v4di) __B);
85}
86
87static __inline__ __m512i __DEFAULT_FN_ATTRS_F
88 _mm512_aesdeclast_epi128(__m512i __A, __m512i __B)
89{
90 return (__m512i) __builtin_ia32_aesdeclast512((__v8di) __A,
91 (__v8di) __B);
92}
93
94
95#undef __DEFAULT_FN_ATTRS
96#undef __DEFAULT_FN_ATTRS_F
97
98#endif