Use returns_nonnull in BumpPtrAllocator and MallocAllocator to avoid null-check in...
[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 ///  * 1700: Microsoft Visual Studio 2012 / 11.0
51 ///  * 1800: Microsoft Visual Studio 2013 / 12.0
52 #ifdef _MSC_VER
53 #define LLVM_MSC_PREREQ(version) (_MSC_VER >= (version))
54
55 // We require at least MSVC 2012.
56 #if !LLVM_MSC_PREREQ(1700)
57 #error LLVM requires at least MSVC 2012.
58 #endif
59
60 #else
61 #define LLVM_MSC_PREREQ(version) 0
62 #endif
63
64 #ifndef _MSC_VER
65 #define LLVM_NOEXCEPT noexcept
66 #else
67 #define LLVM_NOEXCEPT
68 #endif
69
70 /// \brief Does the compiler support r-value reference *this?
71 ///
72 /// Sadly, this is separate from just r-value reference support because GCC
73 /// implemented everything but this thus far. No release of GCC yet has support
74 /// for this feature so it is enabled with Clang only.
75 /// FIXME: This should change to a version check when GCC grows support for it.
76 #if __has_feature(cxx_rvalue_references)
77 #define LLVM_HAS_RVALUE_REFERENCE_THIS 1
78 #else
79 #define LLVM_HAS_RVALUE_REFERENCE_THIS 0
80 #endif
81
82 /// \macro LLVM_HAS_VARIADIC_TEMPLATES
83 /// \brief Does this compiler support variadic templates.
84 ///
85 /// Implies LLVM_HAS_RVALUE_REFERENCES and the existence of std::forward.
86 #if __has_feature(cxx_variadic_templates) || LLVM_MSC_PREREQ(1800)
87 # define LLVM_HAS_VARIADIC_TEMPLATES 1
88 #else
89 # define LLVM_HAS_VARIADIC_TEMPLATES 0
90 #endif
91
92 /// Expands to '&' if r-value references are supported.
93 ///
94 /// This can be used to provide l-value/r-value overrides of member functions.
95 /// The r-value override should be guarded by LLVM_HAS_RVALUE_REFERENCE_THIS
96 #if LLVM_HAS_RVALUE_REFERENCE_THIS
97 #define LLVM_LVALUE_FUNCTION &
98 #else
99 #define LLVM_LVALUE_FUNCTION
100 #endif
101
102 /// LLVM_DELETED_FUNCTION - Expands to = delete if the compiler supports it.
103 /// Use to mark functions as uncallable. Member functions with this should
104 /// be declared private so that some behavior is kept in C++03 mode.
105 ///
106 /// class DontCopy {
107 /// private:
108 ///   DontCopy(const DontCopy&) LLVM_DELETED_FUNCTION;
109 ///   DontCopy &operator =(const DontCopy&) LLVM_DELETED_FUNCTION;
110 /// public:
111 ///   ...
112 /// };
113 #if __has_feature(cxx_deleted_functions) || \
114     defined(__GXX_EXPERIMENTAL_CXX0X__) || LLVM_MSC_PREREQ(1800)
115 #define LLVM_DELETED_FUNCTION = delete
116 #else
117 #define LLVM_DELETED_FUNCTION
118 #endif
119
120 #if __has_feature(cxx_constexpr) || defined(__GXX_EXPERIMENTAL_CXX0X__)
121 # define LLVM_CONSTEXPR constexpr
122 #else
123 # define LLVM_CONSTEXPR
124 #endif
125
126 /// LLVM_LIBRARY_VISIBILITY - If a class marked with this attribute is linked
127 /// into a shared library, then the class should be private to the library and
128 /// not accessible from outside it.  Can also be used to mark variables and
129 /// functions, making them private to any shared library they are linked into.
130 /// On PE/COFF targets, library visibility is the default, so this isn't needed.
131 #if (__has_attribute(visibility) || __GNUC_PREREQ(4, 0)) &&                    \
132     !defined(__MINGW32__) && !defined(__CYGWIN__) && !defined(LLVM_ON_WIN32)
133 #define LLVM_LIBRARY_VISIBILITY __attribute__ ((visibility("hidden")))
134 #else
135 #define LLVM_LIBRARY_VISIBILITY
136 #endif
137
138 #if __has_attribute(used) || __GNUC_PREREQ(3, 1)
139 #define LLVM_ATTRIBUTE_USED __attribute__((__used__))
140 #else
141 #define LLVM_ATTRIBUTE_USED
142 #endif
143
144 #if __has_attribute(warn_unused_result) || __GNUC_PREREQ(3, 4)
145 #define LLVM_ATTRIBUTE_UNUSED_RESULT __attribute__((__warn_unused_result__))
146 #else
147 #define LLVM_ATTRIBUTE_UNUSED_RESULT
148 #endif
149
150 // Some compilers warn about unused functions. When a function is sometimes
151 // used or not depending on build settings (e.g. a function only called from
152 // within "assert"), this attribute can be used to suppress such warnings.
153 //
154 // However, it shouldn't be used for unused *variables*, as those have a much
155 // more portable solution:
156 //   (void)unused_var_name;
157 // Prefer cast-to-void wherever it is sufficient.
158 #if __has_attribute(unused) || __GNUC_PREREQ(3, 1)
159 #define LLVM_ATTRIBUTE_UNUSED __attribute__((__unused__))
160 #else
161 #define LLVM_ATTRIBUTE_UNUSED
162 #endif
163
164 // FIXME: Provide this for PE/COFF targets.
165 #if (__has_attribute(weak) || __GNUC_PREREQ(4, 0)) &&                          \
166     (!defined(__MINGW32__) && !defined(__CYGWIN__) && !defined(LLVM_ON_WIN32))
167 #define LLVM_ATTRIBUTE_WEAK __attribute__((__weak__))
168 #else
169 #define LLVM_ATTRIBUTE_WEAK
170 #endif
171
172 // Prior to clang 3.2, clang did not accept any spelling of
173 // __has_attribute(const), so assume it is supported.
174 #if defined(__clang__) || defined(__GNUC__)
175 // aka 'CONST' but following LLVM Conventions.
176 #define LLVM_READNONE __attribute__((__const__))
177 #else
178 #define LLVM_READNONE
179 #endif
180
181 #if __has_attribute(pure) || defined(__GNUC__)
182 // aka 'PURE' but following LLVM Conventions.
183 #define LLVM_READONLY __attribute__((__pure__))
184 #else
185 #define LLVM_READONLY
186 #endif
187
188 #if __has_builtin(__builtin_expect) || __GNUC_PREREQ(4, 0)
189 #define LLVM_LIKELY(EXPR) __builtin_expect((bool)(EXPR), true)
190 #define LLVM_UNLIKELY(EXPR) __builtin_expect((bool)(EXPR), false)
191 #else
192 #define LLVM_LIKELY(EXPR) (EXPR)
193 #define LLVM_UNLIKELY(EXPR) (EXPR)
194 #endif
195
196 // C++ doesn't support 'extern template' of template specializations.  GCC does,
197 // but requires __extension__ before it.  In the header, use this:
198 //   EXTERN_TEMPLATE_INSTANTIATION(class foo<bar>);
199 // in the .cpp file, use this:
200 //   TEMPLATE_INSTANTIATION(class foo<bar>);
201 #ifdef __GNUC__
202 #define EXTERN_TEMPLATE_INSTANTIATION(X) __extension__ extern template X
203 #define TEMPLATE_INSTANTIATION(X) template X
204 #else
205 #define EXTERN_TEMPLATE_INSTANTIATION(X)
206 #define TEMPLATE_INSTANTIATION(X)
207 #endif
208
209 /// LLVM_ATTRIBUTE_NOINLINE - On compilers where we have a directive to do so,
210 /// mark a method "not for inlining".
211 #if __has_attribute(noinline) || __GNUC_PREREQ(3, 4)
212 #define LLVM_ATTRIBUTE_NOINLINE __attribute__((noinline))
213 #elif defined(_MSC_VER)
214 #define LLVM_ATTRIBUTE_NOINLINE __declspec(noinline)
215 #else
216 #define LLVM_ATTRIBUTE_NOINLINE
217 #endif
218
219 /// LLVM_ATTRIBUTE_ALWAYS_INLINE - On compilers where we have a directive to do
220 /// so, mark a method "always inline" because it is performance sensitive. GCC
221 /// 3.4 supported this but is buggy in various cases and produces unimplemented
222 /// errors, just use it in GCC 4.0 and later.
223 #if __has_attribute(always_inline) || __GNUC_PREREQ(4, 0)
224 #define LLVM_ATTRIBUTE_ALWAYS_INLINE inline __attribute__((always_inline))
225 #elif defined(_MSC_VER)
226 #define LLVM_ATTRIBUTE_ALWAYS_INLINE __forceinline
227 #else
228 #define LLVM_ATTRIBUTE_ALWAYS_INLINE
229 #endif
230
231 #ifdef __GNUC__
232 #define LLVM_ATTRIBUTE_NORETURN __attribute__((noreturn))
233 #elif defined(_MSC_VER)
234 #define LLVM_ATTRIBUTE_NORETURN __declspec(noreturn)
235 #else
236 #define LLVM_ATTRIBUTE_NORETURN
237 #endif
238
239 #if __has_attribute(returns_nonnull) || __GNUC_PREREQ(4, 9)
240 #define LLVM_ATTRIBUTE_RETURNS_NONNULL __attribute__((returns_nonnull))
241 #else
242 #define LLVM_ATTRIBUTE_RETURNS_NONNULL
243 #endif
244
245 /// LLVM_EXTENSION - Support compilers where we have a keyword to suppress
246 /// pedantic diagnostics.
247 #ifdef __GNUC__
248 #define LLVM_EXTENSION __extension__
249 #else
250 #define LLVM_EXTENSION
251 #endif
252
253 // LLVM_ATTRIBUTE_DEPRECATED(decl, "message")
254 #if __has_feature(attribute_deprecated_with_message)
255 # define LLVM_ATTRIBUTE_DEPRECATED(decl, message) \
256   decl __attribute__((deprecated(message)))
257 #elif defined(__GNUC__)
258 # define LLVM_ATTRIBUTE_DEPRECATED(decl, message) \
259   decl __attribute__((deprecated))
260 #elif defined(_MSC_VER)
261 # define LLVM_ATTRIBUTE_DEPRECATED(decl, message) \
262   __declspec(deprecated(message)) decl
263 #else
264 # define LLVM_ATTRIBUTE_DEPRECATED(decl, message) \
265   decl
266 #endif
267
268 /// LLVM_BUILTIN_UNREACHABLE - On compilers which support it, expands
269 /// to an expression which states that it is undefined behavior for the
270 /// compiler to reach this point.  Otherwise is not defined.
271 #if __has_builtin(__builtin_unreachable) || __GNUC_PREREQ(4, 5)
272 # define LLVM_BUILTIN_UNREACHABLE __builtin_unreachable()
273 #elif defined(_MSC_VER)
274 # define LLVM_BUILTIN_UNREACHABLE __assume(false)
275 #endif
276
277 /// LLVM_BUILTIN_TRAP - On compilers which support it, expands to an expression
278 /// which causes the program to exit abnormally.
279 #if __has_builtin(__builtin_trap) || __GNUC_PREREQ(4, 3)
280 # define LLVM_BUILTIN_TRAP __builtin_trap()
281 #else
282 # define LLVM_BUILTIN_TRAP *(volatile int*)0x11 = 0
283 #endif
284
285 /// \macro LLVM_ASSUME_ALIGNED
286 /// \brief Returns a pointer with an assumed alignment.
287 #if __has_builtin(__builtin_assume_aligned) && __GNUC_PREREQ(4, 7)
288 # define LLVM_ASSUME_ALIGNED(p, a) __builtin_assume_aligned(p, a)
289 #elif defined(LLVM_BUILTIN_UNREACHABLE)
290 // As of today, clang does not support __builtin_assume_aligned.
291 # define LLVM_ASSUME_ALIGNED(p, a) \
292            (((uintptr_t(p) % (a)) == 0) ? (p) : (LLVM_BUILTIN_UNREACHABLE, (p)))
293 #else
294 # define LLVM_ASSUME_ALIGNED(p, a) (p)
295 #endif
296
297 /// \macro LLVM_FUNCTION_NAME
298 /// \brief Expands to __func__ on compilers which support it.  Otherwise,
299 /// expands to a compiler-dependent replacement.
300 #if defined(_MSC_VER)
301 # define LLVM_FUNCTION_NAME __FUNCTION__
302 #else
303 # define LLVM_FUNCTION_NAME __func__
304 #endif
305
306 /// \macro LLVM_MEMORY_SANITIZER_BUILD
307 /// \brief Whether LLVM itself is built with MemorySanitizer instrumentation.
308 #if __has_feature(memory_sanitizer)
309 # define LLVM_MEMORY_SANITIZER_BUILD 1
310 # include <sanitizer/msan_interface.h>
311 #else
312 # define LLVM_MEMORY_SANITIZER_BUILD 0
313 # define __msan_allocated_memory(p, size)
314 # define __msan_unpoison(p, size)
315 #endif
316
317 /// \macro LLVM_ADDRESS_SANITIZER_BUILD
318 /// \brief Whether LLVM itself is built with AddressSanitizer instrumentation.
319 #if __has_feature(address_sanitizer) || defined(__SANITIZE_ADDRESS__)
320 # define LLVM_ADDRESS_SANITIZER_BUILD 1
321 #else
322 # define LLVM_ADDRESS_SANITIZER_BUILD 0
323 #endif
324
325 /// \macro LLVM_IS_UNALIGNED_ACCESS_FAST
326 /// \brief Is unaligned memory access fast on the host machine.
327 ///
328 /// Don't specialize on alignment for platforms where unaligned memory accesses
329 /// generates the same code as aligned memory accesses for common types.
330 #if defined(_M_AMD64) || defined(_M_IX86) || defined(__amd64) || \
331     defined(__amd64__) || defined(__x86_64) || defined(__x86_64__) || \
332     defined(_X86_) || defined(__i386) || defined(__i386__)
333 # define LLVM_IS_UNALIGNED_ACCESS_FAST 1
334 #else
335 # define LLVM_IS_UNALIGNED_ACCESS_FAST 0
336 #endif
337
338 /// \macro LLVM_EXPLICIT
339 /// \brief Expands to explicit on compilers which support explicit conversion
340 /// operators. Otherwise expands to nothing.
341 #if __has_feature(cxx_explicit_conversions) || \
342     defined(__GXX_EXPERIMENTAL_CXX0X__) || LLVM_MSC_PREREQ(1800)
343 #define LLVM_EXPLICIT explicit
344 #else
345 #define LLVM_EXPLICIT
346 #endif
347
348 /// \brief Does the compiler support generalized initializers (using braced
349 /// lists and std::initializer_list).  While clang may claim it supports general
350 /// initializers, if we're using MSVC's headers, we might not have a usable
351 /// std::initializer list type from the STL.  Disable this for now.
352 #if __has_feature(cxx_generalized_initializers) && !defined(_MSC_VER)
353 #define LLVM_HAS_INITIALIZER_LISTS 1
354 #else
355 #define LLVM_HAS_INITIALIZER_LISTS 0
356 #endif
357
358 /// \brief Mark debug helper function definitions like dump() that should not be
359 /// stripped from debug builds.
360 // FIXME: Move this to a private config.h as it's not usable in public headers.
361 #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
362 #define LLVM_DUMP_METHOD LLVM_ATTRIBUTE_NOINLINE LLVM_ATTRIBUTE_USED
363 #else
364 #define LLVM_DUMP_METHOD LLVM_ATTRIBUTE_NOINLINE
365 #endif
366
367 #endif