5a92cf5be7db56b9d07359bb20b3ab033c08060d
[libcds.git] / cds / compiler / clang / defs.h
1 //$$CDS-header$$
2
3 #ifndef CDSLIB_COMPILER_CLANG_DEFS_H
4 #define CDSLIB_COMPILER_CLANG_DEFS_H
5
6 /*
7     Known issues:
8         Error compiling 64bit boost.atomic on clang 3.4 - 3.5, see https://svn.boost.org/trac/boost/ticket/9610
9         Solution: use boost 1.56 +
10 */
11
12 // Compiler version
13 #define CDS_COMPILER_VERSION (__clang_major__ * 10000 + __clang_minor__ * 100 + __clang_patchlevel__)
14
15 // Compiler name
16 #define  CDS_COMPILER__NAME    ("clang " __clang_version__)
17 #define  CDS_COMPILER__NICK    "clang"
18
19 #if CDS_COMPILER_VERSION < 30300
20 #   error "Compiler version error. Clang version 3.3.0 and above is supported"
21 #endif
22
23 #if defined(_LIBCPP_VERSION) && !defined(CDS_USE_BOOST_ATOMIC)
24     // Note: Clang libc++ atomic leads to program crash.
25     // So, we use libcds atomic implementation
26 #   define CDS_USE_LIBCDS_ATOMIC
27 #endif
28
29 #include <cds/compiler/gcc/compiler_macro.h>
30
31 #define alignof __alignof__
32
33 // C++11 inline namespace
34 #define CDS_CXX11_INLINE_NAMESPACE_SUPPORT
35
36 #define CDS_CONSTEXPR    constexpr
37
38 #define CDS_NOEXCEPT_SUPPORT        noexcept
39 #define CDS_NOEXCEPT_SUPPORT_(expr) noexcept(expr)
40
41 // C++11 thread_local keyword
42 #if !(CDS_OS_TYPE == CDS_OS_OSX && CDS_COMPILER_VERSION < 30600)
43     // OS X error?
44     // See http://stackoverflow.com/questions/23791060/c-thread-local-storage-clang-503-0-40-mac-osx
45     // http://stackoverflow.com/questions/28094794/why-does-apple-clang-disallow-c11-thread-local-when-official-clang-supports
46     // clang 3.6 ok?..
47 #   define CDS_CXX11_THREAD_LOCAL_SUPPORT
48 #endif
49
50 // Full SFINAE support
51 #define CDS_CXX11_SFINAE
52
53 // Inheriting constructors
54 #define CDS_CXX11_INHERITING_CTOR
55
56 // Attributes
57 #if CDS_COMPILER_VERSION >= 30400
58 #   if __cplusplus < 201103
59 #       define CDS_DEPRECATED( reason ) __attribute__((deprecated( reason )))
60 #   elif __cplusplus == 201103 // C++11
61 #       define CDS_DEPRECATED( reason ) [[gnu::deprecated(reason)]]
62 #   else  // C++14
63 #       define CDS_DEPRECATED( reason ) [[deprecated(reason)]]
64 #   endif
65 #else
66 #   define CDS_DEPRECATED( reason ) __attribute__((deprecated( reason )))
67 #endif
68
69 // *************************************************
70 // Features
71 #if defined(__has_feature) && __has_feature(thread_sanitizer)
72 #   define CDS_THREAD_SANITIZER_ENABLED
73 #endif
74
75 // *************************************************
76 // Alignment macro
77
78 #define CDS_TYPE_ALIGNMENT(n)   __attribute__ ((aligned (n)))
79 #define CDS_CLASS_ALIGNMENT(n)  __attribute__ ((aligned (n)))
80 #define CDS_DATA_ALIGNMENT(n)   __attribute__ ((aligned (n)))
81
82
83 #include <cds/compiler/gcc/compiler_barriers.h>
84
85 #endif // #ifndef CDSLIB_COMPILER_GCC_DEFS_H