* i386.h (TARGET_MISALIGNED_MOVE_STRING_PROLOGUES_EPILOGUES): New tuning flag.
[official-gcc.git] / gcc / config / i386 / immintrin.h
blobe825c34a2566b444fcb672b1fb85bf43801055c1
1 /* Copyright (C) 2008-2013 Free Software Foundation, Inc.
3 This file is part of GCC.
5 GCC is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 3, or (at your option)
8 any later version.
10 GCC is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 Under Section 7 of GPL version 3, you are granted additional
16 permissions described in the GCC Runtime Library Exception, version
17 3.1, as published by the Free Software Foundation.
19 You should have received a copy of the GNU General Public License and
20 a copy of the GCC Runtime Library Exception along with this program;
21 see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
22 <http://www.gnu.org/licenses/>. */
24 #ifndef _IMMINTRIN_H_INCLUDED
25 #define _IMMINTRIN_H_INCLUDED
27 #include <mmintrin.h>
29 #include <xmmintrin.h>
31 #include <emmintrin.h>
33 #include <pmmintrin.h>
35 #include <tmmintrin.h>
37 #include <smmintrin.h>
39 #include <wmmintrin.h>
41 #include <avxintrin.h>
43 #include <avx2intrin.h>
45 #include <lzcntintrin.h>
47 #include <bmiintrin.h>
49 #include <bmi2intrin.h>
51 #include <fmaintrin.h>
53 #include <f16cintrin.h>
55 #include <rtmintrin.h>
57 #include <xtestintrin.h>
59 #ifndef __RDRND__
60 #pragma GCC push_options
61 #pragma GCC target("rdrnd")
62 #define __DISABLE_RDRND__
63 #endif /* __RDRND__ */
64 extern __inline int
65 __attribute__((__gnu_inline__, __always_inline__, __artificial__))
66 _rdrand16_step (unsigned short *__P)
68 return __builtin_ia32_rdrand16_step (__P);
71 extern __inline int
72 __attribute__((__gnu_inline__, __always_inline__, __artificial__))
73 _rdrand32_step (unsigned int *__P)
75 return __builtin_ia32_rdrand32_step (__P);
77 #ifdef __DISABLE_RDRND__
78 #undef __DISABLE_RDRND__
79 #pragma GCC pop_options
80 #endif /* __DISABLE_RDRND__ */
82 #ifdef __x86_64__
84 #ifndef __FSGSBASE__
85 #pragma GCC push_options
86 #pragma GCC target("fsgsbase")
87 #define __DISABLE_FSGSBASE__
88 #endif /* __FSGSBASE__ */
89 extern __inline unsigned int
90 __attribute__((__gnu_inline__, __always_inline__, __artificial__))
91 _readfsbase_u32 (void)
93 return __builtin_ia32_rdfsbase32 ();
96 extern __inline unsigned long long
97 __attribute__((__gnu_inline__, __always_inline__, __artificial__))
98 _readfsbase_u64 (void)
100 return __builtin_ia32_rdfsbase64 ();
103 extern __inline unsigned int
104 __attribute__((__gnu_inline__, __always_inline__, __artificial__))
105 _readgsbase_u32 (void)
107 return __builtin_ia32_rdgsbase32 ();
110 extern __inline unsigned long long
111 __attribute__((__gnu_inline__, __always_inline__, __artificial__))
112 _readgsbase_u64 (void)
114 return __builtin_ia32_rdgsbase64 ();
117 extern __inline void
118 __attribute__((__gnu_inline__, __always_inline__, __artificial__))
119 _writefsbase_u32 (unsigned int __B)
121 __builtin_ia32_wrfsbase32 (__B);
124 extern __inline void
125 __attribute__((__gnu_inline__, __always_inline__, __artificial__))
126 _writefsbase_u64 (unsigned long long __B)
128 __builtin_ia32_wrfsbase64 (__B);
131 extern __inline void
132 __attribute__((__gnu_inline__, __always_inline__, __artificial__))
133 _writegsbase_u32 (unsigned int __B)
135 __builtin_ia32_wrgsbase32 (__B);
138 extern __inline void
139 __attribute__((__gnu_inline__, __always_inline__, __artificial__))
140 _writegsbase_u64 (unsigned long long __B)
142 __builtin_ia32_wrgsbase64 (__B);
144 #ifdef __DISABLE_FSGSBASE__
145 #undef __DISABLE_FSGSBASE__
146 #pragma GCC pop_options
147 #endif /* __DISABLE_FSGSBASE__ */
149 #ifndef __RDRND__
150 #pragma GCC push_options
151 #pragma GCC target("rdrnd")
152 #define __DISABLE_RDRND__
153 #endif /* __RDRND__ */
154 extern __inline int
155 __attribute__((__gnu_inline__, __always_inline__, __artificial__))
156 _rdrand64_step (unsigned long long *__P)
158 return __builtin_ia32_rdrand64_step (__P);
160 #ifdef __DISABLE_RDRND__
161 #undef __DISABLE_RDRND__
162 #pragma GCC pop_options
163 #endif /* __DISABLE_RDRND__ */
165 #endif /* __x86_64__ */
167 #endif /* _IMMINTRIN_H_INCLUDED */