1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164
|
// 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 <cds_test/stress_test.h>
#include <cds/intrusive/free_list.h>
#include <cds/intrusive/free_list_cached.h>
#ifdef CDS_DCAS_SUPPORT
# include <cds/intrusive/free_list_tagged.h>
#endif
namespace {
class put_get: public cds_test::stress_fixture
{
protected:
static size_t s_nThreadCount;
static size_t s_nPassCount;
static size_t const c_nArraySize = 100;
template <typename FreeList >
struct value_type: public FreeList::node
{
size_t counter;
value_type()
: counter(0)
{}
};
template <class FreeList>
class Worker: public cds_test::thread
{
typedef cds_test::thread base_class;
public:
FreeList& m_FreeList;
size_t m_nSuccess = 0;
public:
Worker( cds_test::thread_pool& pool, FreeList& s )
: base_class( pool )
, m_FreeList( s )
{}
Worker( Worker& src )
: base_class( src )
, m_FreeList( src.m_FreeList )
{}
virtual thread * clone()
{
return new Worker( *this );
}
virtual void test()
{
typedef value_type<FreeList> item_type;
item_type* arr[ c_nArraySize ];
for ( size_t pass = 0; pass < s_nPassCount; ++pass ) {
size_t n = 0;
item_type* p;
while ( (p = static_cast<item_type*>( m_FreeList.get())) != nullptr ) {
CDS_TSAN_ANNOTATE_IGNORE_RW_BEGIN;
p->counter++;
CDS_TSAN_ANNOTATE_IGNORE_RW_END;
arr[n] = p;
++m_nSuccess;
++n;
}
for ( size_t i = 0; i < n; ++i )
m_FreeList.put( arr[i] );
}
}
};
public:
static void SetUpTestCase()
{
cds_test::config const& cfg = get_config( "free_list" );
s_nThreadCount = cfg.get_size_t( "ThreadCount", s_nThreadCount );
s_nPassCount = cfg.get_size_t( "PassCount", s_nPassCount );
if ( s_nThreadCount == 0 )
s_nThreadCount = 1;
if ( s_nPassCount == 0 )
s_nPassCount = 1000;
}
//static void TearDownTestCase();
protected:
template <typename FreeList>
void test( FreeList& list )
{
cds_test::thread_pool& pool = get_pool();
value_type<FreeList> arr[c_nArraySize];
for ( auto& i : arr )
list.put( &i );
pool.add( new Worker<FreeList>( pool, list ), s_nThreadCount );
propout() << std::make_pair( "work_thread", s_nThreadCount )
<< std::make_pair( "pass_count", s_nPassCount );
std::chrono::milliseconds duration = pool.run();
propout() << std::make_pair( "duration", duration );
// analyze result
size_t nTotal = 0;
for ( auto const& i : arr )
nTotal += i.counter;
size_t nSuccess = 0;
for ( size_t threadNo = 0; threadNo < pool.size(); ++threadNo )
nSuccess += static_cast<Worker<FreeList>&>( pool.get( threadNo )).m_nSuccess;
EXPECT_EQ( nSuccess, nTotal );
list.clear( []( typename FreeList::node* ) {} );
}
};
size_t put_get::s_nThreadCount = 4;
size_t put_get::s_nPassCount = 100000;
#define CDSSTRESS_FREELIST_F( name, freelist_type ) \
TEST_F( put_get, name ) \
{ \
freelist_type fl; \
test( fl ); \
}
CDSSTRESS_FREELIST_F( FreeList, cds::intrusive::FreeList )
typedef cds::intrusive::CachedFreeList<cds::intrusive::FreeList> cached_free_list;
CDSSTRESS_FREELIST_F( CachedFreeList, cached_free_list )
#ifdef CDS_DCAS_SUPPORT
TEST_F( put_get, TaggetFreeList )
{
struct tagged_ptr {
void* p;
uintptr_t tag;
};
atomics::atomic<tagged_ptr> tp;
if ( tp.is_lock_free()) {
cds::intrusive::TaggedFreeList fl;
test( fl );
}
else
std::cout << "Double-width CAS is not supported\n";
}
#endif
} // namespace
|