Remove CDS_RVALUE_SUPPORT, CDS_MOVE_SEMANTICS_SUPPORT macros and emulating code
[libcds.git] / cds / compiler / clang / defs.h
1 //$$CDS-header$$
2
3 #ifndef __CDS_COMPILER_CLANG_DEFS_H
4 #define __CDS_COMPILER_CLANG_DEFS_H
5
6 // Compiler version
7 #define CDS_COMPILER_VERSION (__clang_major__ * 10000 + __clang_minor__ * 100 + __clang_patchlevel__)
8
9 // Compiler name
10 #define  CDS_COMPILER__NAME    ("clang " __clang_version__)
11 #define  CDS_COMPILER__NICK    "clang"
12
13 #if CDS_COMPILER_VERSION < 30300
14 #   error "Compiler version error. Clang version 3.3.0 and above is supported"
15 #endif
16
17
18 #if defined(_LIBCPP_VERSION) && !defined(CDS_USE_BOOST_ATOMIC)
19     // Note: Clang libc++ atomic leads to program crash.
20     // So, we use libcds atomic implementation
21 #   define CDS_USE_LIBCDS_ATOMIC
22 #endif
23
24 #include <cds/compiler/gcc/compiler_macro.h>
25
26 #define alignof __alignof__
27
28 // C++11 inline namespace
29 #define CDS_CXX11_INLINE_NAMESPACE_SUPPORT
30
31 // Lambda
32 #define CDS_CXX11_LAMBDA_SUPPORT
33
34 #define CDS_CONSTEXPR    constexpr
35 #define CDS_CONSTEXPR_CONST constexpr const
36
37 #define CDS_NOEXCEPT_SUPPORT        noexcept
38 #define CDS_NOEXCEPT_SUPPORT_(expr) noexcept(expr)
39
40 // C++11 thread_local keyword
41 #define CDS_CXX11_THREAD_LOCAL_SUPPORT
42
43 // Full SFINAE support
44 #define CDS_CXX11_SFINAE
45
46 // *************************************************
47 // Alignment macro
48
49 #define CDS_TYPE_ALIGNMENT(n)   __attribute__ ((aligned (n)))
50 #define CDS_CLASS_ALIGNMENT(n)  __attribute__ ((aligned (n)))
51 #define CDS_DATA_ALIGNMENT(n)   __attribute__ ((aligned (n)))
52
53
54 #include <cds/compiler/gcc/compiler_barriers.h>
55
56 #endif // #ifndef __CDS_COMPILER_GCC_DEFS_H