blob: 69ad07f42ad6b8652a5067a6525105af0fa48600 [file] [log] [blame]
Anders Carlsson91e18c92010-03-24 05:31:31 +00001/*===---- smmintrin.h - SSE4 intrinsics ------------------------------------===
2 *
3 * Permission is hereby granted, free of charge, to any person obtaining a copy
4 * of this software and associated documentation files (the "Software"), to deal
5 * in the Software without restriction, including without limitation the rights
6 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7 * copies of the Software, and to permit persons to whom the Software is
8 * furnished to do so, subject to the following conditions:
9 *
10 * The above copyright notice and this permission notice shall be included in
11 * all copies or substantial portions of the Software.
12 *
13 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19 * THE SOFTWARE.
20 *
21 *===-----------------------------------------------------------------------===
22 */
Eric Christopher94567c02010-03-04 02:56:19 +000023
24#ifndef _SMMINTRIN_H
25#define _SMMINTRIN_H
26
Eric Christopher94567c02010-03-04 02:56:19 +000027#include <tmmintrin.h>
28
Eric Christopher4d1851682015-06-17 07:09:20 +000029/* Define the default attributes for the functions in this file. */
Michael Kupersteine45af542015-06-30 13:36:19 +000030#define __DEFAULT_FN_ATTRS __attribute__((__always_inline__, __nodebug__, __target__("sse4.1")))
Eric Christopher4d1851682015-06-17 07:09:20 +000031
Eric Christopher94567c02010-03-04 02:56:19 +000032/* SSE4 Rounding macros. */
33#define _MM_FROUND_TO_NEAREST_INT 0x00
34#define _MM_FROUND_TO_NEG_INF 0x01
35#define _MM_FROUND_TO_POS_INF 0x02
36#define _MM_FROUND_TO_ZERO 0x03
37#define _MM_FROUND_CUR_DIRECTION 0x04
38
39#define _MM_FROUND_RAISE_EXC 0x00
40#define _MM_FROUND_NO_EXC 0x08
41
42#define _MM_FROUND_NINT (_MM_FROUND_RAISE_EXC | _MM_FROUND_TO_NEAREST_INT)
43#define _MM_FROUND_FLOOR (_MM_FROUND_RAISE_EXC | _MM_FROUND_TO_NEG_INF)
44#define _MM_FROUND_CEIL (_MM_FROUND_RAISE_EXC | _MM_FROUND_TO_POS_INF)
45#define _MM_FROUND_TRUNC (_MM_FROUND_RAISE_EXC | _MM_FROUND_TO_ZERO)
46#define _MM_FROUND_RINT (_MM_FROUND_RAISE_EXC | _MM_FROUND_CUR_DIRECTION)
Eric Christopherb0759be2010-03-06 10:31:44 +000047#define _MM_FROUND_NEARBYINT (_MM_FROUND_NO_EXC | _MM_FROUND_CUR_DIRECTION)
Eric Christopher94567c02010-03-04 02:56:19 +000048
49#define _mm_ceil_ps(X) _mm_round_ps((X), _MM_FROUND_CEIL)
50#define _mm_ceil_pd(X) _mm_round_pd((X), _MM_FROUND_CEIL)
51#define _mm_ceil_ss(X, Y) _mm_round_ss((X), (Y), _MM_FROUND_CEIL)
52#define _mm_ceil_sd(X, Y) _mm_round_sd((X), (Y), _MM_FROUND_CEIL)
53
54#define _mm_floor_ps(X) _mm_round_ps((X), _MM_FROUND_FLOOR)
55#define _mm_floor_pd(X) _mm_round_pd((X), _MM_FROUND_FLOOR)
56#define _mm_floor_ss(X, Y) _mm_round_ss((X), (Y), _MM_FROUND_FLOOR)
57#define _mm_floor_sd(X, Y) _mm_round_sd((X), (Y), _MM_FROUND_FLOOR)
58
Craig Topper74c17c62012-03-30 07:01:17 +000059#define _mm_round_ps(X, M) __extension__ ({ \
Craig Topper71481662015-11-10 05:08:05 +000060 (__m128)__builtin_ia32_roundps((__v4sf)(__m128)(X), (M)); })
Craig Topper74c17c62012-03-30 07:01:17 +000061
62#define _mm_round_ss(X, Y, M) __extension__ ({ \
Craig Topper71481662015-11-10 05:08:05 +000063 (__m128)__builtin_ia32_roundss((__v4sf)(__m128)(X), \
64 (__v4sf)(__m128)(Y), (M)); })
Craig Topper74c17c62012-03-30 07:01:17 +000065
66#define _mm_round_pd(X, M) __extension__ ({ \
Craig Topper71481662015-11-10 05:08:05 +000067 (__m128d)__builtin_ia32_roundpd((__v2df)(__m128d)(X), (M)); })
Craig Topper74c17c62012-03-30 07:01:17 +000068
69#define _mm_round_sd(X, Y, M) __extension__ ({ \
Craig Topper71481662015-11-10 05:08:05 +000070 (__m128d)__builtin_ia32_roundsd((__v2df)(__m128d)(X), \
71 (__v2df)(__m128d)(Y), (M)); })
Eric Christopher94567c02010-03-04 02:56:19 +000072
73/* SSE4 Packed Blending Intrinsics. */
Eli Friedmanf16beb32011-11-10 00:11:13 +000074#define _mm_blend_pd(V1, V2, M) __extension__ ({ \
Craig Topper71481662015-11-10 05:08:05 +000075 (__m128d)__builtin_shufflevector((__v2df)(__m128d)(V1), \
76 (__v2df)(__m128d)(V2), \
Filipe Cabecinhas5d289b42014-05-13 02:37:02 +000077 (((M) & 0x01) ? 2 : 0), \
78 (((M) & 0x02) ? 3 : 1)); })
Eric Christopher94567c02010-03-04 02:56:19 +000079
Eli Friedmanf16beb32011-11-10 00:11:13 +000080#define _mm_blend_ps(V1, V2, M) __extension__ ({ \
Craig Topper71481662015-11-10 05:08:05 +000081 (__m128)__builtin_shufflevector((__v4sf)(__m128)(V1), (__v4sf)(__m128)(V2), \
Filipe Cabecinhas5d289b42014-05-13 02:37:02 +000082 (((M) & 0x01) ? 4 : 0), \
83 (((M) & 0x02) ? 5 : 1), \
84 (((M) & 0x04) ? 6 : 2), \
85 (((M) & 0x08) ? 7 : 3)); })
Eric Christopher94567c02010-03-04 02:56:19 +000086
Michael Kupersteine45af542015-06-30 13:36:19 +000087static __inline__ __m128d __DEFAULT_FN_ATTRS
Eric Christopher94567c02010-03-04 02:56:19 +000088_mm_blendv_pd (__m128d __V1, __m128d __V2, __m128d __M)
89{
90 return (__m128d) __builtin_ia32_blendvpd ((__v2df)__V1, (__v2df)__V2,
91 (__v2df)__M);
92}
93
Michael Kupersteine45af542015-06-30 13:36:19 +000094static __inline__ __m128 __DEFAULT_FN_ATTRS
Eric Christopher94567c02010-03-04 02:56:19 +000095_mm_blendv_ps (__m128 __V1, __m128 __V2, __m128 __M)
96{
97 return (__m128) __builtin_ia32_blendvps ((__v4sf)__V1, (__v4sf)__V2,
98 (__v4sf)__M);
99}
100
Michael Kupersteine45af542015-06-30 13:36:19 +0000101static __inline__ __m128i __DEFAULT_FN_ATTRS
Eric Christopher94567c02010-03-04 02:56:19 +0000102_mm_blendv_epi8 (__m128i __V1, __m128i __V2, __m128i __M)
103{
104 return (__m128i) __builtin_ia32_pblendvb128 ((__v16qi)__V1, (__v16qi)__V2,
105 (__v16qi)__M);
106}
107
Eli Friedmanf16beb32011-11-10 00:11:13 +0000108#define _mm_blend_epi16(V1, V2, M) __extension__ ({ \
Craig Topper71481662015-11-10 05:08:05 +0000109 (__m128i)__builtin_shufflevector((__v8hi)(__m128i)(V1), \
110 (__v8hi)(__m128i)(V2), \
Filipe Cabecinhas5d289b42014-05-13 02:37:02 +0000111 (((M) & 0x01) ? 8 : 0), \
112 (((M) & 0x02) ? 9 : 1), \
113 (((M) & 0x04) ? 10 : 2), \
114 (((M) & 0x08) ? 11 : 3), \
115 (((M) & 0x10) ? 12 : 4), \
116 (((M) & 0x20) ? 13 : 5), \
117 (((M) & 0x40) ? 14 : 6), \
118 (((M) & 0x80) ? 15 : 7)); })
Eric Christopher94567c02010-03-04 02:56:19 +0000119
Eric Christopher87990fe2010-03-07 06:17:19 +0000120/* SSE4 Dword Multiply Instructions. */
Michael Kupersteine45af542015-06-30 13:36:19 +0000121static __inline__ __m128i __DEFAULT_FN_ATTRS
Eric Christopher87990fe2010-03-07 06:17:19 +0000122_mm_mullo_epi32 (__m128i __V1, __m128i __V2)
123{
Eric Christopherbd9a3ae2010-03-26 00:51:28 +0000124 return (__m128i) ((__v4si)__V1 * (__v4si)__V2);
Eric Christopher87990fe2010-03-07 06:17:19 +0000125}
126
Michael Kupersteine45af542015-06-30 13:36:19 +0000127static __inline__ __m128i __DEFAULT_FN_ATTRS
Eric Christopher87990fe2010-03-07 06:17:19 +0000128_mm_mul_epi32 (__m128i __V1, __m128i __V2)
129{
130 return (__m128i) __builtin_ia32_pmuldq128 ((__v4si)__V1, (__v4si)__V2);
131}
132
133/* SSE4 Floating Point Dot Product Instructions. */
Craig Topper74c17c62012-03-30 07:01:17 +0000134#define _mm_dp_ps(X, Y, M) __extension__ ({ \
Craig Topper71481662015-11-10 05:08:05 +0000135 (__m128) __builtin_ia32_dpps((__v4sf)(__m128)(X), \
136 (__v4sf)(__m128)(Y), (M)); })
Craig Topper74c17c62012-03-30 07:01:17 +0000137
138#define _mm_dp_pd(X, Y, M) __extension__ ({\
Craig Topper71481662015-11-10 05:08:05 +0000139 (__m128d) __builtin_ia32_dppd((__v2df)(__m128d)(X), \
140 (__v2df)(__m128d)(Y), (M)); })
Eric Christopher87990fe2010-03-07 06:17:19 +0000141
Eric Christopher72888902010-03-07 06:29:09 +0000142/* SSE4 Streaming Load Hint Instruction. */
Michael Kupersteine45af542015-06-30 13:36:19 +0000143static __inline__ __m128i __DEFAULT_FN_ATTRS
Ahmed Bougacha7dfaaf32015-10-02 23:29:26 +0000144_mm_stream_load_si128 (__m128i const *__V)
Eric Christopher72888902010-03-07 06:29:09 +0000145{
Ahmed Bougacha7dfaaf32015-10-02 23:29:26 +0000146 return (__m128i) __builtin_ia32_movntdqa ((const __v2di *) __V);
Eric Christopher72888902010-03-07 06:29:09 +0000147}
148
Eric Christopher4c703582010-03-07 07:00:42 +0000149/* SSE4 Packed Integer Min/Max Instructions. */
Michael Kupersteine45af542015-06-30 13:36:19 +0000150static __inline__ __m128i __DEFAULT_FN_ATTRS
Eric Christopher4c703582010-03-07 07:00:42 +0000151_mm_min_epi8 (__m128i __V1, __m128i __V2)
152{
153 return (__m128i) __builtin_ia32_pminsb128 ((__v16qi) __V1, (__v16qi) __V2);
154}
155
Michael Kupersteine45af542015-06-30 13:36:19 +0000156static __inline__ __m128i __DEFAULT_FN_ATTRS
Eric Christopher4c703582010-03-07 07:00:42 +0000157_mm_max_epi8 (__m128i __V1, __m128i __V2)
158{
159 return (__m128i) __builtin_ia32_pmaxsb128 ((__v16qi) __V1, (__v16qi) __V2);
160}
161
Michael Kupersteine45af542015-06-30 13:36:19 +0000162static __inline__ __m128i __DEFAULT_FN_ATTRS
Eric Christopher4c703582010-03-07 07:00:42 +0000163_mm_min_epu16 (__m128i __V1, __m128i __V2)
164{
165 return (__m128i) __builtin_ia32_pminuw128 ((__v8hi) __V1, (__v8hi) __V2);
166}
167
Michael Kupersteine45af542015-06-30 13:36:19 +0000168static __inline__ __m128i __DEFAULT_FN_ATTRS
Eric Christopher4c703582010-03-07 07:00:42 +0000169_mm_max_epu16 (__m128i __V1, __m128i __V2)
170{
171 return (__m128i) __builtin_ia32_pmaxuw128 ((__v8hi) __V1, (__v8hi) __V2);
172}
173
Michael Kupersteine45af542015-06-30 13:36:19 +0000174static __inline__ __m128i __DEFAULT_FN_ATTRS
Eric Christopher4c703582010-03-07 07:00:42 +0000175_mm_min_epi32 (__m128i __V1, __m128i __V2)
176{
177 return (__m128i) __builtin_ia32_pminsd128 ((__v4si) __V1, (__v4si) __V2);
178}
179
Michael Kupersteine45af542015-06-30 13:36:19 +0000180static __inline__ __m128i __DEFAULT_FN_ATTRS
Eric Christopher4c703582010-03-07 07:00:42 +0000181_mm_max_epi32 (__m128i __V1, __m128i __V2)
182{
183 return (__m128i) __builtin_ia32_pmaxsd128 ((__v4si) __V1, (__v4si) __V2);
184}
185
Michael Kupersteine45af542015-06-30 13:36:19 +0000186static __inline__ __m128i __DEFAULT_FN_ATTRS
Eric Christopher4c703582010-03-07 07:00:42 +0000187_mm_min_epu32 (__m128i __V1, __m128i __V2)
188{
189 return (__m128i) __builtin_ia32_pminud128((__v4si) __V1, (__v4si) __V2);
190}
191
Michael Kupersteine45af542015-06-30 13:36:19 +0000192static __inline__ __m128i __DEFAULT_FN_ATTRS
Eric Christopher4c703582010-03-07 07:00:42 +0000193_mm_max_epu32 (__m128i __V1, __m128i __V2)
194{
195 return (__m128i) __builtin_ia32_pmaxud128((__v4si) __V1, (__v4si) __V2);
196}
197
Eric Christopher1dca6202010-03-10 00:50:58 +0000198/* SSE4 Insertion and Extraction from XMM Register Instructions. */
199#define _mm_insert_ps(X, Y, N) __builtin_ia32_insertps128((X), (Y), (N))
200#define _mm_extract_ps(X, N) (__extension__ \
David Blaikie3302f2b2013-01-16 23:08:36 +0000201 ({ union { int __i; float __f; } __t; \
Craig Topperd619eaaa2015-11-11 03:47:10 +0000202 __v4sf __a = (__v4sf)(__m128)(X); \
Manman Renc94122e2013-10-23 20:33:14 +0000203 __t.__f = __a[(N) & 3]; \
David Blaikie3302f2b2013-01-16 23:08:36 +0000204 __t.__i;}))
Eric Christopher1dca6202010-03-10 00:50:58 +0000205
206/* Miscellaneous insert and extract macros. */
207/* Extract a single-precision float from X at index N into D. */
Daniel Dunbarf5e075d2010-06-02 16:35:01 +0000208#define _MM_EXTRACT_FLOAT(D, X, N) (__extension__ ({ __v4sf __a = (__v4sf)(X); \
Eric Christopher1dca6202010-03-10 00:50:58 +0000209 (D) = __a[N]; }))
Sean Silvae4c37602015-09-12 02:55:19 +0000210
Eric Christopher1dca6202010-03-10 00:50:58 +0000211/* Or together 2 sets of indexes (X and Y) with the zeroing bits (Z) to create
212 an index suitable for _mm_insert_ps. */
213#define _MM_MK_INSERTPS_NDX(X, Y, Z) (((X) << 6) | ((Y) << 4) | (Z))
Sean Silvae4c37602015-09-12 02:55:19 +0000214
Eric Christopher1dca6202010-03-10 00:50:58 +0000215/* Extract a float from X at index N into the first index of the return. */
216#define _MM_PICK_OUT_PS(X, N) _mm_insert_ps (_mm_setzero_ps(), (X), \
217 _MM_MK_INSERTPS_NDX((N), 0, 0x0e))
Sean Silvae4c37602015-09-12 02:55:19 +0000218
Eric Christophere7594302010-03-11 23:36:29 +0000219/* Insert int into packed integer array at index. */
Craig Topperd619eaaa2015-11-11 03:47:10 +0000220#define _mm_insert_epi8(X, I, N) (__extension__ \
221 ({ __v16qi __a = (__v16qi)(__m128i)(X); \
222 __a[(N) & 15] = (I); \
223 __a;}))
224#define _mm_insert_epi32(X, I, N) (__extension__ \
225 ({ __v4si __a = (__v4si)(__m128i)(X); \
226 __a[(N) & 3] = (I); \
227 __a;}))
Eric Christophere7594302010-03-11 23:36:29 +0000228#ifdef __x86_64__
Craig Topperd619eaaa2015-11-11 03:47:10 +0000229#define _mm_insert_epi64(X, I, N) (__extension__ \
230 ({ __v2di __a = (__v2di)(__m128i)(X); \
231 __a[(N) & 1] = (I); \
232 __a;}))
Eric Christophere7594302010-03-11 23:36:29 +0000233#endif /* __x86_64__ */
Eric Christopher1dca6202010-03-10 00:50:58 +0000234
Chris Lattner9052c352010-08-20 16:08:33 +0000235/* Extract int from packed integer array at index. This returns the element
236 * as a zero extended value, so it is unsigned.
237 */
Craig Topperd619eaaa2015-11-11 03:47:10 +0000238#define _mm_extract_epi8(X, N) (__extension__ \
239 ({ __v16qi __a = (__v16qi)(__m128i)(X); \
240 (int)(unsigned char) __a[(N) & 15];}))
241#define _mm_extract_epi32(X, N) (__extension__ \
242 ({ __v4si __a = (__v4si)(__m128i)(X); \
243 (int)__a[(N) & 3];}))
Eric Christophere486f682010-03-11 23:50:18 +0000244#ifdef __x86_64__
Craig Topperd619eaaa2015-11-11 03:47:10 +0000245#define _mm_extract_epi64(X, N) (__extension__ \
246 ({ __v2di __a = (__v2di)(__m128i)(X); \
247 (long long)__a[(N) & 1];}))
Eric Christophere486f682010-03-11 23:50:18 +0000248#endif /* __x86_64 */
249
Eric Christopher6932b2e2010-03-12 01:22:33 +0000250/* SSE4 128-bit Packed Integer Comparisons. */
Michael Kupersteine45af542015-06-30 13:36:19 +0000251static __inline__ int __DEFAULT_FN_ATTRS
Eric Christopher6932b2e2010-03-12 01:22:33 +0000252_mm_testz_si128(__m128i __M, __m128i __V)
253{
254 return __builtin_ia32_ptestz128((__v2di)__M, (__v2di)__V);
255}
256
Michael Kupersteine45af542015-06-30 13:36:19 +0000257static __inline__ int __DEFAULT_FN_ATTRS
Eric Christopher6932b2e2010-03-12 01:22:33 +0000258_mm_testc_si128(__m128i __M, __m128i __V)
259{
260 return __builtin_ia32_ptestc128((__v2di)__M, (__v2di)__V);
261}
262
Michael Kupersteine45af542015-06-30 13:36:19 +0000263static __inline__ int __DEFAULT_FN_ATTRS
Eric Christopher6932b2e2010-03-12 01:22:33 +0000264_mm_testnzc_si128(__m128i __M, __m128i __V)
265{
266 return __builtin_ia32_ptestnzc128((__v2di)__M, (__v2di)__V);
267}
268
269#define _mm_test_all_ones(V) _mm_testc_si128((V), _mm_cmpeq_epi32((V), (V)))
270#define _mm_test_mix_ones_zeros(M, V) _mm_testnzc_si128((M), (V))
Bob Wilson16c41952011-12-14 17:17:16 +0000271#define _mm_test_all_zeros(M, V) _mm_testz_si128 ((M), (V))
Eric Christopher6932b2e2010-03-12 01:22:33 +0000272
Eric Christopher8c6f6132010-03-15 23:22:58 +0000273/* SSE4 64-bit Packed Integer Comparisons. */
Michael Kupersteine45af542015-06-30 13:36:19 +0000274static __inline__ __m128i __DEFAULT_FN_ATTRS
Eric Christopher8c6f6132010-03-15 23:22:58 +0000275_mm_cmpeq_epi64(__m128i __V1, __m128i __V2)
276{
Craig Toppera89747d2011-12-20 09:55:26 +0000277 return (__m128i)((__v2di)__V1 == (__v2di)__V2);
Eric Christopher8c6f6132010-03-15 23:22:58 +0000278}
279
280/* SSE4 Packed Integer Sign-Extension. */
Michael Kupersteine45af542015-06-30 13:36:19 +0000281static __inline__ __m128i __DEFAULT_FN_ATTRS
Eric Christopher8c6f6132010-03-15 23:22:58 +0000282_mm_cvtepi8_epi16(__m128i __V)
283{
Chandler Carruthcbe64112015-10-01 23:40:12 +0000284 /* This function always performs a signed extension, but __v16qi is a char
285 which may be signed or unsigned, so use __v16qs. */
286 return (__m128i)__builtin_convertvector(__builtin_shufflevector((__v16qs)__V, (__v16qs)__V, 0, 1, 2, 3, 4, 5, 6, 7), __v8hi);
Eric Christopher8c6f6132010-03-15 23:22:58 +0000287}
288
Michael Kupersteine45af542015-06-30 13:36:19 +0000289static __inline__ __m128i __DEFAULT_FN_ATTRS
Eric Christopher8c6f6132010-03-15 23:22:58 +0000290_mm_cvtepi8_epi32(__m128i __V)
291{
Chandler Carruthcbe64112015-10-01 23:40:12 +0000292 /* This function always performs a signed extension, but __v16qi is a char
293 which may be signed or unsigned, so use __v16qs. */
294 return (__m128i)__builtin_convertvector(__builtin_shufflevector((__v16qs)__V, (__v16qs)__V, 0, 1, 2, 3), __v4si);
Eric Christopher8c6f6132010-03-15 23:22:58 +0000295}
296
Michael Kupersteine45af542015-06-30 13:36:19 +0000297static __inline__ __m128i __DEFAULT_FN_ATTRS
Eric Christopher8c6f6132010-03-15 23:22:58 +0000298_mm_cvtepi8_epi64(__m128i __V)
299{
Chandler Carruthcbe64112015-10-01 23:40:12 +0000300 /* This function always performs a signed extension, but __v16qi is a char
301 which may be signed or unsigned, so use __v16qs. */
302 typedef signed char __v16qs __attribute__((__vector_size__(16)));
303 return (__m128i)__builtin_convertvector(__builtin_shufflevector((__v16qs)__V, (__v16qs)__V, 0, 1), __v2di);
Eric Christopher8c6f6132010-03-15 23:22:58 +0000304}
305
Michael Kupersteine45af542015-06-30 13:36:19 +0000306static __inline__ __m128i __DEFAULT_FN_ATTRS
Eric Christopher8c6f6132010-03-15 23:22:58 +0000307_mm_cvtepi16_epi32(__m128i __V)
308{
Simon Pilgrim12919f72015-09-19 15:12:38 +0000309 return (__m128i)__builtin_convertvector(__builtin_shufflevector((__v8hi)__V, (__v8hi)__V, 0, 1, 2, 3), __v4si);
Eric Christopher8c6f6132010-03-15 23:22:58 +0000310}
311
Michael Kupersteine45af542015-06-30 13:36:19 +0000312static __inline__ __m128i __DEFAULT_FN_ATTRS
Eric Christopher8c6f6132010-03-15 23:22:58 +0000313_mm_cvtepi16_epi64(__m128i __V)
314{
Simon Pilgrim12919f72015-09-19 15:12:38 +0000315 return (__m128i)__builtin_convertvector(__builtin_shufflevector((__v8hi)__V, (__v8hi)__V, 0, 1), __v2di);
Eric Christopher8c6f6132010-03-15 23:22:58 +0000316}
317
Michael Kupersteine45af542015-06-30 13:36:19 +0000318static __inline__ __m128i __DEFAULT_FN_ATTRS
Eric Christopher8c6f6132010-03-15 23:22:58 +0000319_mm_cvtepi32_epi64(__m128i __V)
320{
Simon Pilgrim12919f72015-09-19 15:12:38 +0000321 return (__m128i)__builtin_convertvector(__builtin_shufflevector((__v4si)__V, (__v4si)__V, 0, 1), __v2di);
Eric Christopher8c6f6132010-03-15 23:22:58 +0000322}
323
324/* SSE4 Packed Integer Zero-Extension. */
Michael Kupersteine45af542015-06-30 13:36:19 +0000325static __inline__ __m128i __DEFAULT_FN_ATTRS
Eric Christopher8c6f6132010-03-15 23:22:58 +0000326_mm_cvtepu8_epi16(__m128i __V)
327{
328 return (__m128i) __builtin_ia32_pmovzxbw128((__v16qi) __V);
329}
330
Michael Kupersteine45af542015-06-30 13:36:19 +0000331static __inline__ __m128i __DEFAULT_FN_ATTRS
Eric Christopher8c6f6132010-03-15 23:22:58 +0000332_mm_cvtepu8_epi32(__m128i __V)
333{
334 return (__m128i) __builtin_ia32_pmovzxbd128((__v16qi)__V);
335}
336
Michael Kupersteine45af542015-06-30 13:36:19 +0000337static __inline__ __m128i __DEFAULT_FN_ATTRS
Eric Christopher8c6f6132010-03-15 23:22:58 +0000338_mm_cvtepu8_epi64(__m128i __V)
339{
340 return (__m128i) __builtin_ia32_pmovzxbq128((__v16qi)__V);
341}
342
Michael Kupersteine45af542015-06-30 13:36:19 +0000343static __inline__ __m128i __DEFAULT_FN_ATTRS
Eric Christopher8c6f6132010-03-15 23:22:58 +0000344_mm_cvtepu16_epi32(__m128i __V)
345{
346 return (__m128i) __builtin_ia32_pmovzxwd128((__v8hi)__V);
347}
348
Michael Kupersteine45af542015-06-30 13:36:19 +0000349static __inline__ __m128i __DEFAULT_FN_ATTRS
Eric Christopher8c6f6132010-03-15 23:22:58 +0000350_mm_cvtepu16_epi64(__m128i __V)
351{
352 return (__m128i) __builtin_ia32_pmovzxwq128((__v8hi)__V);
353}
354
Michael Kupersteine45af542015-06-30 13:36:19 +0000355static __inline__ __m128i __DEFAULT_FN_ATTRS
Eric Christopher8c6f6132010-03-15 23:22:58 +0000356_mm_cvtepu32_epi64(__m128i __V)
357{
358 return (__m128i) __builtin_ia32_pmovzxdq128((__v4si)__V);
359}
360
361/* SSE4 Pack with Unsigned Saturation. */
Michael Kupersteine45af542015-06-30 13:36:19 +0000362static __inline__ __m128i __DEFAULT_FN_ATTRS
Eric Christopher8c6f6132010-03-15 23:22:58 +0000363_mm_packus_epi32(__m128i __V1, __m128i __V2)
364{
365 return (__m128i) __builtin_ia32_packusdw128((__v4si)__V1, (__v4si)__V2);
366}
367
368/* SSE4 Multiple Packed Sums of Absolute Difference. */
Craig Topper74c17c62012-03-30 07:01:17 +0000369#define _mm_mpsadbw_epu8(X, Y, M) __extension__ ({ \
Craig Topper71481662015-11-10 05:08:05 +0000370 (__m128i) __builtin_ia32_mpsadbw128((__v16qi)(__m128i)(X), \
371 (__v16qi)(__m128i)(Y), (M)); })
Eric Christopher8c6f6132010-03-15 23:22:58 +0000372
Michael Kupersteine45af542015-06-30 13:36:19 +0000373static __inline__ __m128i __DEFAULT_FN_ATTRS
Craig Topper97f042f2012-03-30 05:41:28 +0000374_mm_minpos_epu16(__m128i __V)
375{
376 return (__m128i) __builtin_ia32_phminposuw128((__v8hi)__V);
377}
378
Eric Christopher9fc7fb22015-06-17 07:09:32 +0000379/* Handle the sse4.2 definitions here. */
380
Eric Christopher08f13522010-03-20 07:43:28 +0000381/* These definitions are normally in nmmintrin.h, but gcc puts them in here
382 so we'll do the same. */
Eric Christopher9fc7fb22015-06-17 07:09:32 +0000383
Michael Kupersteine45af542015-06-30 13:36:19 +0000384#undef __DEFAULT_FN_ATTRS
385#define __DEFAULT_FN_ATTRS __attribute__((__always_inline__, __nodebug__, __target__("sse4.2")))
Eric Christopher08f13522010-03-20 07:43:28 +0000386
387/* These specify the type of data that we're comparing. */
388#define _SIDD_UBYTE_OPS 0x00
389#define _SIDD_UWORD_OPS 0x01
390#define _SIDD_SBYTE_OPS 0x02
391#define _SIDD_SWORD_OPS 0x03
392
393/* These specify the type of comparison operation. */
394#define _SIDD_CMP_EQUAL_ANY 0x00
395#define _SIDD_CMP_RANGES 0x04
396#define _SIDD_CMP_EQUAL_EACH 0x08
397#define _SIDD_CMP_EQUAL_ORDERED 0x0c
398
399/* These macros specify the polarity of the operation. */
400#define _SIDD_POSITIVE_POLARITY 0x00
401#define _SIDD_NEGATIVE_POLARITY 0x10
402#define _SIDD_MASKED_POSITIVE_POLARITY 0x20
403#define _SIDD_MASKED_NEGATIVE_POLARITY 0x30
404
405/* These macros are used in _mm_cmpXstri() to specify the return. */
406#define _SIDD_LEAST_SIGNIFICANT 0x00
407#define _SIDD_MOST_SIGNIFICANT 0x40
408
409/* These macros are used in _mm_cmpXstri() to specify the return. */
410#define _SIDD_BIT_MASK 0x00
411#define _SIDD_UNIT_MASK 0x40
412
413/* SSE4.2 Packed Comparison Intrinsics. */
Craig Topperd619eaaa2015-11-11 03:47:10 +0000414#define _mm_cmpistrm(A, B, M) \
415 (__m128i)__builtin_ia32_pcmpistrm128((__v16qi)(__m128i)(A), \
416 (__v16qi)(__m128i)(B), (int)(M))
417#define _mm_cmpistri(A, B, M) \
418 (int)__builtin_ia32_pcmpistri128((__v16qi)(__m128i)(A), \
419 (__v16qi)(__m128i)(B), (int)(M))
Eric Christopher08f13522010-03-20 07:43:28 +0000420
421#define _mm_cmpestrm(A, LA, B, LB, M) \
Craig Topperd619eaaa2015-11-11 03:47:10 +0000422 (__m128i)__builtin_ia32_pcmpestrm128((__v16qi)(__m128i)(A), (int)(LA), \
423 (__v16qi)(__m128i)(B), (int)(LB), \
424 (int)(M))
Chandler Carruth222c66d2011-12-09 09:23:55 +0000425#define _mm_cmpestri(A, LA, B, LB, M) \
Craig Topperd619eaaa2015-11-11 03:47:10 +0000426 (int)__builtin_ia32_pcmpestri128((__v16qi)(__m128i)(A), (int)(LA), \
427 (__v16qi)(__m128i)(B), (int)(LB), \
428 (int)(M))
Sean Silvae4c37602015-09-12 02:55:19 +0000429
Eric Christopher08f13522010-03-20 07:43:28 +0000430/* SSE4.2 Packed Comparison Intrinsics and EFlag Reading. */
Eli Friedman9586cdb2011-11-08 04:13:51 +0000431#define _mm_cmpistra(A, B, M) \
Craig Topperd619eaaa2015-11-11 03:47:10 +0000432 (int)__builtin_ia32_pcmpistria128((__v16qi)(__m128i)(A), \
433 (__v16qi)(__m128i)(B), (int)(M))
Eli Friedman9586cdb2011-11-08 04:13:51 +0000434#define _mm_cmpistrc(A, B, M) \
Craig Topperd619eaaa2015-11-11 03:47:10 +0000435 (int)__builtin_ia32_pcmpistric128((__v16qi)(__m128i)(A), \
436 (__v16qi)(__m128i)(B), (int)(M))
Eli Friedman9586cdb2011-11-08 04:13:51 +0000437#define _mm_cmpistro(A, B, M) \
Craig Topperd619eaaa2015-11-11 03:47:10 +0000438 (int)__builtin_ia32_pcmpistrio128((__v16qi)(__m128i)(A), \
439 (__v16qi)(__m128i)(B), (int)(M))
Eli Friedman9586cdb2011-11-08 04:13:51 +0000440#define _mm_cmpistrs(A, B, M) \
Craig Topperd619eaaa2015-11-11 03:47:10 +0000441 (int)__builtin_ia32_pcmpistris128((__v16qi)(__m128i)(A), \
442 (__v16qi)(__m128i)(B), (int)(M))
Eli Friedman9586cdb2011-11-08 04:13:51 +0000443#define _mm_cmpistrz(A, B, M) \
Craig Topperd619eaaa2015-11-11 03:47:10 +0000444 (int)__builtin_ia32_pcmpistriz128((__v16qi)(__m128i)(A), \
445 (__v16qi)(__m128i)(B), (int)(M))
Eric Christopher08f13522010-03-20 07:43:28 +0000446
447#define _mm_cmpestra(A, LA, B, LB, M) \
Craig Topperd619eaaa2015-11-11 03:47:10 +0000448 (int)__builtin_ia32_pcmpestria128((__v16qi)(__m128i)(A), (int)(LA), \
449 (__v16qi)(__m128i)(B), (int)(LB), \
450 (int)(M))
Eric Christopher08f13522010-03-20 07:43:28 +0000451#define _mm_cmpestrc(A, LA, B, LB, M) \
Craig Topperd619eaaa2015-11-11 03:47:10 +0000452 (int)__builtin_ia32_pcmpestric128((__v16qi)(__m128i)(A), (int)(LA), \
453 (__v16qi)(__m128i)(B), (int)(LB), \
454 (int)(M))
Eric Christopher08f13522010-03-20 07:43:28 +0000455#define _mm_cmpestro(A, LA, B, LB, M) \
Craig Topperd619eaaa2015-11-11 03:47:10 +0000456 (int)__builtin_ia32_pcmpestrio128((__v16qi)(__m128i)(A), (int)(LA), \
457 (__v16qi)(__m128i)(B), (int)(LB), \
458 (int)(M))
Eric Christopher08f13522010-03-20 07:43:28 +0000459#define _mm_cmpestrs(A, LA, B, LB, M) \
Craig Topperd619eaaa2015-11-11 03:47:10 +0000460 (int)__builtin_ia32_pcmpestris128((__v16qi)(__m128i)(A), (int)(LA), \
461 (__v16qi)(__m128i)(B), (int)(LB), \
462 (int)(M))
Eric Christopher08f13522010-03-20 07:43:28 +0000463#define _mm_cmpestrz(A, LA, B, LB, M) \
Craig Topperd619eaaa2015-11-11 03:47:10 +0000464 (int)__builtin_ia32_pcmpestriz128((__v16qi)(__m128i)(A), (int)(LA), \
465 (__v16qi)(__m128i)(B), (int)(LB), \
466 (int)(M))
Eric Christopher08f13522010-03-20 07:43:28 +0000467
468/* SSE4.2 Compare Packed Data -- Greater Than. */
Michael Kupersteine45af542015-06-30 13:36:19 +0000469static __inline__ __m128i __DEFAULT_FN_ATTRS
Eric Christopher08f13522010-03-20 07:43:28 +0000470_mm_cmpgt_epi64(__m128i __V1, __m128i __V2)
471{
Craig Toppera89747d2011-12-20 09:55:26 +0000472 return (__m128i)((__v2di)__V1 > (__v2di)__V2);
Eric Christopher08f13522010-03-20 07:43:28 +0000473}
474
475/* SSE4.2 Accumulate CRC32. */
Michael Kupersteine45af542015-06-30 13:36:19 +0000476static __inline__ unsigned int __DEFAULT_FN_ATTRS
Eric Christopher08f13522010-03-20 07:43:28 +0000477_mm_crc32_u8(unsigned int __C, unsigned char __D)
478{
479 return __builtin_ia32_crc32qi(__C, __D);
480}
481
Michael Kupersteine45af542015-06-30 13:36:19 +0000482static __inline__ unsigned int __DEFAULT_FN_ATTRS
Eric Christopher08f13522010-03-20 07:43:28 +0000483_mm_crc32_u16(unsigned int __C, unsigned short __D)
484{
485 return __builtin_ia32_crc32hi(__C, __D);
486}
487
Michael Kupersteine45af542015-06-30 13:36:19 +0000488static __inline__ unsigned int __DEFAULT_FN_ATTRS
Eric Christopher08f13522010-03-20 07:43:28 +0000489_mm_crc32_u32(unsigned int __C, unsigned int __D)
490{
491 return __builtin_ia32_crc32si(__C, __D);
492}
493
494#ifdef __x86_64__
Michael Kupersteine45af542015-06-30 13:36:19 +0000495static __inline__ unsigned long long __DEFAULT_FN_ATTRS
Eric Christopher08f13522010-03-20 07:43:28 +0000496_mm_crc32_u64(unsigned long long __C, unsigned long long __D)
497{
498 return __builtin_ia32_crc32di(__C, __D);
499}
500#endif /* __x86_64__ */
501
Michael Kupersteine45af542015-06-30 13:36:19 +0000502#undef __DEFAULT_FN_ATTRS
Eric Christopher4d1851682015-06-17 07:09:20 +0000503
Craig Topper1de83482011-12-29 16:10:46 +0000504#ifdef __POPCNT__
505#include <popcntintrin.h>
506#endif
Eric Christopher08f13522010-03-20 07:43:28 +0000507
Eric Christopher94567c02010-03-04 02:56:19 +0000508#endif /* _SMMINTRIN_H */