Changed library name for MSVC++
[libcds.git] / cds / compiler / vc / defs.h
1 /*
2     This file is a part of libcds - Concurrent Data Structures library
3
4     (C) Copyright Maxim Khizhinsky (libcds.dev@gmail.com) 2006-2017
5
6     Source code repo: http://github.com/khizmax/libcds/
7     Download: http://sourceforge.net/projects/libcds/files/
8
9     Redistribution and use in source and binary forms, with or without
10     modification, are permitted provided that the following conditions are met:
11
12     * Redistributions of source code must retain the above copyright notice, this
13       list of conditions and the following disclaimer.
14
15     * Redistributions in binary form must reproduce the above copyright notice,
16       this list of conditions and the following disclaimer in the documentation
17       and/or other materials provided with the distribution.
18
19     THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
20     AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21     IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
22     DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
23     FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24     DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
25     SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
26     CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
27     OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28     OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */
30
31 #ifndef CDSLIB_COMPILER_VC_DEFS_H
32 #define CDSLIB_COMPILER_VC_DEFS_H
33 //@cond
34
35 // Compiler version
36 #define CDS_COMPILER_VERSION    _MSC_VER
37
38 // Compiler name
39 // Supported compilers: MS VC 2013 +
40 // C++ compiler versions:
41 #define CDS_COMPILER_MSVC12         1800    // 2013 vc12
42 #define CDS_COMPILER_MSVC14         1900    // 2015 vc14
43 #define CDS_COMPILER_MSVC14_1       1910    // 2017 vc14.1
44 #define CDS_COMPILER_MSVC14_1_3     1911    // 2017 vc14.1 (VS 15.3)
45 #define CDS_COMPILER_MSVC15         2000    // next Visual Studio
46
47 #if CDS_COMPILER_VERSION < CDS_COMPILER_MSVC12
48 #   error "Only MS Visual C++ 12 (2013) Update 4 and above is supported"
49 #endif
50
51 #if _MSC_VER == 1800
52 #   define  CDS_COMPILER__NAME  "MS Visual C++ 2013"
53 #   define  CDS_COMPILER__NICK  "vc12"
54 #   define  CDS_COMPILER_LIBCDS_SUFFIX "vc12"
55 #elif _MSC_VER == 1900
56 #   define  CDS_COMPILER__NAME  "MS Visual C++ 2015"
57 #   define  CDS_COMPILER__NICK  "vc14"
58 #   define  CDS_COMPILER_LIBCDS_SUFFIX "vcv140"
59 #elif _MSC_VER < 2000 
60 #   define  CDS_COMPILER__NAME  "MS Visual C++ 2017"
61 #   define  CDS_COMPILER__NICK  "vc141"
62 #   define  CDS_COMPILER_LIBCDS_SUFFIX "vcv141"
63 #else
64 #   define  CDS_COMPILER__NAME  "MS Visual C++"
65 #   define  CDS_COMPILER__NICK  "msvc"
66 #   define  CDS_COMPILER_LIBCDS_SUFFIX "vc"
67 #endif
68
69 // OS interface
70 #define CDS_OS_INTERFACE CDS_OSI_WINDOWS
71
72 // OS name
73 #if defined(_WIN64)
74 #   define CDS_OS_TYPE      CDS_OS_WIN64
75 #   define CDS_OS__NAME     "Win64"
76 #   define CDS_OS__NICK     "Win64"
77 #elif defined(_WIN32)
78 #   define CDS_OS_TYPE      CDS_OS_WIN32
79 #   define CDS_OS__NAME     "Win32"
80 #   define CDS_OS__NICK     "Win32"
81 #endif
82
83 // Processor architecture
84 #ifdef _M_IX86
85 #   define CDS_BUILD_BITS       32
86 #   define CDS_PROCESSOR_ARCH   CDS_PROCESSOR_X86
87 #   define CDS_PROCESSOR__NAME  "Intel x86"
88 #   define CDS_PROCESSOR__NICK  "x86"
89 #elif _M_X64
90 #   define CDS_BUILD_BITS       64
91 #   define CDS_PROCESSOR_ARCH   CDS_PROCESSOR_AMD64
92 #   define CDS_PROCESSOR__NAME  "AMD64"
93 #   define CDS_PROCESSOR__NICK  "amd64"
94 #else
95 #   define CDS_BUILD_BITS        -1
96 #   define CDS_PROCESSOR_ARCH    CDS_PROCESSOR_UNKNOWN
97 #   define CDS_PROCESSOR__NAME    "<<Undefined>>"
98 #   error Microsoft Visual C++ compiler is supported for x86 only
99 #endif
100
101 #define  __attribute__( _x )
102
103 #ifdef CDS_BUILD_LIB
104 #   define CDS_EXPORT_API          __declspec(dllexport)
105 #else
106 #   define CDS_EXPORT_API          __declspec(dllimport)
107 #endif
108
109 #define alignof     __alignof
110
111 // Memory leaks detection (debug build only)
112 #ifdef _DEBUG
113 #   define _CRTDBG_MAP_ALLOC
114 #   define _CRTDBG_MAPALLOC
115 #   include <stdlib.h>
116 #   include <crtdbg.h>
117 #   define CDS_MSVC_MEMORY_LEAKS_DETECTING_ENABLED
118 #endif
119
120 // constexpr is not yet supported
121 #define CDS_CONSTEXPR
122
123 // noexcept - vc14 +
124 #if CDS_COMPILER_VERSION > CDS_COMPILER_MSVC12
125 #   define CDS_NOEXCEPT_SUPPORT        noexcept
126 #   define CDS_NOEXCEPT_SUPPORT_(expr) noexcept(expr)
127 #else
128 #   define CDS_NOEXCEPT_SUPPORT
129 #   define CDS_NOEXCEPT_SUPPORT_(expr)
130 #endif
131
132 // C++11 inline namespace
133 #if CDS_COMPILER_VERSION > CDS_COMPILER_MSVC12
134 #   define CDS_CXX11_INLINE_NAMESPACE_SUPPORT
135 #endif
136
137 #if CDS_COMPILER_VERSION == CDS_COMPILER_MSVC12
138     // VC12: move ctor cannot be defaulted
139     // Error: C2610 [move ctor] is not a special member function which can be defaulted
140 #   define CDS_DISABLE_DEFAULT_MOVE_CTOR
141 #endif
142
143 // Full SFINAE support
144 #if CDS_COMPILER_VERSION > CDS_COMPILER_MSVC12
145 #   define CDS_CXX11_SFINAE
146 #endif
147
148 // Inheriting constructors
149 #if CDS_COMPILER_VERSION > CDS_COMPILER_MSVC12
150 #   define CDS_CXX11_INHERITING_CTOR
151 #endif
152
153 // *************************************************
154 // Alignment macro
155
156 #define CDS_TYPE_ALIGNMENT(n)     __declspec( align(n))
157 #define CDS_DATA_ALIGNMENT(n)     __declspec( align(n))
158 #define CDS_CLASS_ALIGNMENT(n)    __declspec( align(n))
159
160 // Attributes
161 #if CDS_COMPILER_VERSION >= CDS_COMPILER_MSVC14
162 #   define CDS_DEPRECATED( reason ) [[deprecated( reason )]]
163 #else
164 #   define CDS_DEPRECATED( reason ) __declspec(deprecated( reason ))
165 #endif
166
167 #define CDS_NORETURN __declspec(noreturn)
168
169 // Exceptions
170
171 #if defined( _CPPUNWIND )
172 #   define CDS_EXCEPTION_ENABLED
173 #endif
174
175
176 // double-width CAS support
177 //#define CDS_DCAS_SUPPORT
178
179 // Byte order
180 //  It seems, MSVC works only on little-endian architecture?..
181 #if !defined(CDS_ARCH_LITTLE_ENDIAN) && !defined(CDS_ARCH_BIG_ENDIAN)
182 #   define CDS_ARCH_LITTLE_ENDIAN
183 #endif
184
185 // Sanitizer attributes (not supported)
186 #define CDS_SUPPRESS_SANITIZE( ... )
187
188 #include <cds/compiler/vc/compiler_barriers.h>
189
190 //@endcond
191 #endif // #ifndef CDSLIB_COMPILER_VC_DEFS_H