X-Git-Url: http://plrg.eecs.uci.edu/git/?p=libcds.git;a=blobdiff_plain;f=tests%2Ftest-hdr%2Ftree%2Fhdr_ellenbintree_map_rcu_gpb.cpp;fp=tests%2Ftest-hdr%2Ftree%2Fhdr_ellenbintree_map_rcu_gpb.cpp;h=0000000000000000000000000000000000000000;hp=dbf27300b87c45adbc81940e01bc5a845825584b;hb=ff3b19a7120f7a8e60731ad276615d1e9abac595;hpb=140998db06d5e9726986fe578e60773b88216005 diff --git a/tests/test-hdr/tree/hdr_ellenbintree_map_rcu_gpb.cpp b/tests/test-hdr/tree/hdr_ellenbintree_map_rcu_gpb.cpp deleted file mode 100644 index dbf27300..00000000 --- a/tests/test-hdr/tree/hdr_ellenbintree_map_rcu_gpb.cpp +++ /dev/null @@ -1,181 +0,0 @@ -/* - This file is a part of libcds - Concurrent Data Structures library - - (C) Copyright Maxim Khizhinsky (libcds.dev@gmail.com) 2006-2016 - - Source code repo: http://github.com/khizmax/libcds/ - Download: http://sourceforge.net/projects/libcds/files/ - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are met: - - * Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER - CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, - OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -*/ - -#include "tree/hdr_ellenbintree_map.h" -#include -#include - -#include "tree/hdr_intrusive_ellen_bintree_pool_rcu.h" -#include "unit/print_ellenbintree_stat.h" - -namespace tree { - namespace cc = cds::container; - namespace co = cds::opt; - namespace { - typedef cds::urcu::gc< cds::urcu::general_buffered<> > rcu_type; - - typedef cc::ellen_bintree::map_node tree_leaf_node; - typedef cc::ellen_bintree::internal_node< EllenBinTreeMapHdrTest::key_type, tree_leaf_node > tree_internal_node; - typedef cc::ellen_bintree::update_desc tree_update_desc; - - struct print_stat { - template - void operator()( Tree const& t) - { - std::cout << t.statistics(); - } - }; - } - - void EllenBinTreeMapHdrTest::EllenBinTree_rcu_gpb_less() - { - typedef cc::EllenBinTreeMap< rcu_type, key_type, value_type, - cc::ellen_bintree::make_map_traits< - co::less< less > - >::type - > map_type; - - test_rcu(); - } - - void EllenBinTreeMapHdrTest::EllenBinTree_rcu_gpb_cmp() - { - typedef cc::EllenBinTreeMap< rcu_type, key_type, value_type, - cc::ellen_bintree::make_map_traits< - co::compare< compare > - >::type - > map_type; - - test_rcu(); - } - - void EllenBinTreeMapHdrTest::EllenBinTree_rcu_gpb_cmpless() - { - typedef cc::EllenBinTreeMap< rcu_type, key_type, value_type, - cc::ellen_bintree::make_map_traits< - co::compare< compare > - ,co::less< less > - >::type - > map_type; - - test_rcu(); - } - - void EllenBinTreeMapHdrTest::EllenBinTree_rcu_gpb_less_ic() - { - typedef cc::EllenBinTreeMap< rcu_type, key_type, value_type, - cc::ellen_bintree::make_map_traits< - co::less< less > - ,co::item_counter< cds::atomicity::item_counter > - >::type - > map_type; - - test_rcu(); - } - - void EllenBinTreeMapHdrTest::EllenBinTree_rcu_gpb_cmp_ic() - { - struct map_traits : public cc::ellen_bintree::traits { - typedef cds::atomicity::item_counter item_counter; - typedef EllenBinTreeMapHdrTest::compare compare; - }; - typedef cc::EllenBinTreeMap< rcu_type, key_type, value_type, map_traits > map_type; - - test_rcu(); - } - - void EllenBinTreeMapHdrTest::EllenBinTree_rcu_gpb_less_stat() - { - typedef cc::EllenBinTreeMap< rcu_type, key_type, value_type, - cc::ellen_bintree::make_map_traits< - co::less< less > - ,co::stat< cc::ellen_bintree::stat<> > - >::type - > map_type; - - test_rcu(); - } - - void EllenBinTreeMapHdrTest::EllenBinTree_rcu_gpb_cmp_ic_stat() - { - typedef cc::EllenBinTreeMap< rcu_type, key_type, value_type, - cc::ellen_bintree::make_map_traits< - co::item_counter< cds::atomicity::item_counter > - ,co::stat< cc::ellen_bintree::stat<> > - ,co::compare< compare > - >::type - > map_type; - - test_rcu(); - } - - void EllenBinTreeMapHdrTest::EllenBinTree_rcu_gpb_cmp_ic_stat_yield() - { - typedef cc::EllenBinTreeMap< rcu_type, key_type, value_type, - cc::ellen_bintree::make_map_traits< - co::item_counter< cds::atomicity::item_counter > - ,co::stat< cc::ellen_bintree::stat<> > - ,co::compare< compare > - , co::back_off< cds::backoff::yield > - >::type - > map_type; - - test_rcu(); - } - - void EllenBinTreeMapHdrTest::EllenBinTree_rcu_gpb_less_pool() - { - typedef cc::EllenBinTreeMap< rcu_type, key_type, value_type, - cc::ellen_bintree::make_map_traits< - co::less< less > - ,co::node_allocator< cds::memory::pool_allocator< tree_internal_node, ellen_bintree_rcu::internal_node_pool_accessor > > - ,cc::ellen_bintree::update_desc_allocator< cds::memory::pool_allocator< tree_update_desc, ellen_bintree_rcu::update_desc_pool_accessor > > - >::type - > map_type; - - test_rcu(); - } - - void EllenBinTreeMapHdrTest::EllenBinTree_rcu_gpb_less_pool_ic_stat() - { - typedef cc::EllenBinTreeMap< rcu_type, key_type, value_type, - cc::ellen_bintree::make_map_traits< - co::less< less > - ,co::node_allocator< cds::memory::pool_allocator< tree_internal_node, ellen_bintree_rcu::internal_node_pool_accessor > > - ,cc::ellen_bintree::update_desc_allocator< cds::memory::pool_allocator< tree_update_desc, ellen_bintree_rcu::update_desc_pool_accessor > > - ,co::item_counter< cds::atomicity::item_counter > - ,co::stat< cc::ellen_bintree::stat<> > - >::type - > map_type; - - test_rcu(); - } - -} // namespace tree