Fix Build: folly/Range.h for build platforms missing SSE42 headers
[folly.git] / folly / Portability.h
1 /*
2  * Copyright 2015 Facebook, Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *   http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #ifndef FOLLY_PORTABILITY_H_
18 #define FOLLY_PORTABILITY_H_
19
20 #include <cstddef>
21
22 #ifndef FOLLY_NO_CONFIG
23 #include <folly/folly-config.h>
24 #endif
25
26 #ifdef FOLLY_PLATFORM_CONFIG
27 #include FOLLY_PLATFORM_CONFIG
28 #endif
29
30 #if FOLLY_HAVE_FEATURES_H
31 #include <features.h>
32 #endif
33
34 #include <folly/CPortability.h>
35
36 #ifdef __APPLE__
37 # include <malloc/malloc.h>
38 #endif
39
40 #if FOLLY_HAVE_SCHED_H
41  #include <sched.h>
42  #ifndef FOLLY_HAVE_PTHREAD_YIELD
43   #define pthread_yield sched_yield
44  #endif
45 #endif
46
47 // A change in folly/MemoryMapping.cpp uses MAP_ANONYMOUS, which is named
48 // MAP_ANON on OSX/BSD.
49 #if defined(__APPLE__) || defined(__FreeBSD__)
50   #include <sys/mman.h>
51   #ifndef MAP_ANONYMOUS
52     #ifdef MAP_ANON
53       #define MAP_ANONYMOUS MAP_ANON
54     #endif
55   #endif
56 #endif
57
58 // compiler specific attribute translation
59 // msvc should come first, so if clang is in msvc mode it gets the right defines
60
61 #if defined(__clang__) || defined(__GNUC__)
62 # define FOLLY_ALIGNED(size) __attribute__((__aligned__(size)))
63 #elif defined(_MSC_VER)
64 # define FOLLY_ALIGNED(size) __declspec(align(size))
65 #else
66 # error Cannot define FOLLY_ALIGNED on this platform
67 #endif
68 #define FOLLY_ALIGNED_MAX FOLLY_ALIGNED(alignof(std::max_align_t))
69
70 // NOTE: this will only do checking in msvc with versions that support /analyze
71 #if _MSC_VER
72 # ifdef _USE_ATTRIBUTES_FOR_SAL
73 #    undef _USE_ATTRIBUTES_FOR_SAL
74 # endif
75 /* nolint */
76 # define _USE_ATTRIBUTES_FOR_SAL 1
77 # include <sal.h>
78 # define FOLLY_PRINTF_FORMAT _Printf_format_string_
79 # define FOLLY_PRINTF_FORMAT_ATTR(format_param, dots_param) /**/
80 #else
81 # define FOLLY_PRINTF_FORMAT /**/
82 # define FOLLY_PRINTF_FORMAT_ATTR(format_param, dots_param) \
83   __attribute__((__format__(__printf__, format_param, dots_param)))
84 #endif
85
86 // deprecated
87 #if defined(__clang__) || defined(__GNUC__)
88 # define FOLLY_DEPRECATED(msg) __attribute__((__deprecated__(msg)))
89 #elif defined(_MSC_VER)
90 # define FOLLY_DEPRECATED(msg) __declspec(deprecated(msg))
91 #else
92 # define FOLLY_DEPRECATED(msg)
93 #endif
94
95 // noreturn
96 #if defined(_MSC_VER)
97 # define FOLLY_NORETURN __declspec(noreturn)
98 #elif defined(__clang__) || defined(__GNUC__)
99 # define FOLLY_NORETURN __attribute__((__noreturn__))
100 #else
101 # define FOLLY_NORETURN
102 #endif
103
104 // noinline
105 #ifdef _MSC_VER
106 # define FOLLY_NOINLINE __declspec(noinline)
107 #elif defined(__clang__) || defined(__GNUC__)
108 # define FOLLY_NOINLINE __attribute__((__noinline__))
109 #else
110 # define FOLLY_NOINLINE
111 #endif
112
113 // always inline
114 #ifdef _MSC_VER
115 # define FOLLY_ALWAYS_INLINE __forceinline
116 #elif defined(__clang__) || defined(__GNUC__)
117 # define FOLLY_ALWAYS_INLINE inline __attribute__((__always_inline__))
118 #else
119 # define FOLLY_ALWAYS_INLINE inline
120 #endif
121
122 // detection for 64 bit
123 #if defined(__x86_64__) || defined(_M_X64)
124 # define FOLLY_X64 1
125 #else
126 # define FOLLY_X64 0
127 #endif
128
129 #if defined(__aarch64__)
130 # define FOLLY_A64 1
131 #else
132 # define FOLLY_A64 0
133 #endif
134
135 #if defined (__powerpc64__)
136 # define FOLLY_PPC64 1
137 #else
138 # define FOLLY_PPC64 0
139 #endif
140
141 // packing is very ugly in msvc
142 #ifdef _MSC_VER
143 # define FOLLY_PACK_ATTR /**/
144 # define FOLLY_PACK_PUSH __pragma(pack(push, 1))
145 # define FOLLY_PACK_POP __pragma(pack(pop))
146 #elif defined(__clang__) || defined(__GNUC__)
147 # define FOLLY_PACK_ATTR __attribute__((__packed__))
148 # define FOLLY_PACK_PUSH /**/
149 # define FOLLY_PACK_POP /**/
150 #else
151 # define FOLLY_PACK_ATTR /**/
152 # define FOLLY_PACK_PUSH /**/
153 # define FOLLY_PACK_POP /**/
154 #endif
155
156 // portable version check
157 #ifndef __GNUC_PREREQ
158 # if defined __GNUC__ && defined __GNUC_MINOR__
159 /* nolint */
160 #  define __GNUC_PREREQ(maj, min) ((__GNUC__ << 16) + __GNUC_MINOR__ >= \
161                                    ((maj) << 16) + (min))
162 # else
163 /* nolint */
164 #  define __GNUC_PREREQ(maj, min) 0
165 # endif
166 #endif
167
168 #if defined(__GNUC__) && !defined(__APPLE__) && !__GNUC_PREREQ(4,9)
169 // https://gcc.gnu.org/bugzilla/show_bug.cgi?id=56019
170 // gcc 4.8.x incorrectly placed max_align_t in the root namespace
171 // Alias it into std (where it's found in 4.9 and later)
172 namespace std { typedef ::max_align_t max_align_t; }
173 #endif
174
175 /* Platform specific TLS support
176  * gcc implements __thread
177  * msvc implements __declspec(thread)
178  * the semantics are the same
179  * (but remember __thread has different semantics when using emutls (ex. apple))
180  */
181 #if defined(_MSC_VER)
182 # define FOLLY_TLS __declspec(thread)
183 #elif defined(__GNUC__) || defined(__clang__)
184 # define FOLLY_TLS __thread
185 #else
186 # error cannot define platform specific thread local storage
187 #endif
188
189 // Define to 1 if you have the `preadv' and `pwritev' functions, respectively
190 #if !defined(FOLLY_HAVE_PREADV) && !defined(FOLLY_HAVE_PWRITEV)
191 # if defined(__GLIBC_PREREQ)
192 #  if __GLIBC_PREREQ(2, 10)
193 #   define FOLLY_HAVE_PREADV 1
194 #   define FOLLY_HAVE_PWRITEV 1
195 #  endif
196 # endif
197 #endif
198
199 // It turns out that GNU libstdc++ and LLVM libc++ differ on how they implement
200 // the 'std' namespace; the latter uses inline namepsaces. Wrap this decision
201 // up in a macro to make forward-declarations easier.
202 #if FOLLY_USE_LIBCPP
203 #include <__config>
204 #define FOLLY_NAMESPACE_STD_BEGIN     _LIBCPP_BEGIN_NAMESPACE_STD
205 #define FOLLY_NAMESPACE_STD_END       _LIBCPP_END_NAMESPACE_STD
206 #else
207 #define FOLLY_NAMESPACE_STD_BEGIN     namespace std {
208 #define FOLLY_NAMESPACE_STD_END       }
209 #endif
210
211 // Some platforms lack clock_gettime(2) and clock_getres(2). Inject our own
212 // versions of these into the global namespace.
213 #if FOLLY_HAVE_CLOCK_GETTIME
214 #include <time.h>
215 #else
216 #include <folly/detail/Clock.h>
217 #endif
218
219 // Provide our own std::__throw_* wrappers for platforms that don't have them
220 #if FOLLY_HAVE_BITS_FUNCTEXCEPT_H
221 #include <bits/functexcept.h>
222 #else
223 #include <folly/detail/FunctionalExcept.h>
224 #endif
225
226 #if defined(__cplusplus)
227 // Unfortunately, boost::has_trivial_copy<T> is broken in libc++ due to its
228 // usage of __has_trivial_copy(), so we can't use it as a
229 // least-common-denominator for C++11 implementations that don't support
230 // std::is_trivially_copyable<T>.
231 //
232 //      http://stackoverflow.com/questions/12754886/has-trivial-copy-behaves-differently-in-clang-and-gcc-whos-right
233 //
234 // As a result, use std::is_trivially_copyable() where it exists, and fall back
235 // to Boost otherwise.
236 #if FOLLY_HAVE_STD__IS_TRIVIALLY_COPYABLE
237 #include <type_traits>
238 #define FOLLY_IS_TRIVIALLY_COPYABLE(T)                   \
239   (std::is_trivially_copyable<T>::value)
240 #else
241 #include <boost/type_traits.hpp>
242 #define FOLLY_IS_TRIVIALLY_COPYABLE(T)                   \
243   (boost::has_trivial_copy<T>::value &&                  \
244    boost::has_trivial_destructor<T>::value)
245 #endif
246 #endif // __cplusplus
247
248 // MSVC specific defines
249 // mainly for posix compat
250 #ifdef _MSC_VER
251
252 // this definition is in a really silly place with a silly name
253 // and ifdefing it every time we want it is painful
254 #include <basetsd.h>
255 typedef SSIZE_T ssize_t;
256
257 // sprintf semantics are not exactly identical
258 // but current usage is not a problem
259 # define snprintf _snprintf
260
261 // semantics here are identical
262 # define strerror_r(errno,buf,len) strerror_s(buf,len,errno)
263
264 // compiler specific to compiler specific
265 // nolint
266 # define __PRETTY_FUNCTION__ __FUNCSIG__
267
268 // Hide a GCC specific thing that breaks MSVC if left alone.
269 # define __extension__
270
271 #ifdef _M_IX86_FP
272 # define FOLLY_SSE _M_IX86_FP
273 # define FOLLY_SSE_MINOR 0
274 #endif
275
276 #endif
277
278 #ifndef FOLLY_SSE
279 # if defined(__SSE4_2__)
280 #  define FOLLY_SSE 4
281 #  define FOLLY_SSE_MINOR 2
282 # elif defined(__SSE4_1__)
283 #  define FOLLY_SSE 4
284 #  define FOLLY_SSE_MINOR 1
285 # elif defined(__SSE4__)
286 #  define FOLLY_SSE 4
287 #  define FOLLY_SSE_MINOR 0
288 # elif defined(__SSE3__)
289 #  define FOLLY_SSE 3
290 #  define FOLLY_SSE_MINOR 0
291 # elif defined(__SSE2__)
292 #  define FOLLY_SSE 2
293 #  define FOLLY_SSE_MINOR 0
294 # elif defined(__SSE__)
295 #  define FOLLY_SSE 1
296 #  define FOLLY_SSE_MINOR 0
297 # else
298 #  define FOLLY_SSE 0
299 #  define FOLLY_SSE_MINOR 0
300 # endif
301 #endif
302
303 #define FOLLY_SSE_PREREQ(major, minor) \
304   (FOLLY_SSE > major || FOLLY_SSE == major && FOLLY_SSE_MINOR >= minor)
305
306 #if FOLLY_UNUSUAL_GFLAGS_NAMESPACE
307 namespace FOLLY_GFLAGS_NAMESPACE { }
308 namespace gflags {
309 using namespace FOLLY_GFLAGS_NAMESPACE;
310 }  // namespace gflags
311 #endif
312
313 // for TARGET_OS_IPHONE
314 #ifdef __APPLE__
315 #include <TargetConditionals.h>
316 #endif
317
318 // MacOS doesn't have malloc_usable_size()
319 #if defined(__APPLE__) && !defined(FOLLY_HAVE_MALLOC_USABLE_SIZE)
320 inline size_t malloc_usable_size(void* ptr) {
321   return malloc_size(ptr);
322 }
323 #endif
324
325 // RTTI may not be enabled for this compilation unit.
326 #if defined(__GXX_RTTI) || defined(__cpp_rtti) || \
327     (defined(_MSC_VER) && defined(_CPPRTTI))
328 # define FOLLY_HAS_RTTI 1
329 #endif
330
331 #ifdef _MSC_VER
332 # include <intrin.h>
333 #endif
334
335 namespace folly {
336
337 inline void asm_volatile_memory() {
338 #if defined(__clang__) || defined(__GNUC__)
339   asm volatile("" : : : "memory");
340 #elif defined(_MSC_VER)
341   ::_ReadWriteBarrier();
342 #endif
343 }
344
345 inline void asm_volatile_pause() {
346 #if defined(_MSC_VER) && (defined(_M_IX86) || defined(_M_X64))
347   ::_mm_pause();
348 #elif defined(__i386__) || FOLLY_X64
349   asm volatile ("pause");
350 #elif FOLLY_A64
351   asm volatile ("wfe");
352 #elif FOLLY_PPC64
353   asm volatile("or 27,27,27");
354 #endif
355 }
356 inline void asm_pause() {
357 #if defined(_MSC_VER) && (defined(_M_IX86) || defined(_M_X64))
358   ::_mm_pause();
359 #elif defined(__i386__) || FOLLY_X64
360   asm ("pause");
361 #elif FOLLY_A64
362   asm ("wfe");
363 #elif FOLLY_PPC64
364   asm ("or 31,31,31");
365 #endif
366 }
367
368 }
369
370 #endif // FOLLY_PORTABILITY_H_