Added copyright and license
[libcds.git] / tests / test-hdr / queue / hdr_moirqueue_hp.cpp
1 /*
2     This file is a part of libcds - Concurrent Data Structures library
3
4     (C) Copyright Maxim Khizhinsky (libcds.dev@gmail.com) 2006-2016
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 #include <cds/gc/hp.h>
32 #include <cds/container/moir_queue.h>
33
34 #include "queue/hdr_queue.h"
35
36 namespace queue {
37
38     void HdrTestQueue::MoirQueue_HP()
39     {
40         typedef cds::container::MoirQueue< cds::gc::HP, int > test_queue;
41         test_no_ic< test_queue >();
42     }
43
44     void HdrTestQueue::MoirQueue_HP_Counted()
45     {
46         typedef cds::container::MoirQueue < cds::gc::HP, int,
47             typename cds::container::msqueue::make_traits <
48                 cds::opt::item_counter < cds::atomicity::item_counter >
49             > ::type
50         > test_queue;
51
52         test_ic< test_queue >();
53     }
54
55     void HdrTestQueue::MoirQueue_HP_relax()
56     {
57         typedef cds::container::MoirQueue < cds::gc::HP, int,
58             typename cds::container::msqueue::make_traits <
59                 cds::opt::memory_model < cds::opt::v::relaxed_ordering >
60             > ::type
61         > test_queue;
62
63         test_no_ic< test_queue >();
64     }
65
66     void HdrTestQueue::MoirQueue_HP_Counted_relax()
67     {
68         typedef cds::container::MoirQueue < cds::gc::HP, int,
69             typename cds::container::msqueue::make_traits <
70                 cds::opt::item_counter< cds::atomicity::item_counter >
71                 , cds::opt::memory_model < cds::opt::v::relaxed_ordering >
72             > ::type
73         > test_queue;
74
75         test_ic< test_queue >();
76     }
77
78     void HdrTestQueue::MoirQueue_HP_seqcst()
79     {
80         typedef cds::container::MoirQueue < cds::gc::HP, int,
81             typename cds::container::msqueue::make_traits <
82                 cds::opt::memory_model < cds::opt::v::sequential_consistent >
83             > ::type
84         > test_queue;
85
86         test_no_ic< test_queue >();
87     }
88
89     void HdrTestQueue::MoirQueue_HP_Counted_seqcst()
90     {
91         typedef cds::container::MoirQueue < cds::gc::HP, int,
92             typename cds::container::msqueue::make_traits <
93                 cds::opt::item_counter< cds::atomicity::item_counter >
94                 , cds::opt::memory_model < cds::opt::v::sequential_consistent >
95             > ::type
96         > test_queue;
97
98         test_ic< test_queue >();
99     }
100
101     void HdrTestQueue::MoirQueue_HP_relax_align()
102     {
103         typedef cds::container::MoirQueue < cds::gc::HP, int,
104             typename cds::container::msqueue::make_traits <
105                 cds::opt::memory_model< cds::opt::v::relaxed_ordering>
106                 , cds::opt::padding < 16 >
107             > ::type
108         > test_queue;
109
110         test_no_ic< test_queue >();
111     }
112
113     void HdrTestQueue::MoirQueue_HP_Counted_relax_align()
114     {
115         typedef cds::container::MoirQueue < cds::gc::HP, int,
116             typename cds::container::msqueue::make_traits <
117                 cds::opt::item_counter< cds::atomicity::item_counter >
118                 , cds::opt::memory_model< cds::opt::v::relaxed_ordering>
119                 , cds::opt::padding < 32 >
120             >::type
121         > test_queue;
122
123         test_ic< test_queue >();
124     }
125
126     void HdrTestQueue::MoirQueue_HP_seqcst_align()
127     {
128         typedef cds::container::MoirQueue < cds::gc::HP, int,
129             typename cds::container::msqueue::make_traits <
130                 cds::opt::memory_model< cds::opt::v::sequential_consistent>
131                 ,cds::opt::padding < cds::opt::no_special_padding >
132             > ::type
133         > test_queue;
134
135         test_no_ic< test_queue >();
136     }
137
138     void HdrTestQueue::MoirQueue_HP_Counted_seqcst_align()
139     {
140         typedef cds::container::MoirQueue < cds::gc::HP, int,
141             typename cds::container::msqueue::make_traits <
142                 cds::opt::item_counter< cds::atomicity::item_counter >
143                 , cds::opt::memory_model< cds::opt::v::sequential_consistent>
144                 , cds::opt::padding < cds::opt::cache_line_padding >
145             > ::type
146         > test_queue;
147         test_ic< test_queue >();
148     }
149 }   // namespace queue