2013-08-23 07:32:25 +00:00
|
|
|
// Copyright 2013 the V8 project authors. All rights reserved.
|
2014-04-29 06:42:26 +00:00
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file.
|
2013-08-23 07:32:25 +00:00
|
|
|
|
|
|
|
#ifndef V8CONFIG_H_
|
|
|
|
#define V8CONFIG_H_
|
|
|
|
|
2015-06-29 11:47:50 +00:00
|
|
|
// clang-format off
|
|
|
|
|
2013-08-30 12:09:50 +00:00
|
|
|
// Platform headers for feature detection below.
|
|
|
|
#if defined(__ANDROID__)
|
|
|
|
# include <sys/cdefs.h>
|
|
|
|
#elif defined(__APPLE__)
|
2013-08-30 12:30:09 +00:00
|
|
|
# include <TargetConditionals.h>
|
2013-08-30 12:09:50 +00:00
|
|
|
#elif defined(__linux__)
|
|
|
|
# include <features.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
// This macro allows to test for the version of the GNU C library (or
|
|
|
|
// a compatible C library that masquerades as glibc). It evaluates to
|
|
|
|
// 0 if libc is not GNU libc or compatible.
|
|
|
|
// Use like:
|
|
|
|
// #if V8_GLIBC_PREREQ(2, 3)
|
|
|
|
// ...
|
|
|
|
// #endif
|
|
|
|
#if defined(__GLIBC__) && defined(__GLIBC_MINOR__)
|
|
|
|
# define V8_GLIBC_PREREQ(major, minor) \
|
|
|
|
((__GLIBC__ * 100 + __GLIBC_MINOR__) >= ((major) * 100 + (minor)))
|
|
|
|
#else
|
|
|
|
# define V8_GLIBC_PREREQ(major, minor) 0
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
// This macro allows to test for the version of the GNU C++ compiler.
|
|
|
|
// Note that this also applies to compilers that masquerade as GCC,
|
|
|
|
// for example clang and the Intel C++ compiler for Linux.
|
|
|
|
// Use like:
|
|
|
|
// #if V8_GNUC_PREREQ(4, 3, 1)
|
|
|
|
// ...
|
|
|
|
// #endif
|
|
|
|
#if defined(__GNUC__) && defined(__GNUC_MINOR__) && defined(__GNUC_PATCHLEVEL__)
|
|
|
|
# define V8_GNUC_PREREQ(major, minor, patchlevel) \
|
|
|
|
((__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__) >= \
|
|
|
|
((major) * 10000 + (minor) * 100 + (patchlevel)))
|
|
|
|
#elif defined(__GNUC__) && defined(__GNUC_MINOR__)
|
2015-03-25 14:22:27 +00:00
|
|
|
# define V8_GNUC_PREREQ(major, minor, patchlevel) \
|
|
|
|
((__GNUC__ * 10000 + __GNUC_MINOR__ * 100) >= \
|
2013-08-30 12:09:50 +00:00
|
|
|
((major) * 10000 + (minor) * 100 + (patchlevel)))
|
|
|
|
#else
|
|
|
|
# define V8_GNUC_PREREQ(major, minor, patchlevel) 0
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-08-23 07:32:25 +00:00
|
|
|
// -----------------------------------------------------------------------------
|
2019-09-19 11:26:15 +00:00
|
|
|
// Operating system detection (host)
|
2013-08-23 07:32:25 +00:00
|
|
|
//
|
|
|
|
// V8_OS_ANDROID - Android
|
|
|
|
// V8_OS_BSD - BSDish (Mac OS X, Net/Free/Open/DragonFlyBSD)
|
|
|
|
// V8_OS_CYGWIN - Cygwin
|
|
|
|
// V8_OS_DRAGONFLYBSD - DragonFlyBSD
|
|
|
|
// V8_OS_FREEBSD - FreeBSD
|
2017-06-11 06:31:33 +00:00
|
|
|
// V8_OS_FUCHSIA - Fuchsia
|
2013-08-23 07:32:25 +00:00
|
|
|
// V8_OS_LINUX - Linux
|
|
|
|
// V8_OS_MACOSX - Mac OS X
|
2019-04-16 13:48:14 +00:00
|
|
|
// V8_OS_IOS - iOS
|
2013-08-23 07:32:25 +00:00
|
|
|
// V8_OS_NETBSD - NetBSD
|
|
|
|
// V8_OS_OPENBSD - OpenBSD
|
|
|
|
// V8_OS_POSIX - POSIX compatible (mostly everything except Windows)
|
2014-01-02 07:04:05 +00:00
|
|
|
// V8_OS_QNX - QNX Neutrino
|
2013-08-23 07:32:25 +00:00
|
|
|
// V8_OS_SOLARIS - Sun Solaris and OpenSolaris
|
2015-01-30 08:01:53 +00:00
|
|
|
// V8_OS_AIX - AIX
|
2013-08-23 07:32:25 +00:00
|
|
|
// V8_OS_WIN - Microsoft Windows
|
|
|
|
|
|
|
|
#if defined(__ANDROID__)
|
|
|
|
# define V8_OS_ANDROID 1
|
|
|
|
# define V8_OS_LINUX 1
|
|
|
|
# define V8_OS_POSIX 1
|
|
|
|
#elif defined(__APPLE__)
|
|
|
|
# define V8_OS_BSD 1
|
|
|
|
# define V8_OS_MACOSX 1
|
|
|
|
# define V8_OS_POSIX 1
|
2019-04-16 13:48:14 +00:00
|
|
|
# if defined(TARGET_OS_IPHONE) && TARGET_OS_IPHONE
|
|
|
|
# define V8_OS_IOS 1
|
|
|
|
# endif // defined(TARGET_OS_IPHONE) && TARGET_OS_IPHONE
|
2013-08-23 07:32:25 +00:00
|
|
|
#elif defined(__CYGWIN__)
|
|
|
|
# define V8_OS_CYGWIN 1
|
|
|
|
# define V8_OS_POSIX 1
|
|
|
|
#elif defined(__linux__)
|
|
|
|
# define V8_OS_LINUX 1
|
|
|
|
# define V8_OS_POSIX 1
|
|
|
|
#elif defined(__sun)
|
|
|
|
# define V8_OS_POSIX 1
|
|
|
|
# define V8_OS_SOLARIS 1
|
2015-01-30 08:01:53 +00:00
|
|
|
#elif defined(_AIX)
|
|
|
|
#define V8_OS_POSIX 1
|
|
|
|
#define V8_OS_AIX 1
|
2013-08-23 07:32:25 +00:00
|
|
|
#elif defined(__FreeBSD__)
|
|
|
|
# define V8_OS_BSD 1
|
|
|
|
# define V8_OS_FREEBSD 1
|
|
|
|
# define V8_OS_POSIX 1
|
2017-06-11 06:31:33 +00:00
|
|
|
#elif defined(__Fuchsia__)
|
|
|
|
# define V8_OS_FUCHSIA 1
|
|
|
|
# define V8_OS_POSIX 1
|
2013-08-23 07:32:25 +00:00
|
|
|
#elif defined(__DragonFly__)
|
|
|
|
# define V8_OS_BSD 1
|
|
|
|
# define V8_OS_DRAGONFLYBSD 1
|
|
|
|
# define V8_OS_POSIX 1
|
|
|
|
#elif defined(__NetBSD__)
|
|
|
|
# define V8_OS_BSD 1
|
|
|
|
# define V8_OS_NETBSD 1
|
|
|
|
# define V8_OS_POSIX 1
|
|
|
|
#elif defined(__OpenBSD__)
|
|
|
|
# define V8_OS_BSD 1
|
|
|
|
# define V8_OS_OPENBSD 1
|
|
|
|
# define V8_OS_POSIX 1
|
2014-01-02 07:04:05 +00:00
|
|
|
#elif defined(__QNXNTO__)
|
|
|
|
# define V8_OS_POSIX 1
|
|
|
|
# define V8_OS_QNX 1
|
2013-08-23 07:32:25 +00:00
|
|
|
#elif defined(_WIN32)
|
|
|
|
# define V8_OS_WIN 1
|
|
|
|
#endif
|
|
|
|
|
2019-09-19 11:26:15 +00:00
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
// Operating system detection (target)
|
|
|
|
//
|
|
|
|
// V8_TARGET_OS_ANDROID
|
|
|
|
// V8_TARGET_OS_FUCHSIA
|
|
|
|
// V8_TARGET_OS_IOS
|
|
|
|
// V8_TARGET_OS_LINUX
|
|
|
|
// V8_TARGET_OS_MACOSX
|
|
|
|
// V8_TARGET_OS_WIN
|
|
|
|
//
|
|
|
|
// If not set explicitly, these fall back to corresponding V8_OS_ values.
|
|
|
|
|
|
|
|
#ifdef V8_HAVE_TARGET_OS
|
|
|
|
|
|
|
|
// The target OS is provided, just check that at least one known value is set.
|
|
|
|
# if !defined(V8_TARGET_OS_ANDROID) \
|
|
|
|
&& !defined(V8_TARGET_OS_FUCHSIA) \
|
|
|
|
&& !defined(V8_TARGET_OS_IOS) \
|
|
|
|
&& !defined(V8_TARGET_OS_LINUX) \
|
|
|
|
&& !defined(V8_TARGET_OS_MACOSX) \
|
|
|
|
&& !defined(V8_TARGET_OS_WIN)
|
|
|
|
# error No known target OS defined.
|
|
|
|
# endif
|
|
|
|
|
|
|
|
#else // V8_HAVE_TARGET_OS
|
|
|
|
|
|
|
|
# if defined(V8_TARGET_OS_ANDROID) \
|
|
|
|
|| defined(V8_TARGET_OS_FUCHSIA) \
|
|
|
|
|| defined(V8_TARGET_OS_IOS) \
|
|
|
|
|| defined(V8_TARGET_OS_LINUX) \
|
|
|
|
|| defined(V8_TARGET_OS_MACOSX) \
|
|
|
|
|| defined(V8_TARGET_OS_WIN)
|
|
|
|
# error A target OS is defined but V8_HAVE_TARGET_OS is unset.
|
|
|
|
# endif
|
|
|
|
|
|
|
|
// Fall back to the detected host OS.
|
|
|
|
#ifdef V8_OS_ANDROID
|
|
|
|
# define V8_TARGET_OS_ANDROID
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef V8_OS_FUCHSIA
|
|
|
|
# define V8_TARGET_OS_FUCHSIA
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef V8_OS_IOS
|
|
|
|
# define V8_TARGET_OS_IOS
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef V8_OS_LINUX
|
|
|
|
# define V8_TARGET_OS_LINUX
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef V8_OS_MACOSX
|
|
|
|
# define V8_TARGET_OS_MACOSX
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef V8_OS_WIN
|
|
|
|
# define V8_TARGET_OS_WIN
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif // V8_HAVE_TARGET_OS
|
2013-08-23 07:32:25 +00:00
|
|
|
|
2013-08-30 12:09:50 +00:00
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
// C library detection
|
|
|
|
//
|
2014-01-28 19:11:13 +00:00
|
|
|
// V8_LIBC_MSVCRT - MSVC libc
|
2013-08-30 12:09:50 +00:00
|
|
|
// V8_LIBC_BIONIC - Bionic libc
|
|
|
|
// V8_LIBC_BSD - BSD libc derivate
|
|
|
|
// V8_LIBC_GLIBC - GNU C library
|
2015-04-14 07:54:30 +00:00
|
|
|
// V8_LIBC_UCLIBC - uClibc
|
2013-08-30 12:09:50 +00:00
|
|
|
//
|
|
|
|
// Note that testing for libc must be done using #if not #ifdef. For example,
|
|
|
|
// to test for the GNU C library, use:
|
|
|
|
// #if V8_LIBC_GLIBC
|
|
|
|
// ...
|
|
|
|
// #endif
|
|
|
|
|
2014-01-28 19:11:13 +00:00
|
|
|
#if defined (_MSC_VER)
|
|
|
|
# define V8_LIBC_MSVCRT 1
|
|
|
|
#elif defined(__BIONIC__)
|
2013-08-30 12:09:50 +00:00
|
|
|
# define V8_LIBC_BIONIC 1
|
|
|
|
# define V8_LIBC_BSD 1
|
2015-04-14 07:54:30 +00:00
|
|
|
#elif defined(__UCLIBC__)
|
|
|
|
// Must test for UCLIBC before GLIBC, as UCLIBC pretends to be GLIBC.
|
|
|
|
# define V8_LIBC_UCLIBC 1
|
2013-08-30 12:09:50 +00:00
|
|
|
#elif defined(__GLIBC__) || defined(__GNU_LIBRARY__)
|
|
|
|
# define V8_LIBC_GLIBC 1
|
|
|
|
#else
|
|
|
|
# define V8_LIBC_BSD V8_OS_BSD
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2013-08-23 07:32:25 +00:00
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
// Compiler detection
|
|
|
|
//
|
2014-12-02 05:23:09 +00:00
|
|
|
// V8_CC_GNU - GCC, or clang in gcc mode
|
2013-08-27 08:27:42 +00:00
|
|
|
// V8_CC_INTEL - Intel C++
|
2013-08-23 07:32:25 +00:00
|
|
|
// V8_CC_MINGW - Minimalist GNU for Windows
|
2013-08-27 14:16:34 +00:00
|
|
|
// V8_CC_MINGW32 - Minimalist GNU for Windows (mingw32)
|
|
|
|
// V8_CC_MINGW64 - Minimalist GNU for Windows (mingw-w64)
|
2014-12-02 05:23:09 +00:00
|
|
|
// V8_CC_MSVC - Microsoft Visual C/C++, or clang in cl.exe mode
|
2013-08-23 07:32:25 +00:00
|
|
|
//
|
|
|
|
// C++11 feature detection
|
|
|
|
//
|
|
|
|
// Compiler-specific feature detection
|
|
|
|
//
|
2013-08-27 08:27:42 +00:00
|
|
|
// V8_HAS_ATTRIBUTE_ALWAYS_INLINE - __attribute__((always_inline))
|
|
|
|
// supported
|
2019-09-17 11:59:59 +00:00
|
|
|
// V8_HAS_ATTRIBUTE_NONNULL - __attribute__((nonnull)) supported
|
2013-08-27 09:21:16 +00:00
|
|
|
// V8_HAS_ATTRIBUTE_NOINLINE - __attribute__((noinline)) supported
|
2013-11-12 12:09:38 +00:00
|
|
|
// V8_HAS_ATTRIBUTE_UNUSED - __attribute__((unused)) supported
|
2013-08-27 08:27:42 +00:00
|
|
|
// V8_HAS_ATTRIBUTE_VISIBILITY - __attribute__((visibility)) supported
|
|
|
|
// V8_HAS_ATTRIBUTE_WARN_UNUSED_RESULT - __attribute__((warn_unused_result))
|
|
|
|
// supported
|
2018-04-25 06:28:35 +00:00
|
|
|
// V8_HAS_BUILTIN_BSWAP16 - __builtin_bswap16() supported
|
|
|
|
// V8_HAS_BUILTIN_BSWAP32 - __builtin_bswap32() supported
|
|
|
|
// V8_HAS_BUILTIN_BSWAP64 - __builtin_bswap64() supported
|
2014-08-20 12:10:41 +00:00
|
|
|
// V8_HAS_BUILTIN_CLZ - __builtin_clz() supported
|
|
|
|
// V8_HAS_BUILTIN_CTZ - __builtin_ctz() supported
|
2013-08-27 08:27:42 +00:00
|
|
|
// V8_HAS_BUILTIN_EXPECT - __builtin_expect() supported
|
2014-10-20 12:04:22 +00:00
|
|
|
// V8_HAS_BUILTIN_FRAME_ADDRESS - __builtin_frame_address() supported
|
2014-08-20 12:10:41 +00:00
|
|
|
// V8_HAS_BUILTIN_POPCOUNT - __builtin_popcount() supported
|
2014-09-09 14:18:17 +00:00
|
|
|
// V8_HAS_BUILTIN_SADD_OVERFLOW - __builtin_sadd_overflow() supported
|
|
|
|
// V8_HAS_BUILTIN_SSUB_OVERFLOW - __builtin_ssub_overflow() supported
|
2015-06-12 12:03:03 +00:00
|
|
|
// V8_HAS_BUILTIN_UADD_OVERFLOW - __builtin_uadd_overflow() supported
|
2019-08-06 12:53:11 +00:00
|
|
|
// V8_HAS_COMPUTED_GOTO - computed goto/labels as values
|
|
|
|
// supported
|
2013-08-27 09:21:16 +00:00
|
|
|
// V8_HAS_DECLSPEC_NOINLINE - __declspec(noinline) supported
|
2015-01-30 09:29:25 +00:00
|
|
|
// V8_HAS_DECLSPEC_SELECTANY - __declspec(selectany) supported
|
2013-08-27 08:27:42 +00:00
|
|
|
// V8_HAS___FORCEINLINE - __forceinline supported
|
|
|
|
//
|
|
|
|
// Note that testing for compilers and/or features must be done using #if
|
|
|
|
// not #ifdef. For example, to test for Intel C++ Compiler, use:
|
|
|
|
// #if V8_CC_INTEL
|
|
|
|
// ...
|
|
|
|
// #endif
|
2013-08-23 07:32:25 +00:00
|
|
|
|
|
|
|
#if defined(__clang__)
|
|
|
|
|
2014-12-02 05:23:09 +00:00
|
|
|
#if defined(__GNUC__) // Clang in gcc mode.
|
|
|
|
# define V8_CC_GNU 1
|
|
|
|
#endif
|
2013-08-26 08:06:15 +00:00
|
|
|
|
2013-08-23 07:32:25 +00:00
|
|
|
# define V8_HAS_ATTRIBUTE_ALWAYS_INLINE (__has_attribute(always_inline))
|
2019-09-17 11:59:59 +00:00
|
|
|
# define V8_HAS_ATTRIBUTE_NONNULL (__has_attribute(nonnull))
|
2013-08-27 09:21:16 +00:00
|
|
|
# define V8_HAS_ATTRIBUTE_NOINLINE (__has_attribute(noinline))
|
2013-11-12 12:09:38 +00:00
|
|
|
# define V8_HAS_ATTRIBUTE_UNUSED (__has_attribute(unused))
|
2013-08-23 07:32:25 +00:00
|
|
|
# define V8_HAS_ATTRIBUTE_VISIBILITY (__has_attribute(visibility))
|
2013-08-27 08:27:42 +00:00
|
|
|
# define V8_HAS_ATTRIBUTE_WARN_UNUSED_RESULT \
|
|
|
|
(__has_attribute(warn_unused_result))
|
2013-08-23 07:32:25 +00:00
|
|
|
|
2019-08-29 11:14:02 +00:00
|
|
|
# define V8_HAS_BUILTIN_ASSUME_ALIGNED (__has_builtin(__builtin_assume_aligned))
|
2018-04-25 06:28:35 +00:00
|
|
|
# define V8_HAS_BUILTIN_BSWAP16 (__has_builtin(__builtin_bswap16))
|
|
|
|
# define V8_HAS_BUILTIN_BSWAP32 (__has_builtin(__builtin_bswap32))
|
|
|
|
# define V8_HAS_BUILTIN_BSWAP64 (__has_builtin(__builtin_bswap64))
|
2014-08-20 12:10:41 +00:00
|
|
|
# define V8_HAS_BUILTIN_CLZ (__has_builtin(__builtin_clz))
|
|
|
|
# define V8_HAS_BUILTIN_CTZ (__has_builtin(__builtin_ctz))
|
2013-08-23 07:32:25 +00:00
|
|
|
# define V8_HAS_BUILTIN_EXPECT (__has_builtin(__builtin_expect))
|
2014-10-20 12:04:22 +00:00
|
|
|
# define V8_HAS_BUILTIN_FRAME_ADDRESS (__has_builtin(__builtin_frame_address))
|
2014-08-20 12:10:41 +00:00
|
|
|
# define V8_HAS_BUILTIN_POPCOUNT (__has_builtin(__builtin_popcount))
|
2014-09-09 14:18:17 +00:00
|
|
|
# define V8_HAS_BUILTIN_SADD_OVERFLOW (__has_builtin(__builtin_sadd_overflow))
|
|
|
|
# define V8_HAS_BUILTIN_SSUB_OVERFLOW (__has_builtin(__builtin_ssub_overflow))
|
2015-06-12 12:03:03 +00:00
|
|
|
# define V8_HAS_BUILTIN_UADD_OVERFLOW (__has_builtin(__builtin_uadd_overflow))
|
2013-08-23 07:32:25 +00:00
|
|
|
|
2019-08-06 12:53:11 +00:00
|
|
|
// Clang has no __has_feature for computed gotos.
|
|
|
|
// GCC doc: https://gcc.gnu.org/onlinedocs/gcc/Labels-as-Values.html
|
|
|
|
# define V8_HAS_COMPUTED_GOTO 1
|
|
|
|
|
2018-11-03 00:13:22 +00:00
|
|
|
# if __cplusplus >= 201402L
|
|
|
|
# define V8_CAN_HAVE_DCHECK_IN_CONSTEXPR 1
|
|
|
|
# endif
|
|
|
|
|
2013-08-23 07:32:25 +00:00
|
|
|
#elif defined(__GNUC__)
|
|
|
|
|
|
|
|
# define V8_CC_GNU 1
|
2015-06-29 11:47:50 +00:00
|
|
|
# if defined(__INTEL_COMPILER) // Intel C++ also masquerades as GCC 3.2.0
|
|
|
|
# define V8_CC_INTEL 1
|
|
|
|
# endif
|
|
|
|
# if defined(__MINGW32__)
|
|
|
|
# define V8_CC_MINGW32 1
|
|
|
|
# endif
|
|
|
|
# if defined(__MINGW64__)
|
|
|
|
# define V8_CC_MINGW64 1
|
|
|
|
# endif
|
2013-08-27 14:16:34 +00:00
|
|
|
# define V8_CC_MINGW (V8_CC_MINGW32 || V8_CC_MINGW64)
|
2013-08-23 07:32:25 +00:00
|
|
|
|
2013-08-24 16:58:32 +00:00
|
|
|
// always_inline is available in gcc 4.0 but not very reliable until 4.4.
|
|
|
|
// Works around "sorry, unimplemented: inlining failed" build errors with
|
|
|
|
// older compilers.
|
|
|
|
# define V8_HAS_ATTRIBUTE_ALWAYS_INLINE (V8_GNUC_PREREQ(4, 4, 0))
|
2013-08-27 09:21:16 +00:00
|
|
|
# define V8_HAS_ATTRIBUTE_NOINLINE (V8_GNUC_PREREQ(3, 4, 0))
|
2013-11-12 12:09:38 +00:00
|
|
|
# define V8_HAS_ATTRIBUTE_UNUSED (V8_GNUC_PREREQ(2, 95, 0))
|
2013-08-23 07:32:25 +00:00
|
|
|
# define V8_HAS_ATTRIBUTE_VISIBILITY (V8_GNUC_PREREQ(4, 3, 0))
|
2013-08-27 08:27:42 +00:00
|
|
|
# define V8_HAS_ATTRIBUTE_WARN_UNUSED_RESULT \
|
|
|
|
(!V8_CC_INTEL && V8_GNUC_PREREQ(4, 1, 0))
|
2013-08-23 07:32:25 +00:00
|
|
|
|
2019-08-29 11:14:02 +00:00
|
|
|
# define V8_HAS_BUILTIN_ASSUME_ALIGNED (V8_GNUC_PREREQ(4, 7, 0))
|
2014-08-20 12:10:41 +00:00
|
|
|
# define V8_HAS_BUILTIN_CLZ (V8_GNUC_PREREQ(3, 4, 0))
|
|
|
|
# define V8_HAS_BUILTIN_CTZ (V8_GNUC_PREREQ(3, 4, 0))
|
2013-08-23 07:32:25 +00:00
|
|
|
# define V8_HAS_BUILTIN_EXPECT (V8_GNUC_PREREQ(2, 96, 0))
|
2014-10-20 12:04:22 +00:00
|
|
|
# define V8_HAS_BUILTIN_FRAME_ADDRESS (V8_GNUC_PREREQ(2, 96, 0))
|
2014-08-20 12:10:41 +00:00
|
|
|
# define V8_HAS_BUILTIN_POPCOUNT (V8_GNUC_PREREQ(3, 4, 0))
|
2013-08-23 07:32:25 +00:00
|
|
|
|
2019-08-06 12:53:11 +00:00
|
|
|
// GCC doc: https://gcc.gnu.org/onlinedocs/gcc/Labels-as-Values.html
|
|
|
|
#define V8_HAS_COMPUTED_GOTO (V8_GNUC_PREREQ(2, 0, 0))
|
|
|
|
|
2015-05-21 16:21:24 +00:00
|
|
|
#endif
|
2013-08-23 07:32:25 +00:00
|
|
|
|
2015-05-21 16:21:24 +00:00
|
|
|
#if defined(_MSC_VER)
|
2013-08-23 07:32:25 +00:00
|
|
|
# define V8_CC_MSVC 1
|
2013-08-26 11:18:28 +00:00
|
|
|
|
2013-08-27 09:21:16 +00:00
|
|
|
# define V8_HAS_DECLSPEC_NOINLINE 1
|
2015-01-30 09:29:25 +00:00
|
|
|
# define V8_HAS_DECLSPEC_SELECTANY 1
|
2013-08-23 07:32:25 +00:00
|
|
|
|
|
|
|
# define V8_HAS___FORCEINLINE 1
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
// Helper macros
|
|
|
|
|
|
|
|
// A macro used to make better inlining. Don't bother for debug builds.
|
2013-09-12 08:57:10 +00:00
|
|
|
// Use like:
|
|
|
|
// V8_INLINE int GetZero() { return 0; }
|
2013-08-23 07:32:25 +00:00
|
|
|
#if !defined(DEBUG) && V8_HAS_ATTRIBUTE_ALWAYS_INLINE
|
2013-09-12 08:57:10 +00:00
|
|
|
# define V8_INLINE inline __attribute__((always_inline))
|
2013-08-23 07:32:25 +00:00
|
|
|
#elif !defined(DEBUG) && V8_HAS___FORCEINLINE
|
2013-09-12 08:57:10 +00:00
|
|
|
# define V8_INLINE __forceinline
|
2013-08-23 07:32:25 +00:00
|
|
|
#else
|
2013-09-12 08:57:10 +00:00
|
|
|
# define V8_INLINE inline
|
2013-08-23 07:32:25 +00:00
|
|
|
#endif
|
|
|
|
|
2019-08-29 11:14:02 +00:00
|
|
|
#if V8_HAS_BUILTIN_ASSUME_ALIGNED
|
|
|
|
# define V8_ASSUME_ALIGNED(ptr, alignment) \
|
|
|
|
__builtin_assume_aligned((ptr), (alignment))
|
|
|
|
#else
|
2019-10-09 11:51:33 +00:00
|
|
|
# define V8_ASSUME_ALIGNED(ptr, alignment) (ptr)
|
2019-08-29 11:14:02 +00:00
|
|
|
#endif
|
2013-08-23 07:32:25 +00:00
|
|
|
|
2019-09-17 11:59:59 +00:00
|
|
|
|
|
|
|
// A macro to mark specific arguments as non-null.
|
|
|
|
// Use like:
|
|
|
|
// int add(int* x, int y, int* z) V8_NONNULL(1, 3) { return *x + y + *z; }
|
|
|
|
#if V8_HAS_ATTRIBUTE_NONNULL
|
|
|
|
# define V8_NONNULL(...) __attribute__((nonnull(__VA_ARGS__)))
|
|
|
|
#else
|
|
|
|
# define V8_NONNULL(...) /* NOT SUPPORTED */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2013-08-27 09:21:16 +00:00
|
|
|
// A macro used to tell the compiler to never inline a particular function.
|
|
|
|
// Don't bother for debug builds.
|
2013-09-12 08:57:10 +00:00
|
|
|
// Use like:
|
|
|
|
// V8_NOINLINE int GetMinusOne() { return -1; }
|
2013-08-27 09:21:16 +00:00
|
|
|
#if !defined(DEBUG) && V8_HAS_ATTRIBUTE_NOINLINE
|
2013-09-12 08:57:10 +00:00
|
|
|
# define V8_NOINLINE __attribute__((noinline))
|
2013-08-27 09:21:16 +00:00
|
|
|
#elif !defined(DEBUG) && V8_HAS_DECLSPEC_NOINLINE
|
2013-09-12 08:57:10 +00:00
|
|
|
# define V8_NOINLINE __declspec(noinline)
|
2013-08-27 09:21:16 +00:00
|
|
|
#else
|
2013-09-12 08:57:10 +00:00
|
|
|
# define V8_NOINLINE /* NOT SUPPORTED */
|
2013-08-27 09:21:16 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2015-05-21 10:34:42 +00:00
|
|
|
// A macro (V8_DEPRECATED) to mark classes or functions as deprecated.
|
2019-10-08 16:30:08 +00:00
|
|
|
#if defined(V8_DEPRECATION_WARNINGS)
|
|
|
|
# define V8_DEPRECATED(message) [[deprecated(message)]]
|
2013-08-23 07:32:25 +00:00
|
|
|
#else
|
2019-10-08 16:30:08 +00:00
|
|
|
# define V8_DEPRECATED(message)
|
2013-08-23 07:32:25 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2015-05-21 10:34:42 +00:00
|
|
|
// A macro (V8_DEPRECATE_SOON) to make it easier to see what will be deprecated.
|
2019-10-08 16:30:08 +00:00
|
|
|
#if defined(V8_IMMINENT_DEPRECATION_WARNINGS)
|
|
|
|
# define V8_DEPRECATE_SOON(message) [[deprecated(message)]]
|
2015-05-21 10:34:42 +00:00
|
|
|
#else
|
2019-10-08 16:30:08 +00:00
|
|
|
# define V8_DEPRECATE_SOON(message)
|
2015-05-21 10:34:42 +00:00
|
|
|
#endif
|
2015-03-09 09:49:09 +00:00
|
|
|
|
|
|
|
|
2013-08-23 07:32:25 +00:00
|
|
|
// A macro to provide the compiler with branch prediction information.
|
|
|
|
#if V8_HAS_BUILTIN_EXPECT
|
|
|
|
# define V8_UNLIKELY(condition) (__builtin_expect(!!(condition), 0))
|
|
|
|
# define V8_LIKELY(condition) (__builtin_expect(!!(condition), 1))
|
|
|
|
#else
|
|
|
|
# define V8_UNLIKELY(condition) (condition)
|
|
|
|
# define V8_LIKELY(condition) (condition)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2015-02-27 10:39:25 +00:00
|
|
|
// Annotate a function indicating the caller must examine the return value.
|
|
|
|
// Use like:
|
2018-04-06 09:37:52 +00:00
|
|
|
// int foo() V8_WARN_UNUSED_RESULT;
|
2015-02-27 10:39:25 +00:00
|
|
|
#if V8_HAS_ATTRIBUTE_WARN_UNUSED_RESULT
|
|
|
|
#define V8_WARN_UNUSED_RESULT __attribute__((warn_unused_result))
|
|
|
|
#else
|
|
|
|
#define V8_WARN_UNUSED_RESULT /* NOT SUPPORTED */
|
|
|
|
#endif
|
|
|
|
|
2019-05-24 07:36:05 +00:00
|
|
|
#if defined(BUILDING_V8_SHARED) && defined(USING_V8_SHARED)
|
|
|
|
#error Inconsistent build configuration: To build the V8 shared library \
|
|
|
|
set BUILDING_V8_SHARED, to include its headers for linking against the \
|
|
|
|
V8 shared library set USING_V8_SHARED.
|
|
|
|
#endif
|
|
|
|
|
2018-09-07 09:03:35 +00:00
|
|
|
#ifdef V8_OS_WIN
|
|
|
|
|
|
|
|
// Setup for Windows DLL export/import. When building the V8 DLL the
|
|
|
|
// BUILDING_V8_SHARED needs to be defined. When building a program which uses
|
|
|
|
// the V8 DLL USING_V8_SHARED needs to be defined. When either building the V8
|
|
|
|
// static library or building a program which uses the V8 static library neither
|
|
|
|
// BUILDING_V8_SHARED nor USING_V8_SHARED should be defined.
|
|
|
|
#ifdef BUILDING_V8_SHARED
|
|
|
|
# define V8_EXPORT __declspec(dllexport)
|
|
|
|
#elif USING_V8_SHARED
|
|
|
|
# define V8_EXPORT __declspec(dllimport)
|
|
|
|
#else
|
|
|
|
# define V8_EXPORT
|
|
|
|
#endif // BUILDING_V8_SHARED
|
|
|
|
|
|
|
|
#else // V8_OS_WIN
|
|
|
|
|
|
|
|
// Setup for Linux shared library export.
|
|
|
|
#if V8_HAS_ATTRIBUTE_VISIBILITY
|
|
|
|
# ifdef BUILDING_V8_SHARED
|
|
|
|
# define V8_EXPORT __attribute__ ((visibility("default")))
|
|
|
|
# else
|
|
|
|
# define V8_EXPORT
|
|
|
|
# endif
|
|
|
|
#else
|
|
|
|
# define V8_EXPORT
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif // V8_OS_WIN
|
|
|
|
|
2015-06-29 11:47:50 +00:00
|
|
|
// clang-format on
|
|
|
|
|
2013-08-23 07:32:25 +00:00
|
|
|
#endif // V8CONFIG_H_
|