1 // Copyright 2013 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
8 // Platform headers for feature detection below.
9 #if defined(__ANDROID__)
10 # include <sys/cdefs.h>
11 #elif defined(__APPLE__)
12 # include <TargetConditionals.h>
13 #elif defined(__linux__)
14 # include <features.h>
18 // This macro allows to test for the version of the GNU C library (or
19 // a compatible C library that masquerades as glibc). It evaluates to
20 // 0 if libc is not GNU libc or compatible.
22 // #if V8_GLIBC_PREREQ(2, 3)
25 #if defined(__GLIBC__) && defined(__GLIBC_MINOR__)
26 # define V8_GLIBC_PREREQ(major, minor) \
27 ((__GLIBC__ * 100 + __GLIBC_MINOR__) >= ((major) * 100 + (minor)))
29 # define V8_GLIBC_PREREQ(major, minor) 0
33 // This macro allows to test for the version of the GNU C++ compiler.
34 // Note that this also applies to compilers that masquerade as GCC,
35 // for example clang and the Intel C++ compiler for Linux.
37 // #if V8_GNUC_PREREQ(4, 3, 1)
40 #if defined(__GNUC__) && defined(__GNUC_MINOR__) && defined(__GNUC_PATCHLEVEL__)
41 # define V8_GNUC_PREREQ(major, minor, patchlevel) \
42 ((__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__) >= \
43 ((major) * 10000 + (minor) * 100 + (patchlevel)))
44 #elif defined(__GNUC__) && defined(__GNUC_MINOR__)
45 # define V8_GNUC_PREREQ(major, minor, patchlevel) \
46 ((__GNUC__ * 10000 + __GNUC_MINOR__) >= \
47 ((major) * 10000 + (minor) * 100 + (patchlevel)))
49 # define V8_GNUC_PREREQ(major, minor, patchlevel) 0
54 // -----------------------------------------------------------------------------
55 // Operating system detection
57 // V8_OS_ANDROID - Android
58 // V8_OS_BSD - BSDish (Mac OS X, Net/Free/Open/DragonFlyBSD)
59 // V8_OS_CYGWIN - Cygwin
60 // V8_OS_DRAGONFLYBSD - DragonFlyBSD
61 // V8_OS_FREEBSD - FreeBSD
62 // V8_OS_LINUX - Linux
63 // V8_OS_MACOSX - Mac OS X
64 // V8_OS_NACL - Native Client
65 // V8_OS_NETBSD - NetBSD
66 // V8_OS_OPENBSD - OpenBSD
67 // V8_OS_POSIX - POSIX compatible (mostly everything except Windows)
68 // V8_OS_QNX - QNX Neutrino
69 // V8_OS_SOLARIS - Sun Solaris and OpenSolaris
70 // V8_OS_WIN - Microsoft Windows
72 #if defined(__ANDROID__)
73 # define V8_OS_ANDROID 1
74 # define V8_OS_LINUX 1
75 # define V8_OS_POSIX 1
76 #elif defined(__APPLE__)
78 # define V8_OS_MACOSX 1
79 # define V8_OS_POSIX 1
80 #elif defined(__native_client__)
82 # define V8_OS_POSIX 1
83 #elif defined(__CYGWIN__)
84 # define V8_OS_CYGWIN 1
85 # define V8_OS_POSIX 1
86 #elif defined(__linux__)
87 # define V8_OS_LINUX 1
88 # define V8_OS_POSIX 1
90 # define V8_OS_POSIX 1
91 # define V8_OS_SOLARIS 1
92 #elif defined(__FreeBSD__)
94 # define V8_OS_FREEBSD 1
95 # define V8_OS_POSIX 1
96 #elif defined(__DragonFly__)
98 # define V8_OS_DRAGONFLYBSD 1
99 # define V8_OS_POSIX 1
100 #elif defined(__NetBSD__)
102 # define V8_OS_NETBSD 1
103 # define V8_OS_POSIX 1
104 #elif defined(__OpenBSD__)
106 # define V8_OS_OPENBSD 1
107 # define V8_OS_POSIX 1
108 #elif defined(__QNXNTO__)
109 # define V8_OS_POSIX 1
111 #elif defined(_WIN32)
116 // -----------------------------------------------------------------------------
117 // C library detection
119 // V8_LIBC_MSVCRT - MSVC libc
120 // V8_LIBC_BIONIC - Bionic libc
121 // V8_LIBC_BSD - BSD libc derivate
122 // V8_LIBC_GLIBC - GNU C library
124 // Note that testing for libc must be done using #if not #ifdef. For example,
125 // to test for the GNU C library, use:
130 #if defined (_MSC_VER)
131 # define V8_LIBC_MSVCRT 1
132 #elif defined(__BIONIC__)
133 # define V8_LIBC_BIONIC 1
134 # define V8_LIBC_BSD 1
135 #elif defined(__GLIBC__) || defined(__GNU_LIBRARY__)
136 # define V8_LIBC_GLIBC 1
138 # define V8_LIBC_BSD V8_OS_BSD
142 // -----------------------------------------------------------------------------
143 // Compiler detection
145 // V8_CC_CLANG - Clang
146 // V8_CC_GNU - GNU C++
147 // V8_CC_INTEL - Intel C++
148 // V8_CC_MINGW - Minimalist GNU for Windows
149 // V8_CC_MINGW32 - Minimalist GNU for Windows (mingw32)
150 // V8_CC_MINGW64 - Minimalist GNU for Windows (mingw-w64)
151 // V8_CC_MSVC - Microsoft Visual C/C++
153 // C++11 feature detection
155 // V8_HAS_CXX11_ALIGNAS - alignas specifier supported
156 // V8_HAS_CXX11_ALIGNOF - alignof(type) operator supported
157 // V8_HAS_CXX11_STATIC_ASSERT - static_assert() supported
158 // V8_HAS_CXX11_DELETE - deleted functions supported
159 // V8_HAS_CXX11_FINAL - final marker supported
160 // V8_HAS_CXX11_OVERRIDE - override marker supported
162 // Compiler-specific feature detection
164 // V8_HAS___ALIGNOF - __alignof(type) operator supported
165 // V8_HAS___ALIGNOF__ - __alignof__(type) operator supported
166 // V8_HAS_ATTRIBUTE_ALIGNED - __attribute__((aligned(n))) supported
167 // V8_HAS_ATTRIBUTE_ALWAYS_INLINE - __attribute__((always_inline))
169 // V8_HAS_ATTRIBUTE_DEPRECATED - __attribute__((deprecated)) supported
170 // V8_HAS_ATTRIBUTE_NOINLINE - __attribute__((noinline)) supported
171 // V8_HAS_ATTRIBUTE_UNUSED - __attribute__((unused)) supported
172 // V8_HAS_ATTRIBUTE_VISIBILITY - __attribute__((visibility)) supported
173 // V8_HAS_ATTRIBUTE_WARN_UNUSED_RESULT - __attribute__((warn_unused_result))
175 // V8_HAS_BUILTIN_CLZ - __builtin_clz() supported
176 // V8_HAS_BUILTIN_CTZ - __builtin_ctz() supported
177 // V8_HAS_BUILTIN_EXPECT - __builtin_expect() supported
178 // V8_HAS_BUILTIN_FRAME_ADDRESS - __builtin_frame_address() supported
179 // V8_HAS_BUILTIN_POPCOUNT - __builtin_popcount() supported
180 // V8_HAS_BUILTIN_SADD_OVERFLOW - __builtin_sadd_overflow() supported
181 // V8_HAS_BUILTIN_SSUB_OVERFLOW - __builtin_ssub_overflow() supported
182 // V8_HAS_DECLSPEC_ALIGN - __declspec(align(n)) supported
183 // V8_HAS_DECLSPEC_DEPRECATED - __declspec(deprecated) supported
184 // V8_HAS_DECLSPEC_NOINLINE - __declspec(noinline) supported
185 // V8_HAS___FINAL - __final supported in non-C++11 mode
186 // V8_HAS___FORCEINLINE - __forceinline supported
188 // Note that testing for compilers and/or features must be done using #if
189 // not #ifdef. For example, to test for Intel C++ Compiler, use:
194 #if defined(__clang__)
196 # define V8_CC_CLANG 1
198 // Clang defines __alignof__ as alias for __alignof
199 # define V8_HAS___ALIGNOF 1
200 # define V8_HAS___ALIGNOF__ V8_HAS___ALIGNOF
202 # define V8_HAS_ATTRIBUTE_ALIGNED (__has_attribute(aligned))
203 # define V8_HAS_ATTRIBUTE_ALWAYS_INLINE (__has_attribute(always_inline))
204 # define V8_HAS_ATTRIBUTE_DEPRECATED (__has_attribute(deprecated))
205 # define V8_HAS_ATTRIBUTE_NOINLINE (__has_attribute(noinline))
206 # define V8_HAS_ATTRIBUTE_UNUSED (__has_attribute(unused))
207 # define V8_HAS_ATTRIBUTE_VISIBILITY (__has_attribute(visibility))
208 # define V8_HAS_ATTRIBUTE_WARN_UNUSED_RESULT \
209 (__has_attribute(warn_unused_result))
211 # define V8_HAS_BUILTIN_CLZ (__has_builtin(__builtin_clz))
212 # define V8_HAS_BUILTIN_CTZ (__has_builtin(__builtin_ctz))
213 # define V8_HAS_BUILTIN_EXPECT (__has_builtin(__builtin_expect))
214 # define V8_HAS_BUILTIN_FRAME_ADDRESS (__has_builtin(__builtin_frame_address))
215 # define V8_HAS_BUILTIN_POPCOUNT (__has_builtin(__builtin_popcount))
216 # define V8_HAS_BUILTIN_SADD_OVERFLOW (__has_builtin(__builtin_sadd_overflow))
217 # define V8_HAS_BUILTIN_SSUB_OVERFLOW (__has_builtin(__builtin_ssub_overflow))
219 # define V8_HAS_CXX11_ALIGNAS (__has_feature(cxx_alignas))
220 # define V8_HAS_CXX11_STATIC_ASSERT (__has_feature(cxx_static_assert))
221 # define V8_HAS_CXX11_DELETE (__has_feature(cxx_deleted_functions))
222 # define V8_HAS_CXX11_FINAL (__has_feature(cxx_override_control))
223 # define V8_HAS_CXX11_OVERRIDE (__has_feature(cxx_override_control))
225 #elif defined(__GNUC__)
228 // Intel C++ also masquerades as GCC 3.2.0
229 # define V8_CC_INTEL (defined(__INTEL_COMPILER))
230 # define V8_CC_MINGW32 (defined(__MINGW32__))
231 # define V8_CC_MINGW64 (defined(__MINGW64__))
232 # define V8_CC_MINGW (V8_CC_MINGW32 || V8_CC_MINGW64)
234 # define V8_HAS___ALIGNOF__ (V8_GNUC_PREREQ(4, 3, 0))
236 # define V8_HAS_ATTRIBUTE_ALIGNED (V8_GNUC_PREREQ(2, 95, 0))
237 // always_inline is available in gcc 4.0 but not very reliable until 4.4.
238 // Works around "sorry, unimplemented: inlining failed" build errors with
240 # define V8_HAS_ATTRIBUTE_ALWAYS_INLINE (V8_GNUC_PREREQ(4, 4, 0))
241 # define V8_HAS_ATTRIBUTE_DEPRECATED (V8_GNUC_PREREQ(3, 4, 0))
242 # define V8_HAS_ATTRIBUTE_DEPRECATED_MESSAGE (V8_GNUC_PREREQ(4, 5, 0))
243 # define V8_HAS_ATTRIBUTE_NOINLINE (V8_GNUC_PREREQ(3, 4, 0))
244 # define V8_HAS_ATTRIBUTE_UNUSED (V8_GNUC_PREREQ(2, 95, 0))
245 # define V8_HAS_ATTRIBUTE_VISIBILITY (V8_GNUC_PREREQ(4, 3, 0))
246 # define V8_HAS_ATTRIBUTE_WARN_UNUSED_RESULT \
247 (!V8_CC_INTEL && V8_GNUC_PREREQ(4, 1, 0))
249 # define V8_HAS_BUILTIN_CLZ (V8_GNUC_PREREQ(3, 4, 0))
250 # define V8_HAS_BUILTIN_CTZ (V8_GNUC_PREREQ(3, 4, 0))
251 # define V8_HAS_BUILTIN_EXPECT (V8_GNUC_PREREQ(2, 96, 0))
252 # define V8_HAS_BUILTIN_FRAME_ADDRESS (V8_GNUC_PREREQ(2, 96, 0))
253 # define V8_HAS_BUILTIN_POPCOUNT (V8_GNUC_PREREQ(3, 4, 0))
255 // g++ requires -std=c++0x or -std=gnu++0x to support C++11 functionality
256 // without warnings (functionality used by the macros below). These modes
257 // are detectable by checking whether __GXX_EXPERIMENTAL_CXX0X__ is defined or,
258 // more standardly, by checking whether __cplusplus has a C++11 or greater
259 // value. Current versions of g++ do not correctly set __cplusplus, so we check
260 // both for forward compatibility.
261 # if defined(__GXX_EXPERIMENTAL_CXX0X__) || __cplusplus >= 201103L
262 # define V8_HAS_CXX11_ALIGNAS (V8_GNUC_PREREQ(4, 8, 0))
263 # define V8_HAS_CXX11_ALIGNOF (V8_GNUC_PREREQ(4, 8, 0))
264 # define V8_HAS_CXX11_STATIC_ASSERT (V8_GNUC_PREREQ(4, 3, 0))
265 # define V8_HAS_CXX11_DELETE (V8_GNUC_PREREQ(4, 4, 0))
266 # define V8_HAS_CXX11_OVERRIDE (V8_GNUC_PREREQ(4, 7, 0))
267 # define V8_HAS_CXX11_FINAL (V8_GNUC_PREREQ(4, 7, 0))
269 // '__final' is a non-C++11 GCC synonym for 'final', per GCC r176655.
270 # define V8_HAS___FINAL (V8_GNUC_PREREQ(4, 7, 0))
273 #elif defined(_MSC_VER)
275 # define V8_CC_MSVC 1
277 # define V8_HAS___ALIGNOF 1
279 # define V8_HAS_CXX11_FINAL 1
280 # define V8_HAS_CXX11_OVERRIDE 1
282 # define V8_HAS_DECLSPEC_ALIGN 1
283 # define V8_HAS_DECLSPEC_DEPRECATED 1
284 # define V8_HAS_DECLSPEC_NOINLINE 1
286 # define V8_HAS___FORCEINLINE 1
291 // -----------------------------------------------------------------------------
294 // A macro used to make better inlining. Don't bother for debug builds.
296 // V8_INLINE int GetZero() { return 0; }
297 #if !defined(DEBUG) && V8_HAS_ATTRIBUTE_ALWAYS_INLINE
298 # define V8_INLINE inline __attribute__((always_inline))
299 #elif !defined(DEBUG) && V8_HAS___FORCEINLINE
300 # define V8_INLINE __forceinline
302 # define V8_INLINE inline
306 // A macro used to tell the compiler to never inline a particular function.
307 // Don't bother for debug builds.
309 // V8_NOINLINE int GetMinusOne() { return -1; }
310 #if !defined(DEBUG) && V8_HAS_ATTRIBUTE_NOINLINE
311 # define V8_NOINLINE __attribute__((noinline))
312 #elif !defined(DEBUG) && V8_HAS_DECLSPEC_NOINLINE
313 # define V8_NOINLINE __declspec(noinline)
315 # define V8_NOINLINE /* NOT SUPPORTED */
319 // A macro to mark classes or functions as deprecated.
320 #if defined(V8_DEPRECATION_WARNINGS) && V8_HAS_ATTRIBUTE_DEPRECATED_MESSAGE
321 # define V8_DEPRECATED(message, declarator) \
322 declarator __attribute__((deprecated(message)))
323 #elif defined(V8_DEPRECATION_WARNINGS) && V8_HAS_ATTRIBUTE_DEPRECATED
324 # define V8_DEPRECATED(message, declarator) \
325 declarator __attribute__((deprecated))
326 #elif defined(V8_DEPRECATION_WARNINGS) && V8_HAS_DECLSPEC_DEPRECATED
327 # define V8_DEPRECATED(message, declarator) __declspec(deprecated) declarator
329 # define V8_DEPRECATED(message, declarator) declarator
333 // A macro to provide the compiler with branch prediction information.
334 #if V8_HAS_BUILTIN_EXPECT
335 # define V8_UNLIKELY(condition) (__builtin_expect(!!(condition), 0))
336 # define V8_LIKELY(condition) (__builtin_expect(!!(condition), 1))
338 # define V8_UNLIKELY(condition) (condition)
339 # define V8_LIKELY(condition) (condition)
343 // A macro to specify that a method is deleted from the corresponding class.
344 // Any attempt to use the method will always produce an error at compile time
345 // when this macro can be implemented (i.e. if the compiler supports C++11).
346 // If the current compiler does not support C++11, use of the annotated method
347 // will still cause an error, but the error will most likely occur at link time
348 // rather than at compile time. As a backstop, method declarations using this
349 // macro should be private.
353 // A(const A& other) V8_DELETE;
354 // A& operator=(const A& other) V8_DELETE;
356 #if V8_HAS_CXX11_DELETE
357 # define V8_DELETE = delete
359 # define V8_DELETE /* NOT SUPPORTED */
363 // This macro allows to specify memory alignment for structs, classes, etc.
365 // class V8_ALIGNED(16) MyClass { ... };
366 // V8_ALIGNED(32) int array[42];
367 #if V8_HAS_CXX11_ALIGNAS
368 # define V8_ALIGNED(n) alignas(n)
369 #elif V8_HAS_ATTRIBUTE_ALIGNED
370 # define V8_ALIGNED(n) __attribute__((aligned(n)))
371 #elif V8_HAS_DECLSPEC_ALIGN
372 # define V8_ALIGNED(n) __declspec(align(n))
374 # define V8_ALIGNED(n) /* NOT SUPPORTED */
378 // This macro is similar to V8_ALIGNED(), but takes a type instead of size
379 // in bytes. If the compiler does not supports using the alignment of the
380 // |type|, it will align according to the |alignment| instead. For example,
381 // Visual Studio C++ cannot combine __declspec(align) and __alignof. The
382 // |alignment| must be a literal that is used as a kind of worst-case fallback
385 // struct V8_ALIGNAS(AnotherClass, 16) NewClass { ... };
386 // V8_ALIGNAS(double, 8) int array[100];
387 #if V8_HAS_CXX11_ALIGNAS
388 # define V8_ALIGNAS(type, alignment) alignas(type)
389 #elif V8_HAS___ALIGNOF__ && V8_HAS_ATTRIBUTE_ALIGNED
390 # define V8_ALIGNAS(type, alignment) __attribute__((aligned(__alignof__(type))))
392 # define V8_ALIGNAS(type, alignment) V8_ALIGNED(alignment)
396 // This macro returns alignment in bytes (an integer power of two) required for
397 // any instance of the given type, which is either complete type, an array type,
398 // or a reference type.
400 // size_t alignment = V8_ALIGNOF(double);
401 #if V8_HAS_CXX11_ALIGNOF
402 # define V8_ALIGNOF(type) alignof(type)
403 #elif V8_HAS___ALIGNOF
404 # define V8_ALIGNOF(type) __alignof(type)
405 #elif V8_HAS___ALIGNOF__
406 # define V8_ALIGNOF(type) __alignof__(type)
408 // Note that alignment of a type within a struct can be less than the
409 // alignment of the type stand-alone (because of ancient ABIs), so this
410 // should only be used as a last resort.
411 namespace v8 { template <typename T> class AlignOfHelper { char c; T t; }; }
412 # define V8_ALIGNOF(type) (sizeof(::v8::AlignOfHelper<type>) - sizeof(type))
415 #endif // V8CONFIG_H_