Fix/override bad symbol names
[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/folly-config.h>
22 #endif
23
24 #ifdef FOLLY_PLATFORM_CONFIG
25 #include FOLLY_PLATFORM_CONFIG
26 #endif
27
28 #if FOLLY_HAVE_FEATURES_H
29 #include <features.h>
30 #endif
31
32 #include <folly/CPortability.h>
33
34 #if FOLLY_HAVE_SCHED_H
35  #include <sched.h>
36  #ifndef FOLLY_HAVE_PTHREAD_YIELD
37   #define pthread_yield sched_yield
38  #endif
39 #endif
40
41 // A change in folly/MemoryMapping.cpp uses MAP_ANONYMOUS, which is named
42 // MAP_ANON on OSX/BSD.
43 #if defined(__APPLE__) || defined(__FreeBSD__)
44   #include <sys/mman.h>
45   #ifndef MAP_ANONYMOUS
46     #ifdef MAP_ANON
47       #define MAP_ANONYMOUS MAP_ANON
48     #endif
49   #endif
50 #endif
51
52 // MaxAlign: max_align_t isn't supported by gcc
53 #ifdef __GNUC__
54 struct MaxAlign { char c; } __attribute__((__aligned__));
55 #else /* !__GNUC__ */
56 # error Cannot define MaxAlign on this platform
57 #endif
58
59 // compiler specific attribute translation
60 // msvc should come first, so if clang is in msvc mode it gets the right defines
61
62 // NOTE: this will only do checking in msvc with versions that support /analyze
63 #if _MSC_VER
64 # ifdef _USE_ATTRIBUTES_FOR_SAL
65 #    undef _USE_ATTRIBUTES_FOR_SAL
66 # endif
67 /* nolint */
68 # define _USE_ATTRIBUTES_FOR_SAL 1
69 # include <sal.h>
70 # define FOLLY_PRINTF_FORMAT _Printf_format_string_
71 # define FOLLY_PRINTF_FORMAT_ATTR(format_param, dots_param) /**/
72 #else
73 # define FOLLY_PRINTF_FORMAT /**/
74 # define FOLLY_PRINTF_FORMAT_ATTR(format_param, dots_param) \
75   __attribute__((__format__(__printf__, format_param, dots_param)))
76 #endif
77
78 // noreturn
79 #if defined(_MSC_VER)
80 # define FOLLY_NORETURN __declspec(noreturn)
81 #elif defined(__clang__) || defined(__GNUC__)
82 # define FOLLY_NORETURN __attribute__((__noreturn__))
83 #else
84 # define FOLLY_NORETURN
85 #endif
86
87 // noinline
88 #ifdef _MSC_VER
89 # define FOLLY_NOINLINE __declspec(noinline)
90 #elif defined(__clang__) || defined(__GNUC__)
91 # define FOLLY_NOINLINE __attribute__((__noinline__))
92 #else
93 # define FOLLY_NOINLINE
94 #endif
95
96 // always inline
97 #ifdef _MSC_VER
98 # define FOLLY_ALWAYS_INLINE __forceinline
99 #elif defined(__clang__) || defined(__GNUC__)
100 # define FOLLY_ALWAYS_INLINE inline __attribute__((__always_inline__))
101 #else
102 # define FOLLY_ALWAYS_INLINE
103 #endif
104
105 // detection for 64 bit
106 #if defined(__x86_64__) || defined(_M_X64)
107 # define FOLLY_X64 1
108 #else
109 # define FOLLY_X64 0
110 #endif
111
112 // packing is very ugly in msvc
113 #ifdef _MSC_VER
114 # define FOLLY_PACK_ATTR /**/
115 # define FOLLY_PACK_PUSH __pragma(pack(push, 1))
116 # define FOLLY_PACK_POP __pragma(pack(pop))
117 #elif defined(__clang__) || defined(__GNUC__)
118 # define FOLLY_PACK_ATTR __attribute__((__packed__))
119 # define FOLLY_PACK_PUSH /**/
120 # define FOLLY_PACK_POP /**/
121 #else
122 # define FOLLY_PACK_ATTR /**/
123 # define FOLLY_PACK_PUSH /**/
124 # define FOLLY_PACK_POP /**/
125 #endif
126
127 // portable version check
128 #ifndef __GNUC_PREREQ
129 # if defined __GNUC__ && defined __GNUC_MINOR__
130 /* nolint */
131 #  define __GNUC_PREREQ(maj, min) ((__GNUC__ << 16) + __GNUC_MINOR__ >= \
132                                    ((maj) << 16) + (min))
133 # else
134 /* nolint */
135 #  define __GNUC_PREREQ(maj, min) 0
136 # endif
137 #endif
138
139
140 /* Define macro wrappers for C++11's "final" and "override" keywords, which
141  * are supported in gcc 4.7 but not gcc 4.6. */
142 #if !defined(FOLLY_FINAL) && !defined(FOLLY_OVERRIDE)
143 # if defined(__clang__) || __GNUC_PREREQ(4, 7)
144 #  define FOLLY_FINAL final
145 #  define FOLLY_OVERRIDE override
146 # else
147 #  define FOLLY_FINAL /**/
148 #  define FOLLY_OVERRIDE /**/
149 # endif
150 #endif
151
152 /* Platform specific TLS support
153  * gcc implements __thread
154  * msvc implements __declspec(thread)
155  * the semantics are the same (but remember __thread is broken on apple)
156  */
157 #if defined(_MSC_VER)
158 # define FOLLY_TLS __declspec(thread)
159 #elif defined(__GNUC__) || defined(__clang__)
160 # define FOLLY_TLS __thread
161 #else
162 # error cannot define platform specific thread local storage
163 #endif
164
165 // Define to 1 if you have the `preadv' and `pwritev' functions, respectively
166 #if !defined(FOLLY_HAVE_PREADV) && !defined(FOLLY_HAVE_PWRITEV)
167 # if defined(__GLIBC_PREREQ)
168 #  if __GLIBC_PREREQ(2, 10)
169 #   define FOLLY_HAVE_PREADV 1
170 #   define FOLLY_HAVE_PWRITEV 1
171 #  endif
172 # endif
173 #endif
174
175 // It turns out that GNU libstdc++ and LLVM libc++ differ on how they implement
176 // the 'std' namespace; the latter uses inline namepsaces. Wrap this decision
177 // up in a macro to make forward-declarations easier.
178 #if FOLLY_USE_LIBCPP
179 #include <__config>
180 #define FOLLY_NAMESPACE_STD_BEGIN     _LIBCPP_BEGIN_NAMESPACE_STD
181 #define FOLLY_NAMESPACE_STD_END       _LIBCPP_END_NAMESPACE_STD
182 #else
183 #define FOLLY_NAMESPACE_STD_BEGIN     namespace std {
184 #define FOLLY_NAMESPACE_STD_END       }
185 #endif
186
187 // Some platforms lack clock_gettime(2) and clock_getres(2). Inject our own
188 // versions of these into the global namespace.
189 #if FOLLY_HAVE_CLOCK_GETTIME
190 #include <time.h>
191 #else
192 #include <folly/detail/Clock.h>
193 #endif
194
195 // Provide our own std::__throw_* wrappers for platforms that don't have them
196 #if FOLLY_HAVE_BITS_FUNCTEXCEPT_H
197 #include <bits/functexcept.h>
198 #else
199 #include <folly/detail/FunctionalExcept.h>
200 #endif
201
202 #if defined(__cplusplus)
203 // Unfortunately, boost::has_trivial_copy<T> is broken in libc++ due to its
204 // usage of __has_trivial_copy(), so we can't use it as a
205 // least-common-denominator for C++11 implementations that don't support
206 // std::is_trivially_copyable<T>.
207 //
208 //      http://stackoverflow.com/questions/12754886/has-trivial-copy-behaves-differently-in-clang-and-gcc-whos-right
209 //
210 // As a result, use std::is_trivially_copyable() where it exists, and fall back
211 // to Boost otherwise.
212 #if FOLLY_HAVE_STD__IS_TRIVIALLY_COPYABLE
213 #include <type_traits>
214 #define FOLLY_IS_TRIVIALLY_COPYABLE(T)                   \
215   (std::is_trivially_copyable<T>::value)
216 #else
217 #include <boost/type_traits.hpp>
218 #define FOLLY_IS_TRIVIALLY_COPYABLE(T)                   \
219   (boost::has_trivial_copy<T>::value &&                  \
220    boost::has_trivial_destructor<T>::value)
221 #endif
222 #endif // __cplusplus
223
224 // MSVC specific defines
225 // mainly for posix compat
226 #ifdef _MSC_VER
227
228 // this definition is in a really silly place with a silly name
229 // and ifdefing it every time we want it is painful
230 #include <basetsd.h>
231 typedef SSIZE_T ssize_t;
232
233 // sprintf semantics are not exactly identical
234 // but current usage is not a problem
235 # define snprintf _snprintf
236
237 // semantics here are identical
238 # define strerror_r(errno,buf,len) strerror_s(buf,len,errno)
239
240 // compiler specific to compiler specific
241 // nolint
242 # define __PRETTY_FUNCTION__ __FUNCSIG__
243 #endif
244
245 #if FOLLY_UNUSUAL_GFLAGS_NAMESPACE
246 namespace FOLLY_GFLAGS_NAMESPACE { }
247 namespace gflags {
248 using namespace FOLLY_GFLAGS_NAMESPACE;
249 }  // namespace gflags
250 #endif
251
252 // for TARGET_OS_IPHONE
253 #ifdef __APPLE__
254 #include <TargetConditionals.h>
255 #endif
256
257 #endif // FOLLY_PORTABILITY_H_