Fix typo in comment
[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 // @nocommit invalidate ccache 20151125 (see #8764509)
21
22 #include <string.h>
23
24 #include <cstddef>
25
26 #ifndef FOLLY_NO_CONFIG
27 #include <folly/folly-config.h>
28 #endif
29
30 #ifdef FOLLY_PLATFORM_CONFIG
31 #include FOLLY_PLATFORM_CONFIG
32 #endif
33
34 #if FOLLY_HAVE_FEATURES_H
35 #include <features.h>
36 #endif
37
38 #include <folly/CPortability.h>
39
40 #ifdef __APPLE__
41 # include <malloc/malloc.h>
42 #endif
43
44 #if FOLLY_HAVE_SCHED_H
45  #include <sched.h>
46  #ifndef FOLLY_HAVE_PTHREAD_YIELD
47   #define pthread_yield sched_yield
48  #endif
49 #endif
50
51 #ifndef FOLLY_HAVE_UNALIGNED_READS
52 #define FOLLY_HAVE_UNALIGNED_READS 0
53 #endif
54
55 // A change in folly/MemoryMapping.cpp uses MAP_ANONYMOUS, which is named
56 // MAP_ANON on OSX/BSD.
57 #if defined(__APPLE__) || defined(__FreeBSD__)
58   #include <sys/mman.h>
59   #ifndef MAP_ANONYMOUS
60     #ifdef MAP_ANON
61       #define MAP_ANONYMOUS MAP_ANON
62     #endif
63   #endif
64 #endif
65
66 // compiler specific attribute translation
67 // msvc should come first, so if clang is in msvc mode it gets the right defines
68
69 #if defined(__clang__) || defined(__GNUC__)
70 # define FOLLY_ALIGNED(size) __attribute__((__aligned__(size)))
71 #elif defined(_MSC_VER)
72 # define FOLLY_ALIGNED(size) __declspec(align(size))
73 #else
74 # error Cannot define FOLLY_ALIGNED on this platform
75 #endif
76 #define FOLLY_ALIGNED_MAX FOLLY_ALIGNED(alignof(std::max_align_t))
77
78 // NOTE: this will only do checking in msvc with versions that support /analyze
79 #if _MSC_VER
80 # ifdef _USE_ATTRIBUTES_FOR_SAL
81 #    undef _USE_ATTRIBUTES_FOR_SAL
82 # endif
83 /* nolint */
84 # define _USE_ATTRIBUTES_FOR_SAL 1
85 # include <sal.h>
86 # define FOLLY_PRINTF_FORMAT _Printf_format_string_
87 # define FOLLY_PRINTF_FORMAT_ATTR(format_param, dots_param) /**/
88 #else
89 # define FOLLY_PRINTF_FORMAT /**/
90 # define FOLLY_PRINTF_FORMAT_ATTR(format_param, dots_param) \
91   __attribute__((__format__(__printf__, format_param, dots_param)))
92 #endif
93
94 // deprecated
95 #if defined(__clang__) || defined(__GNUC__)
96 # define FOLLY_DEPRECATED(msg) __attribute__((__deprecated__(msg)))
97 #elif defined(_MSC_VER)
98 # define FOLLY_DEPRECATED(msg) __declspec(deprecated(msg))
99 #else
100 # define FOLLY_DEPRECATED(msg)
101 #endif
102
103 // noreturn
104 #if defined(_MSC_VER)
105 # define FOLLY_NORETURN __declspec(noreturn)
106 #elif defined(__clang__) || defined(__GNUC__)
107 # define FOLLY_NORETURN __attribute__((__noreturn__))
108 #else
109 # define FOLLY_NORETURN
110 #endif
111
112 // noinline
113 #ifdef _MSC_VER
114 # define FOLLY_NOINLINE __declspec(noinline)
115 #elif defined(__clang__) || defined(__GNUC__)
116 # define FOLLY_NOINLINE __attribute__((__noinline__))
117 #else
118 # define FOLLY_NOINLINE
119 #endif
120
121 // always inline
122 #ifdef _MSC_VER
123 # define FOLLY_ALWAYS_INLINE __forceinline
124 #elif defined(__clang__) || defined(__GNUC__)
125 # define FOLLY_ALWAYS_INLINE inline __attribute__((__always_inline__))
126 #else
127 # define FOLLY_ALWAYS_INLINE inline
128 #endif
129
130 // detection for 64 bit
131 #if defined(__x86_64__) || defined(_M_X64)
132 # define FOLLY_X64 1
133 #else
134 # define FOLLY_X64 0
135 #endif
136
137 #if defined(__aarch64__)
138 # define FOLLY_A64 1
139 #else
140 # define FOLLY_A64 0
141 #endif
142
143 #if defined (__powerpc64__)
144 # define FOLLY_PPC64 1
145 #else
146 # define FOLLY_PPC64 0
147 #endif
148
149 // packing is very ugly in msvc
150 #ifdef _MSC_VER
151 # define FOLLY_PACK_ATTR /**/
152 # define FOLLY_PACK_PUSH __pragma(pack(push, 1))
153 # define FOLLY_PACK_POP __pragma(pack(pop))
154 #elif defined(__clang__) || defined(__GNUC__)
155 # define FOLLY_PACK_ATTR __attribute__((__packed__))
156 # define FOLLY_PACK_PUSH /**/
157 # define FOLLY_PACK_POP /**/
158 #else
159 # define FOLLY_PACK_ATTR /**/
160 # define FOLLY_PACK_PUSH /**/
161 # define FOLLY_PACK_POP /**/
162 #endif
163
164 // portable version check
165 #ifndef __GNUC_PREREQ
166 # if defined __GNUC__ && defined __GNUC_MINOR__
167 /* nolint */
168 #  define __GNUC_PREREQ(maj, min) ((__GNUC__ << 16) + __GNUC_MINOR__ >= \
169                                    ((maj) << 16) + (min))
170 # else
171 /* nolint */
172 #  define __GNUC_PREREQ(maj, min) 0
173 # endif
174 #endif
175
176 #if defined(__GNUC__) && !defined(__APPLE__) && !__GNUC_PREREQ(4,9)
177 // https://gcc.gnu.org/bugzilla/show_bug.cgi?id=56019
178 // gcc 4.8.x incorrectly placed max_align_t in the root namespace
179 // Alias it into std (where it's found in 4.9 and later)
180 namespace std { typedef ::max_align_t max_align_t; }
181 #endif
182
183 // portable version check for clang
184 #ifndef __CLANG_PREREQ
185 # if defined __clang__ && defined __clang_major__ && defined __clang_minor__
186 /* nolint */
187 #  define __CLANG_PREREQ(maj, min) \
188     ((__clang_major__ << 16) + __clang_minor__ >= ((maj) << 16) + (min))
189 # else
190 /* nolint */
191 #  define __CLANG_PREREQ(maj, min) 0
192 # endif
193 #endif
194
195 /* Platform specific TLS support
196  * gcc implements __thread
197  * msvc implements __declspec(thread)
198  * the semantics are the same
199  * (but remember __thread has different semantics when using emutls (ex. apple))
200  */
201 #if defined(_MSC_VER)
202 # define FOLLY_TLS __declspec(thread)
203 #elif defined(__GNUC__) || defined(__clang__)
204 # define FOLLY_TLS __thread
205 #else
206 # error cannot define platform specific thread local storage
207 #endif
208
209 // Define to 1 if you have the `preadv' and `pwritev' functions, respectively
210 #if !defined(FOLLY_HAVE_PREADV) && !defined(FOLLY_HAVE_PWRITEV)
211 # if defined(__GLIBC_PREREQ)
212 #  if __GLIBC_PREREQ(2, 10)
213 #   define FOLLY_HAVE_PREADV 1
214 #   define FOLLY_HAVE_PWRITEV 1
215 #  endif
216 # endif
217 #endif
218
219 // It turns out that GNU libstdc++ and LLVM libc++ differ on how they implement
220 // the 'std' namespace; the latter uses inline namespaces. Wrap this decision
221 // up in a macro to make forward-declarations easier.
222 #if FOLLY_USE_LIBCPP
223 #include <__config>
224 #define FOLLY_NAMESPACE_STD_BEGIN     _LIBCPP_BEGIN_NAMESPACE_STD
225 #define FOLLY_NAMESPACE_STD_END       _LIBCPP_END_NAMESPACE_STD
226 #else
227 #define FOLLY_NAMESPACE_STD_BEGIN     namespace std {
228 #define FOLLY_NAMESPACE_STD_END       }
229 #endif
230
231 // If the new c++ ABI is used, __cxx11 inline namespace needs to be added to
232 // some types, e.g. std::list.
233 #if _GLIBCXX_USE_CXX11_ABI
234 # define FOLLY_GLIBCXX_NAMESPACE_CXX11_BEGIN _GLIBCXX_BEGIN_NAMESPACE_CXX11
235 # define FOLLY_GLIBCXX_NAMESPACE_CXX11_END   _GLIBCXX_END_NAMESPACE_CXX11
236 #else
237 # define FOLLY_GLIBCXX_NAMESPACE_CXX11_BEGIN
238 # define FOLLY_GLIBCXX_NAMESPACE_CXX11_END
239 #endif
240
241 // Some platforms lack clock_gettime(2) and clock_getres(2). Inject our own
242 // versions of these into the global namespace.
243 #if FOLLY_HAVE_CLOCK_GETTIME
244 #include <time.h>
245 #else
246 #include <folly/detail/Clock.h>
247 #endif
248
249 // Provide our own std::__throw_* wrappers for platforms that don't have them
250 #if FOLLY_HAVE_BITS_FUNCTEXCEPT_H
251 #include <bits/functexcept.h>
252 #else
253 #include <folly/detail/FunctionalExcept.h>
254 #endif
255
256 #if defined(__cplusplus)
257 // Unfortunately, boost::has_trivial_copy<T> is broken in libc++ due to its
258 // usage of __has_trivial_copy(), so we can't use it as a
259 // least-common-denominator for C++11 implementations that don't support
260 // std::is_trivially_copyable<T>.
261 //
262 //      http://stackoverflow.com/questions/12754886/has-trivial-copy-behaves-differently-in-clang-and-gcc-whos-right
263 //
264 // As a result, use std::is_trivially_copyable() where it exists, and fall back
265 // to Boost otherwise.
266 #if FOLLY_HAVE_STD__IS_TRIVIALLY_COPYABLE
267 #include <type_traits>
268 #define FOLLY_IS_TRIVIALLY_COPYABLE(T)                   \
269   (std::is_trivially_copyable<T>::value)
270 #else
271 #include <boost/type_traits.hpp>
272 #define FOLLY_IS_TRIVIALLY_COPYABLE(T)                   \
273   (boost::has_trivial_copy<T>::value &&                  \
274    boost::has_trivial_destructor<T>::value)
275 #endif
276 #endif // __cplusplus
277
278 // MSVC specific defines
279 // mainly for posix compat
280 #ifdef _MSC_VER
281
282 // this definition is in a really silly place with a silly name
283 // and ifdefing it every time we want it is painful
284 #include <basetsd.h>
285 typedef SSIZE_T ssize_t;
286
287 // sprintf semantics are not exactly identical
288 // but current usage is not a problem
289 # define snprintf _snprintf
290
291 // semantics here are identical
292 # define strerror_r(errno,buf,len) strerror_s(buf,len,errno)
293
294 // compiler specific to compiler specific
295 // nolint
296 # define __PRETTY_FUNCTION__ __FUNCSIG__
297
298 // Hide a GCC specific thing that breaks MSVC if left alone.
299 # define __extension__
300
301 #ifdef _M_IX86_FP
302 # define FOLLY_SSE _M_IX86_FP
303 # define FOLLY_SSE_MINOR 0
304 #endif
305
306 #endif
307
308 // Endianness
309 namespace folly {
310 #ifdef _MSC_VER
311 // It's MSVC, so we just have to guess ... and allow an override
312 #ifdef FOLLY_ENDIAN_BE
313 constexpr auto kIsLittleEndian = false;
314 #else
315 constexpr auto kIsLittleEndian = true;
316 #endif
317 #else
318 constexpr auto kIsLittleEndian = __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__;
319 #endif
320 constexpr auto kIsBigEndian = !kIsLittleEndian;
321 }
322
323 #ifndef FOLLY_SSE
324 # if defined(__SSE4_2__)
325 #  define FOLLY_SSE 4
326 #  define FOLLY_SSE_MINOR 2
327 # elif defined(__SSE4_1__)
328 #  define FOLLY_SSE 4
329 #  define FOLLY_SSE_MINOR 1
330 # elif defined(__SSE4__)
331 #  define FOLLY_SSE 4
332 #  define FOLLY_SSE_MINOR 0
333 # elif defined(__SSE3__)
334 #  define FOLLY_SSE 3
335 #  define FOLLY_SSE_MINOR 0
336 # elif defined(__SSE2__)
337 #  define FOLLY_SSE 2
338 #  define FOLLY_SSE_MINOR 0
339 # elif defined(__SSE__)
340 #  define FOLLY_SSE 1
341 #  define FOLLY_SSE_MINOR 0
342 # else
343 #  define FOLLY_SSE 0
344 #  define FOLLY_SSE_MINOR 0
345 # endif
346 #endif
347
348 #define FOLLY_SSE_PREREQ(major, minor) \
349   (FOLLY_SSE > major || FOLLY_SSE == major && FOLLY_SSE_MINOR >= minor)
350
351 #if FOLLY_UNUSUAL_GFLAGS_NAMESPACE
352 namespace FOLLY_GFLAGS_NAMESPACE { }
353 namespace gflags {
354 using namespace FOLLY_GFLAGS_NAMESPACE;
355 }  // namespace gflags
356 #endif
357
358 // for TARGET_OS_IPHONE
359 #ifdef __APPLE__
360 #include <TargetConditionals.h>
361 #endif
362
363 // MacOS doesn't have malloc_usable_size()
364 #if defined(__APPLE__) && !defined(FOLLY_HAVE_MALLOC_USABLE_SIZE)
365 inline size_t malloc_usable_size(void* ptr) {
366   return malloc_size(ptr);
367 }
368 #endif
369
370 // RTTI may not be enabled for this compilation unit.
371 #if defined(__GXX_RTTI) || defined(__cpp_rtti) || \
372     (defined(_MSC_VER) && defined(_CPPRTTI))
373 # define FOLLY_HAS_RTTI 1
374 #endif
375
376 #ifdef _MSC_VER
377 # include <intrin.h>
378 #endif
379
380 namespace folly {
381
382 inline void asm_volatile_memory() {
383 #if defined(__clang__) || defined(__GNUC__)
384   asm volatile("" : : : "memory");
385 #elif defined(_MSC_VER)
386   ::_ReadWriteBarrier();
387 #endif
388 }
389
390 inline void asm_volatile_pause() {
391 #if defined(_MSC_VER) && (defined(_M_IX86) || defined(_M_X64))
392   ::_mm_pause();
393 #elif defined(__i386__) || FOLLY_X64
394   asm volatile ("pause");
395 #elif FOLLY_A64
396   asm volatile ("wfe");
397 #elif FOLLY_PPC64
398   asm volatile("or 27,27,27");
399 #endif
400 }
401 inline void asm_pause() {
402 #if defined(_MSC_VER) && (defined(_M_IX86) || defined(_M_X64))
403   ::_mm_pause();
404 #elif defined(__i386__) || FOLLY_X64
405   asm ("pause");
406 #elif FOLLY_A64
407   asm ("wfe");
408 #elif FOLLY_PPC64
409   asm ("or 31,31,31");
410 #endif
411 }
412
413 constexpr size_t constexpr_strlen(const char* s) {
414 #if defined(__clang__)
415   return __builtin_strlen(s);
416 #else
417   return strlen(s);
418 #endif
419 }
420
421 #if defined(__APPLE__) || defined(_MSC_VER)
422 #define MAX_STATIC_CONSTRUCTOR_PRIORITY
423 #else
424 // 101 is the highest priority allowed by the init_priority attribute.
425 // This priority is already used by JEMalloc and other memory allocators so
426 // we will take the next one.
427 #define MAX_STATIC_CONSTRUCTOR_PRIORITY __attribute__ ((__init_priority__(102)))
428 #endif
429
430 } // namespace folly
431 #endif // FOLLY_PORTABILITY_H_