issue #82: added doc about DCAS support
[libcds.git] / cds / details / 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_DEFS_H
32 #define CDSLIB_DEFS_H
33
34 #include <stddef.h>
35 #include <stdlib.h>
36 #include <assert.h>
37 #include <cstdint>
38 #include <exception>
39 #include <stdexcept>
40 #include <string>
41 #include <memory>
42
43 #include <cds/version.h>
44
45 /** \mainpage CDS: Concurrent Data Structures library
46
47    This library is a collection of lock-free and lock-based fine-grained algorithms of data structures
48    like maps, queues, list etc. The library contains implementation of well-known data structures
49    and memory reclamation schemas for modern processor architectures. The library is written on C++11.
50
51    The main namespace for the library is \ref cds.
52    To see the full list of container's class go to <a href="modules.html">modules</a> tab.
53
54    Supported processor architectures and operating systems (OS) are:
55       - x86 [32bit] Linux, Windows, FreeBSD, MinGW
56       - amd64 (x86-64) [64bit] Linux, Windows, FreeBSD, MinGW
57       - ia64 (itanium) [64bit] Linux, HP-UX 11.23, HP-UX 11.31
58       - sparc [64bit] Sun Solaris
59       - Mac OS X amd64
60       - ppc64 Linux
61
62    Supported compilers:
63       - GCC 4.8+
64       - Clang 3.6+
65       - MS Visual C++ 2013 Update 4 and above
66       - Intel C++ Compiler 15
67
68    For each lock-free data structure the \p CDS library presents several implementation based on published papers. For
69    example, there are several implementations of queue, each of them is divided by memory reclamation
70    schema used. However, any implementation supports common interface for the type of data structure.
71
72    To use any lock-free data structure, the following are needed:
73    - atomic operation library conforming with C++11 memory model.
74       The <b>libcds</b> can be built with \p std::atomic, \p boost::atomic or its own
75       @ref cds_cxx11_atomic "atomic implementation"
76    - safe memory reclamation (SMR) or garbage collecting (GC) algorithm.
77
78    SMR is the main part of lock-free data structs. The SMR solves the problem of safe
79    memory reclamation that is one of the main problem for lock-free programming.
80    The library contains the implementations of several light-weight \ref cds_garbage_collector "memory reclamation schemes":
81    - M.Michael's Hazard Pointer - see \p cds::gc::HP, \p cds::gc::DHP for more explanation
82    - User-space Read-Copy Update (RCU) - see \p cds::urcu namespace
83    - there is an empty \p cds::gc::nogc "GC" for append-only containers that do not support item reclamation.
84
85    Many GC requires a support from the thread. The library does not define the threading model you must use,
86    it is developed to support various ones; about incorporating <b>cds</b> library to your threading model see \p cds::threading.
87
88    \anchor cds_how_to_use
89    \par How to use
90
91    The main part of lock-free programming is SMR, so-called garbage collector,  for safe memory reclamation.
92    The library provides several types of SMR schemes. One of widely used and well-tested is Hazard Pointer
93    memory reclamation schema discovered by M. Micheal and implemented in the library as \p cds::gc::HP class.
94    Usually, the application is based on only one type of GC.
95
96    In the next example we mean that you use Hazard Pointer \p cds::gc::HP - based containers.
97
98     First, in your code you should initialize \p cds library and Hazard Pointer in \p main() function:
99     \code
100     #include <cds/init.h>       // for cds::Initialize and cds::Terminate
101     #include <cds/gc/hp.h>      // for cds::HP (Hazard Pointer) SMR
102
103     int main(int argc, char** argv)
104     {
105         // Initialize libcds
106         cds::Initialize();
107
108         {
109             // Initialize Hazard Pointer singleton
110             cds::gc::HP hpGC;
111
112             // If main thread uses lock-free containers
113             // the main thread should be attached to libcds infrastructure
114             cds::threading::Manager::attachThread();
115
116             // Now you can use HP-based containers in the main thread
117             //...
118         }
119
120         // Terminate libcds
121         cds::Terminate();
122     }
123     \endcode
124
125     Second, any of your thread should be attached to \p cds infrastructure.
126     \code
127     #include <cds/gc/hp.h>
128
129     int myThreadEntryPoint(void *)
130     {
131         // Attach the thread to libcds infrastructure
132         cds::threading::Manager::attachThread();
133
134         // Now you can use HP-based containers in the thread
135         //...
136
137         // Detach thread when terminating
138         cds::threading::Manager::detachThread();
139     }
140     \endcode
141
142     After that, you can use \p cds lock-free containers safely without any external synchronization.
143
144     In some cases, you should work in an external thread. For example, your application
145     is a plug-in for a server that calls your code in a thread that has been created by the server.
146     In this case, you should use persistent mode of garbage collecting. In this mode, the thread attaches
147     to the GC singleton only if it is not attached yet and never call detaching:
148     \code
149     #include <cds/gc/hp.h>
150
151     int plugin_entry_point()
152     {
153         // Attach the thread if it is not attached yet
154         if ( !cds::threading::Manager::isThreadAttached())
155             cds::threading::Manager::attachThread();
156
157         // Do some work with HP-related containers
158         ...
159     }
160     \endcode
161
162
163    \par How to build
164
165    The <b>cds</b> is mostly header-only library. Only small part of library related to GC core functionality
166    should be compiled.
167
168    External dependenies: the tests depends on:
169    - \p boost.thread (thread-loal storage support), boost.system
170    - \p google-test
171
172    Some parts of libcds may depend on DCAS (double-width compare-and-swap) atomic primitive if
173    the target architecture supports it. For x86, cmake build script enables -mcx16 compiler flag that
174    switches DCAS support on. You may manually disable DCAS support with the following  command line flags
175    in GCC/clang (for MS VC++ compiler DCAS is not supported):
176    - \p -DCDS_DISABLE_128BIT_ATOMIC - for 64bit build
177    - \p -DCDS_DISABLE_64BIT_ATOMIC - for 32bit build
178    @warning All your projects AND libcds MUST be compiled with the same flags - either with DCAS support or without it.
179
180    \par Windows build
181
182    Prerequisites: for building <b>cds</b> library and test suite you need:
183     - <a href="http://www.activestate.com/activeperl/downloads">perl</a> installed; \p PATH environment variable
184         should contain full path to Perl binary. Perl is used to generate large dictionary for testing purpose;
185     - <a href="http://www.boost.org/">boost library</a> 1.51 and above. You should create environment variable
186         \p BOOST_PATH containing full path to \p boost root directory (for example, <tt>C:\\libs\\boost_1_57_0</tt>).
187
188    Open solution file <tt>cds\projects\vc14\cds.sln</tt> with Microsoft VisualStudio 2015.
189    The solution contains \p cds project and a lot of test projects. Just build the library using solution.
190
191    <b>Warning</b>: the solution depends on \p BOOST_PATH environment variable that specifies full path
192    to \p boost library root directory. The test projects search \p boost libraries in:
193    - for 32bit: <tt>\$(BOOST_PATH)/stage/lib</tt>, <tt>\$(BOOST_PATH)/stage32/lib</tt>, and <tt>\$(BOOST_PATH)/bin</tt>.
194    - for 64bit: <tt>\$(BOOST_PATH)/stage64/lib</tt> and <tt>\$(BOOST_PATH)/bin</tt>.
195
196    All tests are based on googletest framework. The following environment variables specify
197    where to find gtest include and library directories:
198    - \p GTEST_ROOT - gtest root directory. <tt>\$(GTEST_ROOT)/include</tt> specifies full path to
199         gtest include files;
200    - \p GTEST_LIB64 - the path to 64bit gtest library dir;
201    - \p GTEST_LIB32 - the path to 32bit gtest library dir.
202
203    \par *NIX build
204
205    For Unix-like systems GCC and Clang compilers are supported.
206    Use GCC 4.8+ compiler or Clang 3.6+ to build <b>cds</b> library with CMake.
207    See accompanying file <tt>/build/cmake/readme.md</tt> for more info.
208
209    @note Important for GCC compiler: all your projects that use \p libcds must be compiled with <b>-fno-strict-aliasing</b>
210    compiler flag.
211
212 */
213
214
215 /// The main library namespace
216 namespace cds {}
217
218 /*
219     \brief Basic typedefs and defines
220
221     You do not need include this header directly. All library header files depends on defs.h and include it.
222
223     Defines macros:
224
225     CDS_COMPILER        Compiler:
226                     - CDS_COMPILER_MSVC     Microsoft Visual C++
227                     - CDS_COMPILER_GCC      GNU C++
228                     - CDS_COMPILER_CLANG    clang
229                     - CDS_COMPILER_UNKNOWN  unknown compiler
230
231     CDS_COMPILER__NAME    Character compiler name
232
233     CDS_COMPILER_VERSION    Compliler version (number)
234
235     CDS_BUILD_BITS    Resulting binary code:
236                     - 32        32bit
237                     - 64        64bit
238                     - -1        undefined
239
240     CDS_POW2_BITS    CDS_BUILD_BITS == 2**CDS_POW2_BITS
241
242     CDS_PROCESSOR_ARCH    The processor architecture:
243                     - CDS_PROCESSOR_X86     Intel x86 (32bit)
244                     - CDS_PROCESSOR_AMD64   Amd64, Intel x86-64 (64bit)
245                     - CDS_PROCESSOR_IA64    Intel IA64 (Itanium)
246                     - CDS_PROCESSOR_SPARC   Sparc
247                     - CDS_PROCESSOR_PPC64   PowerPC64
248                     - CDS_PROCESSOR_ARM7    ARM v7
249                     - CDS_PROCESSOR_ARM8    ARM v8
250                     - CDS_PROCESSOR_UNKNOWN undefined processor architecture
251
252     CDS_PROCESSOR__NAME    The name (string) of processor architecture
253
254     CDS_OS_TYPE        Operating system type:
255                     - CDS_OS_UNKNOWN        unknown OS
256                     - CDS_OS_PTHREAD        unknown OS with pthread
257                     - CDS_OS_WIN32          Windows 32bit
258                     - CDS_OS_WIN64          Windows 64bit
259                     - CDS_OS_LINUX          Linux
260                     - CDS_OS_SUN_SOLARIS    Sun Solaris
261                     - CDS_OS_HPUX           HP-UX
262                     - CDS_OS_AIX            IBM AIX
263                     - CDS_OS_BSD            FreeBSD, OpenBSD, NetBSD - common flag
264                     - CDS_OS_FREE_BSD       FreeBSD
265                     - CDS_OS_OPEN_BSD       OpenBSD
266                     - CSD_OS_NET_BSD        NetBSD
267                     - CDS_OS_MINGW          MinGW
268                     - CDS_OS_OSX            Apple OS X
269
270     CDS_OS__NAME        The name (string) of operating system type
271
272     CDS_OS_INTERFACE OS interface:
273                     - CDS_OSI_UNIX             Unix (POSIX)
274                     - CDS_OSI_WINDOWS          Windows
275
276
277     CDS_BUILD_TYPE    Build type: 'RELEASE' or 'DEBUG' string
278
279 */
280
281 #if defined(_DEBUG) || !defined(NDEBUG)
282 #    define    CDS_DEBUG
283 #    define    CDS_BUILD_TYPE    "DEBUG"
284 #else
285 #    define    CDS_BUILD_TYPE    "RELEASE"
286 #endif
287
288 /// Unused function argument
289 #define CDS_UNUSED(x)   (void)(x)
290
291 // Supported compilers:
292 #define CDS_COMPILER_MSVC        1
293 #define CDS_COMPILER_GCC         2
294 #define CDS_COMPILER_INTEL       3
295 #define CDS_COMPILER_CLANG       4
296 #define CDS_COMPILER_UNKNOWN    -1
297
298 // Supported processor architectures:
299 #define CDS_PROCESSOR_X86       1
300 #define CDS_PROCESSOR_IA64      2
301 #define CDS_PROCESSOR_SPARC     3
302 #define CDS_PROCESSOR_AMD64     4
303 #define CDS_PROCESSOR_PPC64     5   // PowerPC 64bit
304 #define CDS_PROCESSOR_ARM7      7
305 #define CDS_PROCESSOR_ARM8      8
306 #define CDS_PROCESSOR_UNKNOWN   -1
307
308 // Supported OS interfaces
309 #define CDS_OSI_UNKNOWN          0
310 #define CDS_OSI_UNIX             1
311 #define CDS_OSI_WINDOWS          2
312
313 // Supported operating systems (value of CDS_OS_TYPE):
314 #define CDS_OS_UNKNOWN          -1
315 #define CDS_OS_WIN32            1
316 #define CDS_OS_WIN64            5
317 #define CDS_OS_LINUX            10
318 #define CDS_OS_SUN_SOLARIS      20
319 #define CDS_OS_HPUX             30
320 #define CDS_OS_AIX              50  // IBM AIX
321 #define CDS_OS_FREE_BSD         61
322 #define CDS_OS_OPEN_BSD         62
323 #define CDS_OS_NET_BSD          63
324 #define CDS_OS_MINGW            70
325 #define CDS_OS_OSX              80
326 #define CDS_OS_PTHREAD          100
327
328 #if defined(_MSC_VER)
329 #   if defined(__ICL) || defined(__INTEL_COMPILER)
330 #       define CDS_COMPILER CDS_COMPILER_INTEL
331 #   elif defined(__clang__)
332 #       define CDS_COMPILER CDS_COMPILER_CLANG
333 #   else
334 #       define CDS_COMPILER CDS_COMPILER_MSVC
335 #   endif
336 #elif defined(__clang__)    // Clang checking must be before GCC since Clang defines __GCC__ too
337 #   define CDS_COMPILER CDS_COMPILER_CLANG
338 #elif defined( __GCC__ ) || defined(__GNUC__)
339 #   if defined(__ICL) || defined(__INTEL_COMPILER)
340 #       define CDS_COMPILER CDS_COMPILER_INTEL
341 #   else
342 #       define CDS_COMPILER CDS_COMPILER_GCC
343 #   endif
344 #else
345 #    define CDS_COMPILER CDS_COMPILER_UNKNOWN
346 #endif  // Compiler choice
347
348
349 // CDS_VERIFY: Debug - assert(_expr); Release - _expr
350 #ifdef CDS_DEBUG
351 #   define CDS_VERIFY( _expr )       assert( _expr )
352 #   define CDS_VERIFY_FALSE( _expr ) assert( !( _expr ))
353 #   define CDS_DEBUG_ONLY( _expr )        _expr
354 #else
355 #   define CDS_VERIFY( _expr )    _expr
356 #   define CDS_VERIFY_FALSE( _expr ) _expr
357 #   define CDS_DEBUG_ONLY( _expr )
358 #endif
359
360 #ifdef CDS_STRICT
361 #   define CDS_STRICT_DO(_expr)         _expr
362 #else
363 #   define CDS_STRICT_DO( _expr )
364 #endif
365
366 #ifdef CDS_DEBUG
367 #   define cds_assert( expr )       assert( expr )
368 #else
369     static inline void cds_assert( bool expr ) {
370         if ( !expr )
371             abort();
372     }
373 #endif
374
375 // Compiler-specific defines
376 #include <cds/compiler/defs.h>
377
378 #define CDS_NOEXCEPT            CDS_NOEXCEPT_SUPPORT
379 #define CDS_NOEXCEPT_( expr )   CDS_NOEXCEPT_SUPPORT_( expr )
380
381 #ifdef CDS_CXX11_INLINE_NAMESPACE_SUPPORT
382 #   define CDS_CXX11_INLINE_NAMESPACE   inline
383 #else
384 #   define CDS_CXX11_INLINE_NAMESPACE
385 #endif
386
387 /*************************************************************************
388  Common things
389 **************************************************************************/
390
391 namespace cds {
392
393     /// any_type is used as a placeholder for auto-calculated type (usually in \p rebind templates)
394     struct any_type {};
395
396 } // namespace cds
397
398 #endif // #ifndef CDSLIB_DEFS_H