]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/boost/config/compiler/clang.hpp
update sources to ceph Nautilus 14.2.1
[ceph.git] / ceph / src / boost / boost / config / compiler / clang.hpp
1 // (C) Copyright Douglas Gregor 2010
2 //
3 // Use, modification and distribution are subject to the
4 // Boost Software License, Version 1.0. (See accompanying file
5 // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
6
7 // See http://www.boost.org for most recent version.
8
9 // Clang compiler setup.
10
11 #define BOOST_HAS_PRAGMA_ONCE
12
13 // Detecting `-fms-extension` compiler flag assuming that _MSC_VER defined when that flag is used.
14 #if defined (_MSC_VER) && (__clang_major__ > 3 || (__clang_major__ == 3 && __clang_minor__ >= 4))
15 # define BOOST_HAS_PRAGMA_DETECT_MISMATCH
16 #endif
17
18 // When compiling with clang before __has_extension was defined,
19 // even if one writes 'defined(__has_extension) && __has_extension(xxx)',
20 // clang reports a compiler error. So the only workaround found is:
21
22 #ifndef __has_extension
23 #define __has_extension __has_feature
24 #endif
25
26 #ifndef __has_attribute
27 #define __has_attribute(x) 0
28 #endif
29
30 #ifndef __has_cpp_attribute
31 #define __has_cpp_attribute(x) 0
32 #endif
33
34 #if !__has_feature(cxx_exceptions) && !defined(BOOST_NO_EXCEPTIONS)
35 # define BOOST_NO_EXCEPTIONS
36 #endif
37
38 #if !__has_feature(cxx_rtti) && !defined(BOOST_NO_RTTI)
39 # define BOOST_NO_RTTI
40 #endif
41
42 #if !__has_feature(cxx_rtti) && !defined(BOOST_NO_TYPEID)
43 # define BOOST_NO_TYPEID
44 #endif
45
46 #if !__has_feature(cxx_thread_local)
47 # define BOOST_NO_CXX11_THREAD_LOCAL
48 #endif
49
50 #ifdef __is_identifier
51 #if !__is_identifier(__int64) && !defined(__GNUC__)
52 # define BOOST_HAS_MS_INT64
53 #endif
54 #endif
55
56 #if __has_include(<stdint.h>)
57 # define BOOST_HAS_STDINT_H
58 #endif
59
60
61 #define BOOST_HAS_NRVO
62
63 // Branch prediction hints
64 #if !defined (__c2__) && defined(__has_builtin)
65 #if __has_builtin(__builtin_expect)
66 #define BOOST_LIKELY(x) __builtin_expect(x, 1)
67 #define BOOST_UNLIKELY(x) __builtin_expect(x, 0)
68 #endif
69 #endif
70
71 // Clang supports "long long" in all compilation modes.
72 #define BOOST_HAS_LONG_LONG
73
74 //
75 // We disable this if the compiler is really nvcc with C++03 as it
76 // doesn't actually support __int128 as of CUDA_VERSION=7500
77 // even though it defines __SIZEOF_INT128__.
78 // See https://svn.boost.org/trac/boost/ticket/10418
79 // https://svn.boost.org/trac/boost/ticket/11852
80 // Only re-enable this for nvcc if you're absolutely sure
81 // of the circumstances under which it's supported.
82 // Similarly __SIZEOF_INT128__ is defined when targetting msvc
83 // compatibility even though the required support functions are absent.
84 //
85 #if defined(__CUDACC__)
86 # if defined(BOOST_GCC_CXX11)
87 # define BOOST_NVCC_CXX11
88 # else
89 # define BOOST_NVCC_CXX03
90 # endif
91 #endif
92
93 #if defined(__SIZEOF_INT128__) && !defined(BOOST_NVCC_CXX03) && !defined(_MSC_VER)
94 # define BOOST_HAS_INT128
95 #endif
96
97
98 //
99 // Dynamic shared object (DSO) and dynamic-link library (DLL) support
100 //
101 #if defined(_WIN32) || defined(__WIN32__) || defined(WIN32) || defined(__CYGWIN__)
102 # define BOOST_HAS_DECLSPEC
103 # define BOOST_SYMBOL_EXPORT __attribute__((__dllexport__))
104 # define BOOST_SYMBOL_IMPORT __attribute__((__dllimport__))
105 #else
106 # define BOOST_SYMBOL_EXPORT __attribute__((__visibility__("default")))
107 # define BOOST_SYMBOL_IMPORT
108 #endif
109 #define BOOST_SYMBOL_VISIBLE __attribute__((__visibility__("default")))
110
111 //
112 // The BOOST_FALLTHROUGH macro can be used to annotate implicit fall-through
113 // between switch labels.
114 //
115 #if __cplusplus >= 201103L && defined(__has_warning)
116 # if __has_feature(cxx_attributes) && __has_warning("-Wimplicit-fallthrough")
117 # define BOOST_FALLTHROUGH [[clang::fallthrough]]
118 # endif
119 #endif
120
121 #if !__has_feature(cxx_auto_type)
122 # define BOOST_NO_CXX11_AUTO_DECLARATIONS
123 # define BOOST_NO_CXX11_AUTO_MULTIDECLARATIONS
124 #endif
125
126 //
127 // Currently clang on Windows using VC++ RTL does not support C++11's char16_t or char32_t
128 //
129 #if (defined(_MSC_VER) && (_MSC_VER < 1900)) || !(defined(__GXX_EXPERIMENTAL_CXX0X__) || __cplusplus >= 201103L)
130 # define BOOST_NO_CXX11_CHAR16_T
131 # define BOOST_NO_CXX11_CHAR32_T
132 #endif
133
134 #if defined(_MSC_VER) && (_MSC_VER >= 1800) && !defined(__GNUC__)
135 #define BOOST_HAS_EXPM1
136 #define BOOST_HAS_LOG1P
137 #endif
138
139 #if !__has_feature(cxx_constexpr)
140 # define BOOST_NO_CXX11_CONSTEXPR
141 #endif
142
143 #if !__has_feature(cxx_decltype)
144 # define BOOST_NO_CXX11_DECLTYPE
145 #endif
146
147 #if !__has_feature(cxx_decltype_incomplete_return_types)
148 # define BOOST_NO_CXX11_DECLTYPE_N3276
149 #endif
150
151 #if !__has_feature(cxx_defaulted_functions)
152 # define BOOST_NO_CXX11_DEFAULTED_FUNCTIONS
153 #endif
154
155 #if !__has_feature(cxx_deleted_functions)
156 # define BOOST_NO_CXX11_DELETED_FUNCTIONS
157 #endif
158
159 #if !__has_feature(cxx_explicit_conversions)
160 # define BOOST_NO_CXX11_EXPLICIT_CONVERSION_OPERATORS
161 #endif
162
163 #if !__has_feature(cxx_default_function_template_args)
164 # define BOOST_NO_CXX11_FUNCTION_TEMPLATE_DEFAULT_ARGS
165 #endif
166
167 #if !__has_feature(cxx_generalized_initializers)
168 # define BOOST_NO_CXX11_HDR_INITIALIZER_LIST
169 #endif
170
171 #if !__has_feature(cxx_lambdas)
172 # define BOOST_NO_CXX11_LAMBDAS
173 #endif
174
175 #if !__has_feature(cxx_local_type_template_args)
176 # define BOOST_NO_CXX11_LOCAL_CLASS_TEMPLATE_PARAMETERS
177 #endif
178
179 #if !__has_feature(cxx_noexcept)
180 # define BOOST_NO_CXX11_NOEXCEPT
181 #endif
182
183 #if !__has_feature(cxx_nullptr)
184 # define BOOST_NO_CXX11_NULLPTR
185 #endif
186
187 #if !__has_feature(cxx_range_for)
188 # define BOOST_NO_CXX11_RANGE_BASED_FOR
189 #endif
190
191 #if !__has_feature(cxx_raw_string_literals)
192 # define BOOST_NO_CXX11_RAW_LITERALS
193 #endif
194
195 #if !__has_feature(cxx_reference_qualified_functions)
196 # define BOOST_NO_CXX11_REF_QUALIFIERS
197 #endif
198
199 #if !__has_feature(cxx_generalized_initializers)
200 # define BOOST_NO_CXX11_UNIFIED_INITIALIZATION_SYNTAX
201 #endif
202
203 #if !__has_feature(cxx_rvalue_references)
204 # define BOOST_NO_CXX11_RVALUE_REFERENCES
205 #endif
206
207 #if !__has_feature(cxx_strong_enums)
208 # define BOOST_NO_CXX11_SCOPED_ENUMS
209 #endif
210
211 #if !__has_feature(cxx_static_assert)
212 # define BOOST_NO_CXX11_STATIC_ASSERT
213 #endif
214
215 #if !__has_feature(cxx_alias_templates)
216 # define BOOST_NO_CXX11_TEMPLATE_ALIASES
217 #endif
218
219 #if !__has_feature(cxx_unicode_literals)
220 # define BOOST_NO_CXX11_UNICODE_LITERALS
221 #endif
222
223 #if !__has_feature(cxx_variadic_templates)
224 # define BOOST_NO_CXX11_VARIADIC_TEMPLATES
225 #endif
226
227 #if !__has_feature(cxx_user_literals)
228 # define BOOST_NO_CXX11_USER_DEFINED_LITERALS
229 #endif
230
231 #if !__has_feature(cxx_alignas)
232 # define BOOST_NO_CXX11_ALIGNAS
233 #endif
234
235 #if !__has_feature(cxx_trailing_return)
236 # define BOOST_NO_CXX11_TRAILING_RESULT_TYPES
237 #endif
238
239 #if !__has_feature(cxx_inline_namespaces)
240 # define BOOST_NO_CXX11_INLINE_NAMESPACES
241 #endif
242
243 #if !__has_feature(cxx_override_control)
244 # define BOOST_NO_CXX11_FINAL
245 #endif
246
247 #if !(__has_feature(__cxx_binary_literals__) || __has_extension(__cxx_binary_literals__))
248 # define BOOST_NO_CXX14_BINARY_LITERALS
249 #endif
250
251 #if !__has_feature(__cxx_decltype_auto__)
252 # define BOOST_NO_CXX14_DECLTYPE_AUTO
253 #endif
254
255 #if !__has_feature(__cxx_aggregate_nsdmi__)
256 # define BOOST_NO_CXX14_AGGREGATE_NSDMI
257 #endif
258
259 #if !__has_feature(__cxx_init_captures__)
260 # define BOOST_NO_CXX14_INITIALIZED_LAMBDA_CAPTURES
261 #endif
262
263 #if !__has_feature(__cxx_generic_lambdas__)
264 # define BOOST_NO_CXX14_GENERIC_LAMBDAS
265 #endif
266
267 // clang < 3.5 has a defect with dependent type, like following.
268 //
269 // template <class T>
270 // constexpr typename enable_if<pred<T> >::type foo(T &)
271 // { } // error: no return statement in constexpr function
272 //
273 // This issue also affects C++11 mode, but C++11 constexpr requires return stmt.
274 // Therefore we don't care such case.
275 //
276 // Note that we can't check Clang version directly as the numbering system changes depending who's
277 // creating the Clang release (see https://github.com/boostorg/config/pull/39#issuecomment-59927873)
278 // so instead verify that we have a feature that was introduced at the same time as working C++14
279 // constexpr (generic lambda's in this case):
280 //
281 #if !__has_feature(__cxx_generic_lambdas__) || !__has_feature(__cxx_relaxed_constexpr__)
282 # define BOOST_NO_CXX14_CONSTEXPR
283 #endif
284
285 #if !__has_feature(__cxx_return_type_deduction__)
286 # define BOOST_NO_CXX14_RETURN_TYPE_DEDUCTION
287 #endif
288
289 #if !__has_feature(__cxx_variable_templates__)
290 # define BOOST_NO_CXX14_VARIABLE_TEMPLATES
291 #endif
292
293 #if !defined(__cpp_structured_bindings) || (__cpp_structured_bindings < 201606)
294 # define BOOST_NO_CXX17_STRUCTURED_BINDINGS
295 #endif
296
297 // Clang 3.9+ in c++1z
298 #if !__has_cpp_attribute(fallthrough) || __cplusplus < 201406L
299 # define BOOST_NO_CXX17_INLINE_VARIABLES
300 # define BOOST_NO_CXX17_FOLD_EXPRESSIONS
301 #endif
302
303 #if __cplusplus < 201103L
304 #define BOOST_NO_CXX11_SFINAE_EXPR
305 #endif
306
307 #if __cplusplus < 201400
308 // All versions with __cplusplus above this value seem to support this:
309 # define BOOST_NO_CXX14_DIGIT_SEPARATORS
310 #endif
311 //
312 // __builtin_unreachable:
313 #if defined(__has_builtin) && __has_builtin(__builtin_unreachable)
314 #define BOOST_UNREACHABLE_RETURN(x) __builtin_unreachable();
315 #endif
316
317 #if (__clang_major__ == 3) && (__clang_minor__ == 0)
318 // Apparently a clang bug:
319 # define BOOST_NO_CXX11_FIXED_LENGTH_VARIADIC_TEMPLATE_EXPANSION_PACKS
320 #endif
321
322 // Clang has supported the 'unused' attribute since the first release.
323 #define BOOST_ATTRIBUTE_UNUSED __attribute__((__unused__))
324
325 // Type aliasing hint.
326 #if __has_attribute(__may_alias__)
327 # define BOOST_MAY_ALIAS __attribute__((__may_alias__))
328 #endif
329
330 #ifndef BOOST_COMPILER
331 # define BOOST_COMPILER "Clang version " __clang_version__
332 #endif
333
334 // Macro used to identify the Clang compiler.
335 #define BOOST_CLANG 1
336