fixed adding file problem
[c11concurrency-benchmarks.git] / gdax-orderbook-hpp / demo / dependencies / libcds-2.3.2 / test / unit / misc / cxx11_convert_memory_order.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 // This header should be included AFTER <cds/algo/atomic.h> if needed
32
33 namespace {
34
35     static inline atomics::memory_order convert_to_store_order( atomics::memory_order order )
36     {
37         switch ( order ) {
38             case atomics::memory_order_acquire:
39             case atomics::memory_order_consume:
40                 return atomics::memory_order_relaxed;
41             case atomics::memory_order_acq_rel:
42                 return atomics::memory_order_release;
43             default:
44                 return order;
45         }
46     }
47
48     static inline atomics::memory_order convert_to_load_order( atomics::memory_order order )
49     {
50         switch ( order ) {
51             case atomics::memory_order_release:
52                 return atomics::memory_order_relaxed;
53             case atomics::memory_order_acq_rel:
54                 return atomics::memory_order_acquire;
55             default:
56                 return order;
57         }
58     }
59
60 #if CDS_COMPILER == CDS_COMPILER_INTEL
61     static inline atomics::memory_order convert_to_exchange_order( atomics::memory_order order )
62     {
63         return order == atomics::memory_order_consume ? atomics::memory_order_relaxed : order;
64     }
65 #else
66     static inline atomics::memory_order convert_to_exchange_order( atomics::memory_order order )
67     {
68         return order;
69     }
70 #endif
71
72     template <typename T, bool Volatile>
73     struct add_volatile;
74
75     template <typename T>
76     struct add_volatile<T, false>
77     {
78         typedef T   type;
79     };
80
81     template <typename T>
82     struct add_volatile<T, true>
83     {
84         typedef T volatile   type;
85     };
86
87 } // namespace