| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279 |
- // Copyright (c) 2006-2018 Maxim Khizhinsky
- //
- // Distributed under the Boost Software License, Version 1.0. (See accompanying
- // file LICENSE or copy at http://www.boost.org/LICENSE_1_0.txt)
- #include "test_set_nogc.h"
- #include <cds/container/michael_list_nogc.h>
- #include <cds/container/split_list_set_nogc.h>
- #include <cds/intrusive/free_list.h>
- namespace {
- namespace cc = cds::container;
- typedef cds::gc::nogc gc_type;
- class SplitListMichaelSet_NoGC : public cds_test::container_set_nogc
- {
- protected:
- typedef cds_test::container_set_nogc base_class;
- //void SetUp()
- //{}
- //void TearDown()
- //{}
- };
- TEST_F( SplitListMichaelSet_NoGC, compare )
- {
- typedef cc::SplitListSet< gc_type, int_item,
- typename cc::split_list::make_traits<
- cc::split_list::ordered_list< cc::michael_list_tag >
- , cds::opt::hash< hash_int >
- , cc::split_list::ordered_list_traits<
- typename cc::michael_list::make_traits<
- cds::opt::compare< cmp >
- >::type
- >
- >::type
- > set_type;
- set_type s( kSize, 2 );
- test( s );
- }
- TEST_F( SplitListMichaelSet_NoGC, less )
- {
- typedef cc::SplitListSet< gc_type, int_item,
- typename cc::split_list::make_traits<
- cc::split_list::ordered_list< cc::michael_list_tag >
- , cds::opt::hash< hash_int >
- , cc::split_list::ordered_list_traits<
- typename cc::michael_list::make_traits<
- cds::opt::less< less >
- >::type
- >
- >::type
- > set_type;
- set_type s( kSize, 2 );
- test( s );
- }
- TEST_F( SplitListMichaelSet_NoGC, cmpmix )
- {
- typedef cc::SplitListSet< gc_type, int_item,
- typename cc::split_list::make_traits<
- cc::split_list::ordered_list< cc::michael_list_tag >
- , cds::opt::hash< hash_int >
- , cc::split_list::ordered_list_traits<
- typename cc::michael_list::make_traits<
- cds::opt::less< less >
- , cds::opt::compare< cmp >
- >::type
- >
- >::type
- > set_type;
- set_type s( kSize, 3 );
- test( s );
- }
- TEST_F( SplitListMichaelSet_NoGC, item_counting )
- {
- struct set_traits: public cc::split_list::traits
- {
- typedef cc::michael_list_tag ordered_list;
- typedef hash_int hash;
- typedef cds::atomicity::item_counter item_counter;
- struct ordered_list_traits: public cc::michael_list::traits
- {
- typedef cmp compare;
- typedef base_class::less less;
- typedef cds::backoff::empty back_off;
- };
- };
- typedef cc::SplitListSet< gc_type, int_item, set_traits > set_type;
- set_type s( kSize, 4 );
- test( s );
- }
- TEST_F( SplitListMichaelSet_NoGC, stat )
- {
- struct set_traits: public cc::split_list::traits
- {
- typedef cc::michael_list_tag ordered_list;
- typedef hash_int hash;
- typedef cds::atomicity::item_counter item_counter;
- typedef cc::split_list::stat<> stat;
- struct ordered_list_traits: public cc::michael_list::traits
- {
- typedef base_class::less less;
- typedef cds::opt::v::sequential_consistent memory_model;
- };
- };
- typedef cc::SplitListSet< gc_type, int_item, set_traits > set_type;
- set_type s( kSize, 5 );
- test( s );
- }
- TEST_F( SplitListMichaelSet_NoGC, back_off )
- {
- struct set_traits: public cc::split_list::traits
- {
- typedef cc::michael_list_tag ordered_list;
- typedef hash_int hash;
- typedef cds::atomicity::item_counter item_counter;
- typedef cds::backoff::yield back_off;
- typedef cds::opt::v::sequential_consistent memory_model;
- struct ordered_list_traits: public cc::michael_list::traits
- {
- typedef cmp compare;
- typedef cds::backoff::pause back_off;
- };
- };
- typedef cc::SplitListSet< gc_type, int_item, set_traits > set_type;
- set_type s( kSize, 2 );
- test( s );
- }
- TEST_F( SplitListMichaelSet_NoGC, free_list )
- {
- struct set_traits: public cc::split_list::traits
- {
- typedef cc::michael_list_tag ordered_list;
- typedef hash_int hash;
- typedef cds::intrusive::FreeList free_list;
- struct ordered_list_traits: public cc::michael_list::traits
- {
- typedef cmp compare;
- typedef cds::backoff::pause back_off;
- };
- };
- typedef cc::SplitListSet< gc_type, int_item, set_traits > set_type;
- set_type s( kSize, 2 );
- test( s );
- }
- struct set_static_traits: public cc::split_list::traits
- {
- static bool const dynamic_bucket_table = false;
- };
- TEST_F( SplitListMichaelSet_NoGC, static_bucket_table )
- {
- struct set_traits: public set_static_traits
- {
- typedef cc::michael_list_tag ordered_list;
- typedef hash_int hash;
- typedef cds::atomicity::item_counter item_counter;
- struct ordered_list_traits: public cc::michael_list::traits
- {
- typedef cmp compare;
- typedef cds::backoff::pause back_off;
- };
- };
- typedef cc::SplitListSet< gc_type, int_item, set_traits > set_type;
- set_type s( kSize, 4 );
- test( s );
- }
- TEST_F( SplitListMichaelSet_NoGC, static_bucket_table_free_list )
- {
- struct set_traits: public set_static_traits
- {
- typedef cc::michael_list_tag ordered_list;
- typedef hash_int hash;
- typedef cds::atomicity::item_counter item_counter;
- typedef cds::intrusive::FreeList free_list;
- struct ordered_list_traits: public cc::michael_list::traits
- {
- typedef cmp compare;
- typedef cds::backoff::pause back_off;
- };
- };
- typedef cc::SplitListSet< gc_type, int_item, set_traits > set_type;
- set_type s( kSize, 4 );
- test( s );
- }
- TEST_F( SplitListMichaelSet_NoGC, bit_reversal_swar )
- {
- struct set_traits: public cc::split_list::traits
- {
- typedef cc::michael_list_tag ordered_list;
- typedef hash_int hash;
- typedef cds::atomicity::item_counter item_counter;
- typedef cds::algo::bit_reversal::swar bit_reversal;
- struct ordered_list_traits: public cc::michael_list::traits
- {
- typedef cmp compare;
- typedef base_class::less less;
- typedef cds::backoff::empty back_off;
- };
- };
- typedef cc::SplitListSet< gc_type, int_item, set_traits > set_type;
- set_type s( kSize, 2 );
- test( s );
- }
- TEST_F( SplitListMichaelSet_NoGC, bit_reversal_lookup )
- {
- struct set_traits: public cc::split_list::traits
- {
- typedef cc::michael_list_tag ordered_list;
- typedef hash_int hash;
- typedef cds::atomicity::item_counter item_counter;
- typedef cds::algo::bit_reversal::lookup bit_reversal;
- struct ordered_list_traits: public cc::michael_list::traits
- {
- typedef cmp compare;
- typedef base_class::less less;
- typedef cds::backoff::empty back_off;
- };
- };
- typedef cc::SplitListSet< gc_type, int_item, set_traits > set_type;
- set_type s( kSize, 2 );
- test( s );
- }
- TEST_F( SplitListMichaelSet_NoGC, bit_reversal_muldiv )
- {
- struct set_traits: public cc::split_list::traits
- {
- typedef cc::michael_list_tag ordered_list;
- typedef hash_int hash;
- typedef cds::atomicity::item_counter item_counter;
- typedef cds::algo::bit_reversal::muldiv bit_reversal;
- struct ordered_list_traits: public cc::michael_list::traits
- {
- typedef cmp compare;
- typedef base_class::less less;
- typedef cds::backoff::empty back_off;
- };
- };
- typedef cc::SplitListSet< gc_type, int_item, set_traits > set_type;
- set_type s( kSize, 2 );
- test( s );
- }
- } // namespace
|