| Anders Carlsson | d0d8c54 | 2009-02-11 06:39:50 +0000 | [diff] [blame] | 1 | /*===---- pmmintrin.h - SSE3 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 | */ |
| 23 | |
| 24 | #ifndef __PMMINTRIN_H |
| 25 | #define __PMMINTRIN_H |
| 26 | |
| Anders Carlsson | d0d8c54 | 2009-02-11 06:39:50 +0000 | [diff] [blame] | 27 | #include <emmintrin.h> |
| 28 | |
| Eric Christopher | 4d185168 | 2015-06-17 07:09:20 +0000 | [diff] [blame] | 29 | /* Define the default attributes for the functions in this file. */ |
| Eric Christopher | 9fc7fb2 | 2015-06-17 07:09:32 +0000 | [diff] [blame] | 30 | #define DEFAULT_FN_ATTRS __attribute__((__always_inline__, __nodebug__, __target__("sse3"))) |
| Eric Christopher | 4d185168 | 2015-06-17 07:09:20 +0000 | [diff] [blame] | 31 | |
| 32 | static __inline__ __m128i DEFAULT_FN_ATTRS |
| David Blaikie | 3302f2b | 2013-01-16 23:08:36 +0000 | [diff] [blame] | 33 | _mm_lddqu_si128(__m128i const *__p) |
| Anders Carlsson | d0d8c54 | 2009-02-11 06:39:50 +0000 | [diff] [blame] | 34 | { |
| David Blaikie | 3302f2b | 2013-01-16 23:08:36 +0000 | [diff] [blame] | 35 | return (__m128i)__builtin_ia32_lddqu((char const *)__p); |
| Anders Carlsson | d0d8c54 | 2009-02-11 06:39:50 +0000 | [diff] [blame] | 36 | } |
| 37 | |
| Eric Christopher | 4d185168 | 2015-06-17 07:09:20 +0000 | [diff] [blame] | 38 | static __inline__ __m128 DEFAULT_FN_ATTRS |
| David Blaikie | 3302f2b | 2013-01-16 23:08:36 +0000 | [diff] [blame] | 39 | _mm_addsub_ps(__m128 __a, __m128 __b) |
| Anders Carlsson | d0d8c54 | 2009-02-11 06:39:50 +0000 | [diff] [blame] | 40 | { |
| David Blaikie | 3302f2b | 2013-01-16 23:08:36 +0000 | [diff] [blame] | 41 | return __builtin_ia32_addsubps(__a, __b); |
| Anders Carlsson | d0d8c54 | 2009-02-11 06:39:50 +0000 | [diff] [blame] | 42 | } |
| 43 | |
| Eric Christopher | 4d185168 | 2015-06-17 07:09:20 +0000 | [diff] [blame] | 44 | static __inline__ __m128 DEFAULT_FN_ATTRS |
| David Blaikie | 3302f2b | 2013-01-16 23:08:36 +0000 | [diff] [blame] | 45 | _mm_hadd_ps(__m128 __a, __m128 __b) |
| Anders Carlsson | d0d8c54 | 2009-02-11 06:39:50 +0000 | [diff] [blame] | 46 | { |
| David Blaikie | 3302f2b | 2013-01-16 23:08:36 +0000 | [diff] [blame] | 47 | return __builtin_ia32_haddps(__a, __b); |
| Anders Carlsson | d0d8c54 | 2009-02-11 06:39:50 +0000 | [diff] [blame] | 48 | } |
| 49 | |
| Eric Christopher | 4d185168 | 2015-06-17 07:09:20 +0000 | [diff] [blame] | 50 | static __inline__ __m128 DEFAULT_FN_ATTRS |
| David Blaikie | 3302f2b | 2013-01-16 23:08:36 +0000 | [diff] [blame] | 51 | _mm_hsub_ps(__m128 __a, __m128 __b) |
| Anders Carlsson | d0d8c54 | 2009-02-11 06:39:50 +0000 | [diff] [blame] | 52 | { |
| David Blaikie | 3302f2b | 2013-01-16 23:08:36 +0000 | [diff] [blame] | 53 | return __builtin_ia32_hsubps(__a, __b); |
| Anders Carlsson | d0d8c54 | 2009-02-11 06:39:50 +0000 | [diff] [blame] | 54 | } |
| 55 | |
| Eric Christopher | 4d185168 | 2015-06-17 07:09:20 +0000 | [diff] [blame] | 56 | static __inline__ __m128 DEFAULT_FN_ATTRS |
| David Blaikie | 3302f2b | 2013-01-16 23:08:36 +0000 | [diff] [blame] | 57 | _mm_movehdup_ps(__m128 __a) |
| Anders Carlsson | d0d8c54 | 2009-02-11 06:39:50 +0000 | [diff] [blame] | 58 | { |
| David Blaikie | 3302f2b | 2013-01-16 23:08:36 +0000 | [diff] [blame] | 59 | return __builtin_shufflevector(__a, __a, 1, 1, 3, 3); |
| Anders Carlsson | d0d8c54 | 2009-02-11 06:39:50 +0000 | [diff] [blame] | 60 | } |
| 61 | |
| Eric Christopher | 4d185168 | 2015-06-17 07:09:20 +0000 | [diff] [blame] | 62 | static __inline__ __m128 DEFAULT_FN_ATTRS |
| David Blaikie | 3302f2b | 2013-01-16 23:08:36 +0000 | [diff] [blame] | 63 | _mm_moveldup_ps(__m128 __a) |
| Anders Carlsson | d0d8c54 | 2009-02-11 06:39:50 +0000 | [diff] [blame] | 64 | { |
| David Blaikie | 3302f2b | 2013-01-16 23:08:36 +0000 | [diff] [blame] | 65 | return __builtin_shufflevector(__a, __a, 0, 0, 2, 2); |
| Anders Carlsson | d0d8c54 | 2009-02-11 06:39:50 +0000 | [diff] [blame] | 66 | } |
| 67 | |
| Eric Christopher | 4d185168 | 2015-06-17 07:09:20 +0000 | [diff] [blame] | 68 | static __inline__ __m128d DEFAULT_FN_ATTRS |
| David Blaikie | 3302f2b | 2013-01-16 23:08:36 +0000 | [diff] [blame] | 69 | _mm_addsub_pd(__m128d __a, __m128d __b) |
| Anders Carlsson | d0d8c54 | 2009-02-11 06:39:50 +0000 | [diff] [blame] | 70 | { |
| David Blaikie | 3302f2b | 2013-01-16 23:08:36 +0000 | [diff] [blame] | 71 | return __builtin_ia32_addsubpd(__a, __b); |
| Anders Carlsson | d0d8c54 | 2009-02-11 06:39:50 +0000 | [diff] [blame] | 72 | } |
| 73 | |
| Eric Christopher | 4d185168 | 2015-06-17 07:09:20 +0000 | [diff] [blame] | 74 | static __inline__ __m128d DEFAULT_FN_ATTRS |
| David Blaikie | 3302f2b | 2013-01-16 23:08:36 +0000 | [diff] [blame] | 75 | _mm_hadd_pd(__m128d __a, __m128d __b) |
| Anders Carlsson | d0d8c54 | 2009-02-11 06:39:50 +0000 | [diff] [blame] | 76 | { |
| David Blaikie | 3302f2b | 2013-01-16 23:08:36 +0000 | [diff] [blame] | 77 | return __builtin_ia32_haddpd(__a, __b); |
| Anders Carlsson | d0d8c54 | 2009-02-11 06:39:50 +0000 | [diff] [blame] | 78 | } |
| 79 | |
| Eric Christopher | 4d185168 | 2015-06-17 07:09:20 +0000 | [diff] [blame] | 80 | static __inline__ __m128d DEFAULT_FN_ATTRS |
| David Blaikie | 3302f2b | 2013-01-16 23:08:36 +0000 | [diff] [blame] | 81 | _mm_hsub_pd(__m128d __a, __m128d __b) |
| Anders Carlsson | d0d8c54 | 2009-02-11 06:39:50 +0000 | [diff] [blame] | 82 | { |
| David Blaikie | 3302f2b | 2013-01-16 23:08:36 +0000 | [diff] [blame] | 83 | return __builtin_ia32_hsubpd(__a, __b); |
| Anders Carlsson | d0d8c54 | 2009-02-11 06:39:50 +0000 | [diff] [blame] | 84 | } |
| 85 | |
| Eli Friedman | 9bb51ad | 2011-09-15 23:15:27 +0000 | [diff] [blame] | 86 | #define _mm_loaddup_pd(dp) _mm_load1_pd(dp) |
| Anders Carlsson | d0d8c54 | 2009-02-11 06:39:50 +0000 | [diff] [blame] | 87 | |
| Eric Christopher | 4d185168 | 2015-06-17 07:09:20 +0000 | [diff] [blame] | 88 | static __inline__ __m128d DEFAULT_FN_ATTRS |
| David Blaikie | 3302f2b | 2013-01-16 23:08:36 +0000 | [diff] [blame] | 89 | _mm_movedup_pd(__m128d __a) |
| Anders Carlsson | d0d8c54 | 2009-02-11 06:39:50 +0000 | [diff] [blame] | 90 | { |
| David Blaikie | 3302f2b | 2013-01-16 23:08:36 +0000 | [diff] [blame] | 91 | return __builtin_shufflevector(__a, __a, 0, 0); |
| Anders Carlsson | d0d8c54 | 2009-02-11 06:39:50 +0000 | [diff] [blame] | 92 | } |
| 93 | |
| 94 | #define _MM_DENORMALS_ZERO_ON (0x0040) |
| 95 | #define _MM_DENORMALS_ZERO_OFF (0x0000) |
| 96 | |
| 97 | #define _MM_DENORMALS_ZERO_MASK (0x0040) |
| 98 | |
| 99 | #define _MM_GET_DENORMALS_ZERO_MODE() (_mm_getcsr() & _MM_DENORMALS_ZERO_MASK) |
| 100 | #define _MM_SET_DENORMALS_ZERO_MODE(x) (_mm_setcsr((_mm_getcsr() & ~_MM_DENORMALS_ZERO_MASK) | (x))) |
| 101 | |
| Eric Christopher | 4d185168 | 2015-06-17 07:09:20 +0000 | [diff] [blame] | 102 | static __inline__ void DEFAULT_FN_ATTRS |
| David Blaikie | 3302f2b | 2013-01-16 23:08:36 +0000 | [diff] [blame] | 103 | _mm_monitor(void const *__p, unsigned __extensions, unsigned __hints) |
| Anders Carlsson | d0d8c54 | 2009-02-11 06:39:50 +0000 | [diff] [blame] | 104 | { |
| David Blaikie | 3302f2b | 2013-01-16 23:08:36 +0000 | [diff] [blame] | 105 | __builtin_ia32_monitor((void *)__p, __extensions, __hints); |
| Anders Carlsson | d0d8c54 | 2009-02-11 06:39:50 +0000 | [diff] [blame] | 106 | } |
| 107 | |
| Eric Christopher | 4d185168 | 2015-06-17 07:09:20 +0000 | [diff] [blame] | 108 | static __inline__ void DEFAULT_FN_ATTRS |
| David Blaikie | 3302f2b | 2013-01-16 23:08:36 +0000 | [diff] [blame] | 109 | _mm_mwait(unsigned __extensions, unsigned __hints) |
| Anders Carlsson | d0d8c54 | 2009-02-11 06:39:50 +0000 | [diff] [blame] | 110 | { |
| David Blaikie | 3302f2b | 2013-01-16 23:08:36 +0000 | [diff] [blame] | 111 | __builtin_ia32_mwait(__extensions, __hints); |
| Anders Carlsson | d0d8c54 | 2009-02-11 06:39:50 +0000 | [diff] [blame] | 112 | } |
| 113 | |
| Eric Christopher | 4d185168 | 2015-06-17 07:09:20 +0000 | [diff] [blame] | 114 | #undef DEFAULT_FN_ATTRS |
| 115 | |
| Anders Carlsson | d0d8c54 | 2009-02-11 06:39:50 +0000 | [diff] [blame] | 116 | #endif /* __PMMINTRIN_H */ |