2 This file is a part of libcds - Concurrent Data Structures library
4 (C) Copyright Maxim Khizhinsky (libcds.dev@gmail.com) 2006-2016
6 Source code repo: http://github.com/khizmax/libcds/
7 Download: http://sourceforge.net/projects/libcds/files/
9 Redistribution and use in source and binary forms, with or without
10 modification, are permitted provided that the following conditions are met:
12 * Redistributions of source code must retain the above copyright notice, this
13 list of conditions and the following disclaimer.
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.
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.
31 #include "test_set_nogc.h"
33 #include <cds/container/michael_list_nogc.h>
34 #include <cds/container/split_list_set_nogc.h>
35 #include <cds/intrusive/free_list.h>
38 namespace cc = cds::container;
39 typedef cds::gc::nogc gc_type;
41 class SplitListMichaelSet_NoGC : public cds_test::container_set_nogc
44 typedef cds_test::container_set_nogc base_class;
53 TEST_F( SplitListMichaelSet_NoGC, compare )
55 typedef cc::SplitListSet< gc_type, int_item,
56 typename cc::split_list::make_traits<
57 cc::split_list::ordered_list< cc::michael_list_tag >
58 , cds::opt::hash< hash_int >
59 , cc::split_list::ordered_list_traits<
60 typename cc::michael_list::make_traits<
61 cds::opt::compare< cmp >
67 set_type s( kSize, 2 );
71 TEST_F( SplitListMichaelSet_NoGC, less )
73 typedef cc::SplitListSet< gc_type, int_item,
74 typename cc::split_list::make_traits<
75 cc::split_list::ordered_list< cc::michael_list_tag >
76 , cds::opt::hash< hash_int >
77 , cc::split_list::ordered_list_traits<
78 typename cc::michael_list::make_traits<
79 cds::opt::less< less >
85 set_type s( kSize, 2 );
89 TEST_F( SplitListMichaelSet_NoGC, cmpmix )
91 typedef cc::SplitListSet< gc_type, int_item,
92 typename cc::split_list::make_traits<
93 cc::split_list::ordered_list< cc::michael_list_tag >
94 , cds::opt::hash< hash_int >
95 , cc::split_list::ordered_list_traits<
96 typename cc::michael_list::make_traits<
97 cds::opt::less< less >
98 , cds::opt::compare< cmp >
104 set_type s( kSize, 3 );
108 TEST_F( SplitListMichaelSet_NoGC, item_counting )
110 struct set_traits: public cc::split_list::traits
112 typedef cc::michael_list_tag ordered_list;
113 typedef hash_int hash;
114 typedef cds::atomicity::item_counter item_counter;
116 struct ordered_list_traits: public cc::michael_list::traits
119 typedef base_class::less less;
120 typedef cds::backoff::empty back_off;
123 typedef cc::SplitListSet< gc_type, int_item, set_traits > set_type;
125 set_type s( kSize, 4 );
129 TEST_F( SplitListMichaelSet_NoGC, stat )
131 struct set_traits: public cc::split_list::traits
133 typedef cc::michael_list_tag ordered_list;
134 typedef hash_int hash;
135 typedef cds::atomicity::item_counter item_counter;
136 typedef cc::split_list::stat<> stat;
138 struct ordered_list_traits: public cc::michael_list::traits
140 typedef base_class::less less;
141 typedef cds::opt::v::sequential_consistent memory_model;
144 typedef cc::SplitListSet< gc_type, int_item, set_traits > set_type;
146 set_type s( kSize, 5 );
150 TEST_F( SplitListMichaelSet_NoGC, back_off )
152 struct set_traits: public cc::split_list::traits
154 typedef cc::michael_list_tag ordered_list;
155 typedef hash_int hash;
156 typedef cds::atomicity::item_counter item_counter;
157 typedef cds::backoff::yield back_off;
158 typedef cds::opt::v::sequential_consistent memory_model;
160 struct ordered_list_traits: public cc::michael_list::traits
163 typedef cds::backoff::pause back_off;
166 typedef cc::SplitListSet< gc_type, int_item, set_traits > set_type;
168 set_type s( kSize, 2 );
172 TEST_F( SplitListMichaelSet_NoGC, free_list )
174 struct set_traits: public cc::split_list::traits
176 typedef cc::michael_list_tag ordered_list;
177 typedef hash_int hash;
178 typedef cds::intrusive::FreeList free_list;
180 struct ordered_list_traits: public cc::michael_list::traits
183 typedef cds::backoff::pause back_off;
186 typedef cc::SplitListSet< gc_type, int_item, set_traits > set_type;
188 set_type s( kSize, 2 );
192 struct set_static_traits: public cc::split_list::traits
194 static bool const dynamic_bucket_table = false;
197 TEST_F( SplitListMichaelSet_NoGC, static_bucket_table )
199 struct set_traits: public set_static_traits
201 typedef cc::michael_list_tag ordered_list;
202 typedef hash_int hash;
203 typedef cds::atomicity::item_counter item_counter;
205 struct ordered_list_traits: public cc::michael_list::traits
208 typedef cds::backoff::pause back_off;
211 typedef cc::SplitListSet< gc_type, int_item, set_traits > set_type;
213 set_type s( kSize, 4 );
217 TEST_F( SplitListMichaelSet_NoGC, static_bucket_table_free_list )
219 struct set_traits: public set_static_traits
221 typedef cc::michael_list_tag ordered_list;
222 typedef hash_int hash;
223 typedef cds::atomicity::item_counter item_counter;
224 typedef cds::intrusive::FreeList free_list;
226 struct ordered_list_traits: public cc::michael_list::traits
229 typedef cds::backoff::pause back_off;
232 typedef cc::SplitListSet< gc_type, int_item, set_traits > set_type;
234 set_type s( kSize, 4 );