Harden failure signal handler in the face of memory corruptions
[folly.git] / folly / Portability.h
1 /*
2  * Copyright 2014 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 #ifndef FOLLY_NO_CONFIG
21 #include "folly-config.h"
22 #endif
23
24 #if FOLLY_HAVE_FEATURES_H
25 #include <features.h>
26 #endif
27
28 #include "CPortability.h"
29
30 #if FOLLY_HAVE_SCHED_H
31  #include <sched.h>
32  #ifndef FOLLY_HAVE_PTHREAD_YIELD
33   #define pthread_yield sched_yield
34  #endif
35 #endif
36
37
38 // MaxAlign: max_align_t isn't supported by gcc
39 #ifdef __GNUC__
40 struct MaxAlign { char c; } __attribute__((aligned));
41 #else /* !__GNUC__ */
42 # error Cannot define MaxAlign on this platform
43 #endif
44
45
46 // noreturn
47 #if defined(__clang__) || defined(__GNUC__)
48 # define FOLLY_NORETURN __attribute__((noreturn))
49 #else
50 # define FOLLY_NORETURN
51 #endif
52
53
54 // portable version check
55 #ifndef __GNUC_PREREQ
56 # if defined __GNUC__ && defined __GNUC_MINOR__
57 #  define __GNUC_PREREQ(maj, min) ((__GNUC__ << 16) + __GNUC_MINOR__ >= \
58                                    ((maj) << 16) + (min))
59 # else
60 #  define __GNUC_PREREQ(maj, min) 0
61 # endif
62 #endif
63
64
65 /* Define macro wrappers for C++11's "final" and "override" keywords, which
66  * are supported in gcc 4.7 but not gcc 4.6. */
67 #if !defined(FOLLY_FINAL) && !defined(FOLLY_OVERRIDE)
68 # if defined(__clang__) || __GNUC_PREREQ(4, 7)
69 #  define FOLLY_FINAL final
70 #  define FOLLY_OVERRIDE override
71 # else
72 #  define FOLLY_FINAL /**/
73 #  define FOLLY_OVERRIDE /**/
74 # endif
75 #endif
76
77
78 // Define to 1 if you have the `preadv' and `pwritev' functions, respectively
79 #if !defined(FOLLY_HAVE_PREADV) && !defined(FOLLY_HAVE_PWRITEV)
80 # if defined(__GLIBC_PREREQ)
81 #  if __GLIBC_PREREQ(2, 10)
82 #   define FOLLY_HAVE_PREADV 1
83 #   define FOLLY_HAVE_PWRITEV 1
84 #  endif
85 # endif
86 #endif
87
88 // It turns out that GNU libstdc++ and LLVM libc++ differ on how they implement
89 // the 'std' namespace; the latter uses inline namepsaces. Wrap this decision
90 // up in a macro to make forward-declarations easier.
91 #if FOLLY_USE_LIBCPP
92 #define FOLLY_NAMESPACE_STD_BEGIN     _LIBCPP_BEGIN_NAMESPACE_STD
93 #define FOLLY_NAMESPACE_STD_END       _LIBCPP_END_NAMESPACE_STD
94 #else
95 #define FOLLY_NAMESPACE_STD_BEGIN     namespace std {
96 #define FOLLY_NAMESPACE_STD_END       }
97 #endif
98
99 // Some platforms lack clock_gettime(2) and clock_getres(2). Inject our own
100 // versions of these into the global namespace.
101 #if FOLLY_HAVE_CLOCK_GETTIME
102 #include <time.h>
103 #else
104 #include "folly/detail/Clock.h"
105 #endif
106
107 // Provide our own std::__throw_* wrappers for platforms that don't have them
108 #if FOLLY_HAVE_BITS_FUNCTEXCEPT_H
109 #include <bits/functexcept.h>
110 #else
111 #include "folly/detail/FunctionalExcept.h"
112 #endif
113
114 #if defined(__cplusplus)
115 // Unfortunately, boost::has_trivial_copy<T> is broken in libc++ due to its
116 // usage of __has_trivial_copy(), so we can't use it as a
117 // least-common-denominator for C++11 implementations that don't support
118 // std::is_trivially_copyable<T>.
119 //
120 //      http://stackoverflow.com/questions/12754886/has-trivial-copy-behaves-differently-in-clang-and-gcc-whos-right
121 //
122 // As a result, use std::is_trivially_copyable() where it exists, and fall back
123 // to Boost otherwise.
124 #if FOLLY_HAVE_STD__IS_TRIVIALLY_COPYABLE
125 #include <type_traits>
126 #define FOLLY_IS_TRIVIALLY_COPYABLE(T)      (std::is_trivially_copyable<T>::value)
127 #else
128 #include <boost/type_traits.hpp>
129 #define FOLLY_IS_TRIVIALLY_COPYABLE(T)      (boost::has_trivial_copy<T>::value)
130 #endif
131 #endif // __cplusplus
132
133 #endif // FOLLY_PORTABILITY_H_