Enable LLVM_FINAL, LLVM_OVERRIDE and LLVM_HAS_VARIADIC_TEMPLATES with more gcc and...
[oota-llvm.git] / include / llvm / Support / Compiler.h
1 //===-- llvm/Support/Compiler.h - Compiler abstraction support --*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file defines several macros, based on the current compiler.  This allows
11 // use of compiler-specific features in a way that remains portable.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #ifndef LLVM_SUPPORT_COMPILER_H
16 #define LLVM_SUPPORT_COMPILER_H
17
18 #include "llvm/Config/llvm-config.h"
19
20 #ifndef __has_feature
21 # define __has_feature(x) 0
22 #endif
23
24 #ifndef __has_extension
25 # define __has_extension(x) 0
26 #endif
27
28 #ifndef __has_attribute
29 # define __has_attribute(x) 0
30 #endif
31
32 #ifndef __has_builtin
33 # define __has_builtin(x) 0
34 #endif
35
36 /// \macro __GNUC_PREREQ
37 /// \brief Defines __GNUC_PREREQ if glibc's features.h isn't available.
38 #ifndef __GNUC_PREREQ
39 # if defined(__GNUC__) && defined(__GNUC_MINOR__)
40 #  define __GNUC_PREREQ(maj, min) \
41     ((__GNUC__ << 16) + __GNUC_MINOR__ >= ((maj) << 16) + (min))
42 # else
43 #  define __GNUC_PREREQ(maj, min) 0
44 # endif
45 #endif
46
47 /// \macro LLVM_MSC_PREREQ
48 /// \brief Is the compiler MSVC of at least the specified version?
49 /// The common \param version values to check for are:
50 ///  * 1600: Microsoft Visual Studio 2010 / 10.0
51 ///  * 1700: Microsoft Visual Studio 2012 / 11.0
52 ///  * 1800: Microsoft Visual Studio 2013 / 12.0
53 #ifdef _MSC_VER
54 #define LLVM_MSC_PREREQ(version) (_MSC_VER >= (version))
55 #else
56 #define LLVM_MSC_PREREQ(version) 0
57 #endif
58
59 /// \brief Does the compiler support r-value references?
60 /// This implies that <utility> provides the one-argument std::move;  it
61 /// does not imply the existence of any other C++ library features.
62 #if __has_feature(cxx_rvalue_references) || \
63     defined(__GXX_EXPERIMENTAL_CXX0X__) || LLVM_MSC_PREREQ(1600)
64 #define LLVM_HAS_RVALUE_REFERENCES 1
65 #else
66 #define LLVM_HAS_RVALUE_REFERENCES 0
67 #endif
68
69 /// \brief Does the compiler support r-value reference *this?
70 ///
71 /// Sadly, this is separate from just r-value reference support because GCC
72 /// implemented everything but this thus far. No release of GCC yet has support
73 /// for this feature so it is enabled with Clang only.
74 /// FIXME: This should change to a version check when GCC grows support for it.
75 #if __has_feature(cxx_rvalue_references)
76 #define LLVM_HAS_RVALUE_REFERENCE_THIS 1
77 #else
78 #define LLVM_HAS_RVALUE_REFERENCE_THIS 0
79 #endif
80
81 /// \macro LLVM_HAS_CXX11_TYPETRAITS
82 /// \brief Does the compiler have the C++11 type traits.
83 ///
84 /// #include <type_traits>
85 ///
86 /// * enable_if
87 /// * {true,false}_type
88 /// * is_constructible
89 /// * etc...
90 #if defined(__GXX_EXPERIMENTAL_CXX0X__) || LLVM_MSC_PREREQ(1700)
91 #define LLVM_HAS_CXX11_TYPETRAITS 1
92 #else
93 #define LLVM_HAS_CXX11_TYPETRAITS 0
94 #endif
95
96 /// \macro LLVM_HAS_CXX11_STDLIB
97 /// \brief Does the compiler have the C++11 standard library.
98 ///
99 /// Implies LLVM_HAS_RVALUE_REFERENCES, LLVM_HAS_CXX11_TYPETRAITS
100 #if defined(__GXX_EXPERIMENTAL_CXX0X__) || LLVM_MSC_PREREQ(1700)
101 #define LLVM_HAS_CXX11_STDLIB 1
102 #else
103 #define LLVM_HAS_CXX11_STDLIB 0
104 #endif
105
106 /// \macro LLVM_HAS_VARIADIC_TEMPLATES
107 /// \brief Does this compiler support variadic templates.
108 ///
109 /// Implies LLVM_HAS_RVALUE_REFERENCES and the existence of std::forward.
110 #if __has_feature(cxx_variadic_templates) || LLVM_MSC_PREREQ(1800)
111 # define LLVM_HAS_VARIADIC_TEMPLATES 1
112 #else
113 # define LLVM_HAS_VARIADIC_TEMPLATES 0
114 #endif
115
116 /// llvm_move - Expands to ::std::move if the compiler supports
117 /// r-value references; otherwise, expands to the argument.
118 #if LLVM_HAS_RVALUE_REFERENCES
119 #define llvm_move(value) (::std::move(value))
120 #else
121 #define llvm_move(value) (value)
122 #endif
123
124 /// Expands to '&' if r-value references are supported.
125 ///
126 /// This can be used to provide l-value/r-value overrides of member functions.
127 /// The r-value override should be guarded by LLVM_HAS_RVALUE_REFERENCE_THIS
128 #if LLVM_HAS_RVALUE_REFERENCE_THIS
129 #define LLVM_LVALUE_FUNCTION &
130 #else
131 #define LLVM_LVALUE_FUNCTION
132 #endif
133
134 /// LLVM_DELETED_FUNCTION - Expands to = delete if the compiler supports it.
135 /// Use to mark functions as uncallable. Member functions with this should
136 /// be declared private so that some behavior is kept in C++03 mode.
137 ///
138 /// class DontCopy {
139 /// private:
140 ///   DontCopy(const DontCopy&) LLVM_DELETED_FUNCTION;
141 ///   DontCopy &operator =(const DontCopy&) LLVM_DELETED_FUNCTION;
142 /// public:
143 ///   ...
144 /// };
145 #if __has_feature(cxx_deleted_functions) || \
146     defined(__GXX_EXPERIMENTAL_CXX0X__) || LLVM_MSC_PREREQ(1800)
147 #define LLVM_DELETED_FUNCTION = delete
148 #else
149 #define LLVM_DELETED_FUNCTION
150 #endif
151
152 /// LLVM_FINAL - Expands to 'final' if the compiler supports it.
153 /// Use to mark classes or virtual methods as final.
154 #if __has_feature(cxx_override_control) || \
155     defined(__GXX_EXPERIMENTAL_CXX0X__) || LLVM_MSC_PREREQ(1700)
156 #define LLVM_FINAL final
157 #elif LLVM_MSC_PREREQ(1600)
158 #define LLVM_FINAL sealed
159 #else
160 #define LLVM_FINAL
161 #endif
162
163 /// LLVM_OVERRIDE - Expands to 'override' if the compiler supports it.
164 /// Use to mark virtual methods as overriding a base class method.
165 #if __has_feature(cxx_override_control) || \
166     defined(__GXX_EXPERIMENTAL_CXX0X__) || LLVM_MSC_PREREQ(1600)
167 #define LLVM_OVERRIDE override
168 #else
169 #define LLVM_OVERRIDE
170 #endif
171
172 #if __has_feature(cxx_constexpr) || defined(__GXX_EXPERIMENTAL_CXX0X__)
173 # define LLVM_CONSTEXPR constexpr
174 #else
175 # define LLVM_CONSTEXPR
176 #endif
177
178 /// LLVM_LIBRARY_VISIBILITY - If a class marked with this attribute is linked
179 /// into a shared library, then the class should be private to the library and
180 /// not accessible from outside it.  Can also be used to mark variables and
181 /// functions, making them private to any shared library they are linked into.
182 /// On PE/COFF targets, library visibility is the default, so this isn't needed.
183 #if (__has_attribute(visibility) || __GNUC_PREREQ(4, 0)) &&                    \
184     !defined(__MINGW32__) && !defined(__CYGWIN__) && !defined(LLVM_ON_WIN32)
185 #define LLVM_LIBRARY_VISIBILITY __attribute__ ((visibility("hidden")))
186 #else
187 #define LLVM_LIBRARY_VISIBILITY
188 #endif
189
190 #if __has_attribute(used) || __GNUC_PREREQ(3, 1)
191 #define LLVM_ATTRIBUTE_USED __attribute__((__used__))
192 #else
193 #define LLVM_ATTRIBUTE_USED
194 #endif
195
196 #if __has_attribute(warn_unused_result) || __GNUC_PREREQ(3, 4)
197 #define LLVM_ATTRIBUTE_UNUSED_RESULT __attribute__((__warn_unused_result__))
198 #else
199 #define LLVM_ATTRIBUTE_UNUSED_RESULT
200 #endif
201
202 // Some compilers warn about unused functions. When a function is sometimes
203 // used or not depending on build settings (e.g. a function only called from
204 // within "assert"), this attribute can be used to suppress such warnings.
205 //
206 // However, it shouldn't be used for unused *variables*, as those have a much
207 // more portable solution:
208 //   (void)unused_var_name;
209 // Prefer cast-to-void wherever it is sufficient.
210 #if __has_attribute(unused) || __GNUC_PREREQ(3, 1)
211 #define LLVM_ATTRIBUTE_UNUSED __attribute__((__unused__))
212 #else
213 #define LLVM_ATTRIBUTE_UNUSED
214 #endif
215
216 // FIXME: Provide this for PE/COFF targets.
217 #if (__has_attribute(weak) || __GNUC_PREREQ(4, 0)) &&                          \
218     (!defined(__MINGW32__) && !defined(__CYGWIN__) && !defined(LLVM_ON_WIN32))
219 #define LLVM_ATTRIBUTE_WEAK __attribute__((__weak__))
220 #else
221 #define LLVM_ATTRIBUTE_WEAK
222 #endif
223
224 // Prior to clang 3.2, clang did not accept any spelling of
225 // __has_attribute(const), so assume it is supported.
226 #if defined(__clang__) || defined(__GNUC__)
227 // aka 'CONST' but following LLVM Conventions.
228 #define LLVM_READNONE __attribute__((__const__))
229 #else
230 #define LLVM_READNONE
231 #endif
232
233 #if __has_attribute(pure) || defined(__GNUC__)
234 // aka 'PURE' but following LLVM Conventions.
235 #define LLVM_READONLY __attribute__((__pure__))
236 #else
237 #define LLVM_READONLY
238 #endif
239
240 #if __has_builtin(__builtin_expect) || __GNUC_PREREQ(4, 0)
241 #define LLVM_LIKELY(EXPR) __builtin_expect((bool)(EXPR), true)
242 #define LLVM_UNLIKELY(EXPR) __builtin_expect((bool)(EXPR), false)
243 #else
244 #define LLVM_LIKELY(EXPR) (EXPR)
245 #define LLVM_UNLIKELY(EXPR) (EXPR)
246 #endif
247
248 // C++ doesn't support 'extern template' of template specializations.  GCC does,
249 // but requires __extension__ before it.  In the header, use this:
250 //   EXTERN_TEMPLATE_INSTANTIATION(class foo<bar>);
251 // in the .cpp file, use this:
252 //   TEMPLATE_INSTANTIATION(class foo<bar>);
253 #ifdef __GNUC__
254 #define EXTERN_TEMPLATE_INSTANTIATION(X) __extension__ extern template X
255 #define TEMPLATE_INSTANTIATION(X) template X
256 #else
257 #define EXTERN_TEMPLATE_INSTANTIATION(X)
258 #define TEMPLATE_INSTANTIATION(X)
259 #endif
260
261 /// LLVM_ATTRIBUTE_NOINLINE - On compilers where we have a directive to do so,
262 /// mark a method "not for inlining".
263 #if __has_attribute(noinline) || __GNUC_PREREQ(3, 4)
264 #define LLVM_ATTRIBUTE_NOINLINE __attribute__((noinline))
265 #elif defined(_MSC_VER)
266 #define LLVM_ATTRIBUTE_NOINLINE __declspec(noinline)
267 #else
268 #define LLVM_ATTRIBUTE_NOINLINE
269 #endif
270
271 /// LLVM_ATTRIBUTE_ALWAYS_INLINE - On compilers where we have a directive to do
272 /// so, mark a method "always inline" because it is performance sensitive. GCC
273 /// 3.4 supported this but is buggy in various cases and produces unimplemented
274 /// errors, just use it in GCC 4.0 and later.
275 #if __has_attribute(always_inline) || __GNUC_PREREQ(4, 0)
276 #define LLVM_ATTRIBUTE_ALWAYS_INLINE inline __attribute__((always_inline))
277 #elif defined(_MSC_VER)
278 #define LLVM_ATTRIBUTE_ALWAYS_INLINE __forceinline
279 #else
280 #define LLVM_ATTRIBUTE_ALWAYS_INLINE
281 #endif
282
283 #ifdef __GNUC__
284 #define LLVM_ATTRIBUTE_NORETURN __attribute__((noreturn))
285 #elif defined(_MSC_VER)
286 #define LLVM_ATTRIBUTE_NORETURN __declspec(noreturn)
287 #else
288 #define LLVM_ATTRIBUTE_NORETURN
289 #endif
290
291 /// LLVM_EXTENSION - Support compilers where we have a keyword to suppress
292 /// pedantic diagnostics.
293 #ifdef __GNUC__
294 #define LLVM_EXTENSION __extension__
295 #else
296 #define LLVM_EXTENSION
297 #endif
298
299 // LLVM_ATTRIBUTE_DEPRECATED(decl, "message")
300 #if __has_feature(attribute_deprecated_with_message)
301 # define LLVM_ATTRIBUTE_DEPRECATED(decl, message) \
302   decl __attribute__((deprecated(message)))
303 #elif defined(__GNUC__)
304 # define LLVM_ATTRIBUTE_DEPRECATED(decl, message) \
305   decl __attribute__((deprecated))
306 #elif defined(_MSC_VER)
307 # define LLVM_ATTRIBUTE_DEPRECATED(decl, message) \
308   __declspec(deprecated(message)) decl
309 #else
310 # define LLVM_ATTRIBUTE_DEPRECATED(decl, message) \
311   decl
312 #endif
313
314 /// LLVM_BUILTIN_UNREACHABLE - On compilers which support it, expands
315 /// to an expression which states that it is undefined behavior for the
316 /// compiler to reach this point.  Otherwise is not defined.
317 #if __has_builtin(__builtin_unreachable) || __GNUC_PREREQ(4, 5)
318 # define LLVM_BUILTIN_UNREACHABLE __builtin_unreachable()
319 #elif defined(_MSC_VER)
320 # define LLVM_BUILTIN_UNREACHABLE __assume(false)
321 #endif
322
323 /// LLVM_BUILTIN_TRAP - On compilers which support it, expands to an expression
324 /// which causes the program to exit abnormally.
325 #if __has_builtin(__builtin_trap) || __GNUC_PREREQ(4, 3)
326 # define LLVM_BUILTIN_TRAP __builtin_trap()
327 #else
328 # define LLVM_BUILTIN_TRAP *(volatile int*)0x11 = 0
329 #endif
330
331 /// \macro LLVM_ASSUME_ALIGNED
332 /// \brief Returns a pointer with an assumed alignment.
333 #if __has_builtin(__builtin_assume_aligned) && __GNUC_PREREQ(4, 7)
334 # define LLVM_ASSUME_ALIGNED(p, a) __builtin_assume_aligned(p, a)
335 #elif defined(LLVM_BUILTIN_UNREACHABLE)
336 // As of today, clang does not support __builtin_assume_aligned.
337 # define LLVM_ASSUME_ALIGNED(p, a) \
338            (((uintptr_t(p) % (a)) == 0) ? (p) : (LLVM_BUILTIN_UNREACHABLE, (p)))
339 #else
340 # define LLVM_ASSUME_ALIGNED(p, a) (p)
341 #endif
342
343 /// \macro LLVM_FUNCTION_NAME
344 /// \brief Expands to __func__ on compilers which support it.  Otherwise,
345 /// expands to a compiler-dependent replacement.
346 #if defined(_MSC_VER)
347 # define LLVM_FUNCTION_NAME __FUNCTION__
348 #else
349 # define LLVM_FUNCTION_NAME __func__
350 #endif
351
352 #if defined(HAVE_SANITIZER_MSAN_INTERFACE_H)
353 # include <sanitizer/msan_interface.h>
354 #else
355 # define __msan_allocated_memory(p, size)
356 # define __msan_unpoison(p, size)
357 #endif
358
359 /// \macro LLVM_MEMORY_SANITIZER_BUILD
360 /// \brief Whether LLVM itself is built with MemorySanitizer instrumentation.
361 #if __has_feature(memory_sanitizer)
362 # define LLVM_MEMORY_SANITIZER_BUILD 1
363 #else
364 # define LLVM_MEMORY_SANITIZER_BUILD 0
365 #endif
366
367 /// \macro LLVM_ADDRESS_SANITIZER_BUILD
368 /// \brief Whether LLVM itself is built with AddressSanitizer instrumentation.
369 #if __has_feature(address_sanitizer) || defined(__SANITIZE_ADDRESS__)
370 # define LLVM_ADDRESS_SANITIZER_BUILD 1
371 #else
372 # define LLVM_ADDRESS_SANITIZER_BUILD 0
373 #endif
374
375 /// \macro LLVM_IS_UNALIGNED_ACCESS_FAST
376 /// \brief Is unaligned memory access fast on the host machine.
377 ///
378 /// Don't specialize on alignment for platforms where unaligned memory accesses
379 /// generates the same code as aligned memory accesses for common types.
380 #if defined(_M_AMD64) || defined(_M_IX86) || defined(__amd64) || \
381     defined(__amd64__) || defined(__x86_64) || defined(__x86_64__) || \
382     defined(_X86_) || defined(__i386) || defined(__i386__)
383 # define LLVM_IS_UNALIGNED_ACCESS_FAST 1
384 #else
385 # define LLVM_IS_UNALIGNED_ACCESS_FAST 0
386 #endif
387
388 /// \macro LLVM_EXPLICIT
389 /// \brief Expands to explicit on compilers which support explicit conversion
390 /// operators. Otherwise expands to nothing.
391 #if __has_feature(cxx_explicit_conversions) || \
392     defined(__GXX_EXPERIMENTAL_CXX0X__) || LLVM_MSC_PREREQ(1800)
393 #define LLVM_EXPLICIT explicit
394 #else
395 #define LLVM_EXPLICIT
396 #endif
397
398 /// \macro LLVM_STATIC_ASSERT
399 /// \brief Expands to C/C++'s static_assert on compilers which support it.
400 #if __has_feature(cxx_static_assert) || \
401     defined(__GXX_EXPERIMENTAL_CXX0X__) || LLVM_MSC_PREREQ(1600)
402 # define LLVM_STATIC_ASSERT(expr, msg) static_assert(expr, msg)
403 #elif __has_feature(c_static_assert)
404 # define LLVM_STATIC_ASSERT(expr, msg) _Static_assert(expr, msg)
405 #elif __has_extension(c_static_assert)
406 # define LLVM_STATIC_ASSERT(expr, msg) LLVM_EXTENSION _Static_assert(expr, msg)
407 #else
408 # define LLVM_STATIC_ASSERT(expr, msg)
409 #endif
410
411 /// \macro LLVM_ENUM_INT_TYPE
412 /// \brief Expands to colon followed by the given integral type on compilers
413 /// which support C++11 strong enums.  This can be used to make enums unsigned
414 /// with MSVC.
415 #if __has_feature(cxx_strong_enums) || LLVM_MSC_PREREQ(1600)
416 # define LLVM_ENUM_INT_TYPE(intty) : intty
417 #else
418 # define LLVM_ENUM_INT_TYPE(intty)
419 #endif
420
421 /// \brief Does the compiler support C++11 semantics for strongly typed forward
422 /// declared enums?
423 #if __has_feature(cxx_strong_enums) || LLVM_MSC_PREREQ(1700)
424 #define LLVM_HAS_STRONG_ENUMS 1
425 #else
426 #define LLVM_HAS_STRONG_ENUMS 0
427 #endif
428
429 /// \brief Does the compiler support generalized initializers (using braced
430 /// lists and std::initializer_list).  While clang may claim it supports general
431 /// initializers, if we're using MSVC's headers, we might not have a usable
432 /// std::initializer list type from the STL.  Disable this for now.
433 #if __has_feature(cxx_generalized_initializers) && !defined(_MSC_VER)
434 #define LLVM_HAS_INITIALIZER_LISTS 1
435 #else
436 #define LLVM_HAS_INITIALIZER_LISTS 0
437 #endif
438
439 #endif