Fail on implicit convert from BOOL on ObjC in folly::dynamic
[folly.git] / folly / Portability.h
1 /*
2  * Copyright 2017 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 #pragma once
18
19 #include <string.h>
20
21 #include <cstddef>
22
23 #include <folly/portability/Config.h>
24
25 #include <folly/CPortability.h>
26
27 // Unaligned loads and stores
28 namespace folly {
29 #if FOLLY_HAVE_UNALIGNED_ACCESS
30 constexpr bool kHasUnalignedAccess = true;
31 #else
32 constexpr bool kHasUnalignedAccess = false;
33 #endif
34 }
35
36 // compiler specific attribute translation
37 // msvc should come first, so if clang is in msvc mode it gets the right defines
38
39 #if defined(__clang__) || defined(__GNUC__)
40 # define FOLLY_ALIGNED(size) __attribute__((__aligned__(size)))
41 #elif defined(_MSC_VER)
42 # define FOLLY_ALIGNED(size) __declspec(align(size))
43 #else
44 # error Cannot define FOLLY_ALIGNED on this platform
45 #endif
46 #define FOLLY_ALIGNED_MAX FOLLY_ALIGNED(alignof(std::max_align_t))
47
48 // NOTE: this will only do checking in msvc with versions that support /analyze
49 #if _MSC_VER
50 # ifdef _USE_ATTRIBUTES_FOR_SAL
51 #    undef _USE_ATTRIBUTES_FOR_SAL
52 # endif
53 /* nolint */
54 # define _USE_ATTRIBUTES_FOR_SAL 1
55 # include <sal.h>
56 # define FOLLY_PRINTF_FORMAT _Printf_format_string_
57 # define FOLLY_PRINTF_FORMAT_ATTR(format_param, dots_param) /**/
58 #else
59 # define FOLLY_PRINTF_FORMAT /**/
60 # define FOLLY_PRINTF_FORMAT_ATTR(format_param, dots_param) \
61   __attribute__((__format__(__printf__, format_param, dots_param)))
62 #endif
63
64 // deprecated
65 #if defined(__clang__) || defined(__GNUC__)
66 # define FOLLY_DEPRECATED(msg) __attribute__((__deprecated__(msg)))
67 #elif defined(_MSC_VER)
68 # define FOLLY_DEPRECATED(msg) __declspec(deprecated(msg))
69 #else
70 # define FOLLY_DEPRECATED(msg)
71 #endif
72
73 // warn unused result
74 #if defined(_MSC_VER) && (_MSC_VER >= 1700)
75 #define FOLLY_WARN_UNUSED_RESULT _Check_return_
76 #elif defined(__clang__) || defined(__GNUC__)
77 #define FOLLY_WARN_UNUSED_RESULT __attribute__((__warn_unused_result__))
78 #else
79 #define FOLLY_WARN_UNUSED_RESULT
80 #endif
81
82 // target
83 #ifdef _MSC_VER
84 # define FOLLY_TARGET_ATTRIBUTE(target)
85 #else
86 # define FOLLY_TARGET_ATTRIBUTE(target) __attribute__((__target__(target)))
87 #endif
88
89 // detection for 64 bit
90 #if defined(__x86_64__) || defined(_M_X64)
91 # define FOLLY_X64 1
92 #else
93 # define FOLLY_X64 0
94 #endif
95
96 #if defined(__aarch64__)
97 # define FOLLY_A64 1
98 #else
99 # define FOLLY_A64 0
100 #endif
101
102 #if defined (__powerpc64__)
103 # define FOLLY_PPC64 1
104 #else
105 # define FOLLY_PPC64 0
106 #endif
107
108 namespace folly {
109 constexpr bool kIsArchAmd64 = FOLLY_X64 == 1;
110 constexpr bool kIsArchAArch64 = FOLLY_A64 == 1;
111 constexpr bool kIsArchPPC64 = FOLLY_PPC64 == 1;
112 }
113
114 namespace folly {
115
116 #if FOLLY_SANITIZE_ADDRESS
117 constexpr bool kIsSanitizeAddress = true;
118 #else
119 constexpr bool kIsSanitizeAddress = false;
120 #endif
121
122 #if FOLLY_SANITIZE_THREAD
123 constexpr bool kIsSanitizeThread = true;
124 #else
125 constexpr bool kIsSanitizeThread = false;
126 #endif
127 }
128
129 // packing is very ugly in msvc
130 #ifdef _MSC_VER
131 # define FOLLY_PACK_ATTR /**/
132 # define FOLLY_PACK_PUSH __pragma(pack(push, 1))
133 # define FOLLY_PACK_POP __pragma(pack(pop))
134 #elif defined(__clang__) || defined(__GNUC__)
135 # define FOLLY_PACK_ATTR __attribute__((__packed__))
136 # define FOLLY_PACK_PUSH /**/
137 # define FOLLY_PACK_POP /**/
138 #else
139 # define FOLLY_PACK_ATTR /**/
140 # define FOLLY_PACK_PUSH /**/
141 # define FOLLY_PACK_POP /**/
142 #endif
143
144 // Generalize warning push/pop.
145 #if defined(_MSC_VER)
146 # define FOLLY_PUSH_WARNING __pragma(warning(push))
147 # define FOLLY_POP_WARNING __pragma(warning(pop))
148 // Disable the GCC warnings.
149 # define FOLLY_GCC_DISABLE_WARNING(warningName)
150 # define FOLLY_MSVC_DISABLE_WARNING(warningNumber) __pragma(warning(disable: warningNumber))
151 #elif defined(__clang__) || defined(__GNUC__)
152 # define FOLLY_PUSH_WARNING _Pragma("GCC diagnostic push")
153 # define FOLLY_POP_WARNING _Pragma("GCC diagnostic pop")
154 # define FOLLY_GCC_DISABLE_WARNING_INTERNAL2(warningName) #warningName
155 # define FOLLY_GCC_DISABLE_WARNING(warningName) \
156   _Pragma(                                      \
157   FOLLY_GCC_DISABLE_WARNING_INTERNAL2(GCC diagnostic ignored warningName))
158 // Disable the MSVC warnings.
159 # define FOLLY_MSVC_DISABLE_WARNING(warningNumber)
160 #else
161 # define FOLLY_PUSH_WARNING
162 # define FOLLY_POP_WARNING
163 # define FOLLY_GCC_DISABLE_WARNING(warningName)
164 # define FOLLY_MSVC_DISABLE_WARNING(warningNumber)
165 #endif
166
167 #ifdef HAVE_SHADOW_LOCAL_WARNINGS
168 #define FOLLY_GCC_DISABLE_NEW_SHADOW_WARNINGS        \
169   FOLLY_GCC_DISABLE_WARNING("-Wshadow-compatible-local") \
170   FOLLY_GCC_DISABLE_WARNING("-Wshadow-local")
171 #else
172 #define FOLLY_GCC_DISABLE_NEW_SHADOW_WARNINGS /* empty */
173 #endif
174
175 #if defined(__GNUC__) && !defined(__APPLE__) && !__GNUC_PREREQ(4,9)
176 // https://gcc.gnu.org/bugzilla/show_bug.cgi?id=56019
177 // gcc 4.8.x incorrectly placed max_align_t in the root namespace
178 // Alias it into std (where it's found in 4.9 and later)
179 namespace std { typedef ::max_align_t max_align_t; }
180 #endif
181
182 // portable version check for clang
183 #ifndef __CLANG_PREREQ
184 # if defined __clang__ && defined __clang_major__ && defined __clang_minor__
185 /* nolint */
186 #  define __CLANG_PREREQ(maj, min) \
187     ((__clang_major__ << 16) + __clang_minor__ >= ((maj) << 16) + (min))
188 # else
189 /* nolint */
190 #  define __CLANG_PREREQ(maj, min) 0
191 # endif
192 #endif
193
194 /* Platform specific TLS support
195  * gcc implements __thread
196  * msvc implements __declspec(thread)
197  * the semantics are the same
198  * (but remember __thread has different semantics when using emutls (ex. apple))
199  */
200 #if defined(_MSC_VER)
201 # define FOLLY_TLS __declspec(thread)
202 #elif defined(__GNUC__) || defined(__clang__)
203 # define FOLLY_TLS __thread
204 #else
205 # error cannot define platform specific thread local storage
206 #endif
207
208 #if FOLLY_MOBILE
209 #undef FOLLY_TLS
210 #endif
211
212 // It turns out that GNU libstdc++ and LLVM libc++ differ on how they implement
213 // the 'std' namespace; the latter uses inline namespaces. Wrap this decision
214 // up in a macro to make forward-declarations easier.
215 #if FOLLY_USE_LIBCPP
216 #include <__config>
217 #define FOLLY_NAMESPACE_STD_BEGIN     _LIBCPP_BEGIN_NAMESPACE_STD
218 #define FOLLY_NAMESPACE_STD_END       _LIBCPP_END_NAMESPACE_STD
219 #else
220 #define FOLLY_NAMESPACE_STD_BEGIN     namespace std {
221 #define FOLLY_NAMESPACE_STD_END       }
222 #endif
223
224 // If the new c++ ABI is used, __cxx11 inline namespace needs to be added to
225 // some types, e.g. std::list.
226 #if _GLIBCXX_USE_CXX11_ABI
227 #define FOLLY_GLIBCXX_NAMESPACE_CXX11_BEGIN \
228   inline _GLIBCXX_BEGIN_NAMESPACE_CXX11
229 # define FOLLY_GLIBCXX_NAMESPACE_CXX11_END   _GLIBCXX_END_NAMESPACE_CXX11
230 #else
231 # define FOLLY_GLIBCXX_NAMESPACE_CXX11_BEGIN
232 # define FOLLY_GLIBCXX_NAMESPACE_CXX11_END
233 #endif
234
235 // MSVC specific defines
236 // mainly for posix compat
237 #ifdef _MSC_VER
238 #include <folly/portability/SysTypes.h>
239
240 // compiler specific to compiler specific
241 // nolint
242 # define __PRETTY_FUNCTION__ __FUNCSIG__
243
244 // Hide a GCC specific thing that breaks MSVC if left alone.
245 # define __extension__
246
247 // We have compiler support for the newest of the new, but
248 // MSVC doesn't tell us that.
249 #define __SSE4_2__ 1
250
251 #endif
252
253 // Debug
254 namespace folly {
255 #ifdef NDEBUG
256 constexpr auto kIsDebug = false;
257 #else
258 constexpr auto kIsDebug = true;
259 #endif
260 }
261
262 // Endianness
263 namespace folly {
264 #ifdef _MSC_VER
265 // It's MSVC, so we just have to guess ... and allow an override
266 #ifdef FOLLY_ENDIAN_BE
267 constexpr auto kIsLittleEndian = false;
268 #else
269 constexpr auto kIsLittleEndian = true;
270 #endif
271 #else
272 constexpr auto kIsLittleEndian = __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__;
273 #endif
274 constexpr auto kIsBigEndian = !kIsLittleEndian;
275 }
276
277 #ifndef FOLLY_SSE
278 # if defined(__SSE4_2__)
279 #  define FOLLY_SSE 4
280 #  define FOLLY_SSE_MINOR 2
281 # elif defined(__SSE4_1__)
282 #  define FOLLY_SSE 4
283 #  define FOLLY_SSE_MINOR 1
284 # elif defined(__SSE4__)
285 #  define FOLLY_SSE 4
286 #  define FOLLY_SSE_MINOR 0
287 # elif defined(__SSE3__)
288 #  define FOLLY_SSE 3
289 #  define FOLLY_SSE_MINOR 0
290 # elif defined(__SSE2__)
291 #  define FOLLY_SSE 2
292 #  define FOLLY_SSE_MINOR 0
293 # elif defined(__SSE__)
294 #  define FOLLY_SSE 1
295 #  define FOLLY_SSE_MINOR 0
296 # else
297 #  define FOLLY_SSE 0
298 #  define FOLLY_SSE_MINOR 0
299 # endif
300 #endif
301
302 #define FOLLY_SSE_PREREQ(major, minor) \
303   (FOLLY_SSE > major || FOLLY_SSE == major && FOLLY_SSE_MINOR >= minor)
304
305 #if FOLLY_UNUSUAL_GFLAGS_NAMESPACE
306 namespace FOLLY_GFLAGS_NAMESPACE { }
307 namespace gflags {
308 using namespace FOLLY_GFLAGS_NAMESPACE;
309 }  // namespace gflags
310 #endif
311
312 // for TARGET_OS_IPHONE
313 #ifdef __APPLE__
314 #include <TargetConditionals.h>
315 #endif
316
317 // RTTI may not be enabled for this compilation unit.
318 #if defined(__GXX_RTTI) || defined(__cpp_rtti) || \
319     (defined(_MSC_VER) && defined(_CPPRTTI))
320 # define FOLLY_HAS_RTTI 1
321 #endif
322
323 #if defined(__APPLE__) || defined(_MSC_VER)
324 #define FOLLY_STATIC_CTOR_PRIORITY_MAX
325 #else
326 // 101 is the highest priority allowed by the init_priority attribute.
327 // This priority is already used by JEMalloc and other memory allocators so
328 // we will take the next one.
329 #define FOLLY_STATIC_CTOR_PRIORITY_MAX __attribute__((__init_priority__(102)))
330 #endif
331
332 namespace folly {
333
334 #if __OBJC__
335 constexpr auto kIsObjC = true;
336 #else
337 constexpr auto kIsObjC = false;
338 #endif
339
340 #if defined(__linux__) && !FOLLY_MOBILE
341 constexpr auto kIsLinux = true;
342 #else
343 constexpr auto kIsLinux = false;
344 #endif
345
346 #if defined(_WIN32)
347 constexpr auto kIsWindows = true;
348 #else
349 constexpr auto kIsWindows = false;
350 #endif
351 }