2 This file is a part of libcds - Concurrent Data Structures library
4 (C) Copyright Maxim Khizhinsky (libcds.dev@gmail.com) 2006-2017
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 "stack_type.h"
32 #include "../misc/common.h"
36 static size_t s_nPushThreadCount = 4;
37 static size_t s_nPopThreadCount = 4;
38 static size_t s_nStackSize = 1000000;
39 static size_t s_nEliminationStackSize = 500000;
40 static size_t s_nEliminationSize = 4;
42 static atomics::atomic<size_t> s_nWorkingProducers( 0 );
44 class stack_push_pop : public cds_test::stress_fixture
61 value_type( size_t n )
67 static size_t const c_nValArraySize = 1024;
69 template <class Stack>
70 class Producer: public cds_test::thread
72 typedef cds_test::thread base_class;
75 Producer( cds_test::thread_pool& pool, Stack& stack, size_t push_count )
76 : base_class( pool, producer_thread )
78 , m_nItemCount( push_count )
82 Producer( Producer& src )
84 , m_stack( src.m_stack )
85 , m_nItemCount( src.m_nItemCount )
89 virtual thread * clone()
91 return new Producer( *this );
96 memset( m_arrPush, 0, sizeof( m_arrPush ));
100 for ( size_t i = 0; i < m_nItemCount; ++i ) {
101 v.nNo = i % c_nValArraySize;
102 if ( m_stack.push( v ))
108 s_nWorkingProducers.fetch_sub( 1, atomics::memory_order_release );
113 size_t const m_nItemCount;
115 size_t m_arrPush[c_nValArraySize];
118 template <class Stack>
119 class Consumer : public cds_test::thread
121 typedef cds_test::thread base_class;
124 Consumer( cds_test::thread_pool& pool, Stack& stack )
125 : base_class( pool, consumer_thread )
132 Consumer( Consumer& src )
134 , m_stack( src.m_stack )
140 virtual thread * clone()
142 return new Consumer( *this );
147 memset( m_arrPop, 0, sizeof( m_arrPop ));
150 while ( !( s_nWorkingProducers.load( atomics::memory_order_acquire ) == 0 && m_stack.empty())) {
151 if ( m_stack.pop( v )) {
153 if ( v.nNo < sizeof( m_arrPop ) / sizeof( m_arrPop[0] ))
167 size_t m_arrPop[c_nValArraySize];
172 static void SetUpTestCase()
174 cds_test::config const& cfg = get_config("Stack_PushPop");
176 s_nPushThreadCount = cfg.get_size_t( "PushThreadCount", s_nPushThreadCount );
177 s_nPopThreadCount = cfg.get_size_t( "PopThreadCount", s_nPopThreadCount );
178 s_nStackSize = cfg.get_size_t( "StackSize", s_nStackSize );
179 s_nEliminationStackSize =
180 cfg.get_size_t("EliminationStackSize", s_nEliminationStackSize);
181 s_nEliminationSize = cfg.get_size_t( "EliminationSize", s_nEliminationSize );
183 if ( s_nPushThreadCount == 0 )
184 s_nPushThreadCount = 1;
185 if ( s_nPopThreadCount == 0 )
186 s_nPopThreadCount = 1;
189 //static void TearDownTestCase();
191 template <typename Stack>
192 void test( Stack& stack )
194 cds_test::thread_pool& pool = get_pool();
195 size_t const nPushCount = s_nStackSize / s_nPushThreadCount;
197 pool.add( new Producer<Stack>( pool, stack, nPushCount ), s_nPushThreadCount );
198 pool.add( new Consumer<Stack>( pool, stack ), s_nPopThreadCount );
200 s_nWorkingProducers.store( s_nPushThreadCount );
201 s_nStackSize = nPushCount * s_nPushThreadCount;
203 propout() << std::make_pair( "producer_thread_count", s_nPushThreadCount )
204 << std::make_pair( "consumer_thread_count", s_nPopThreadCount )
205 << std::make_pair( "push_count", s_nStackSize )
208 std::chrono::milliseconds duration = pool.run();
210 propout() << std::make_pair( "duration", duration );
212 DEBUG(analyze( stack ));
214 propout() << stack.statistics();
217 template <typename Stack>
218 void test_elimination( Stack& stack )
221 check_elimination_stat( stack.statistics());
224 void check_elimination_stat( cds::container::treiber_stack::empty_stat const& )
227 void check_elimination_stat( cds::container::treiber_stack::stat<> const& s )
229 EXPECT_EQ( s.m_PushCount.get() + s.m_ActivePushCollision.get() + s.m_PassivePushCollision.get(), s_nStackSize );
230 EXPECT_EQ( s.m_PopCount.get() + s.m_ActivePopCollision.get() + s.m_PassivePopCollision.get(), s_nStackSize );
231 EXPECT_EQ( s.m_PushCount.get(), s.m_PopCount.get());
232 EXPECT_EQ( s.m_ActivePopCollision.get(), s.m_PassivePushCollision.get());
233 EXPECT_EQ( s.m_ActivePushCollision.get(), s.m_PassivePopCollision.get());
236 template< class Stack>
237 void analyze( Stack& /*stack*/ )
239 cds_test::thread_pool& pool = get_pool();
241 size_t nPushError = 0;
242 size_t nPopEmpty = 0;
243 size_t nPopCount = 0;
244 size_t arrVal[c_nValArraySize];
245 memset( arrVal, 0, sizeof( arrVal ));
246 size_t nDirtyPop = 0;
248 for ( size_t threadNo = 0; threadNo < pool.size(); ++threadNo ) {
249 cds_test::thread& thread = pool.get( threadNo );
250 if ( thread.type() == producer_thread ) {
251 Producer<Stack>& producer = static_cast<Producer<Stack>&>( thread );
253 nPushError += producer.m_nPushError;
254 for ( size_t i = 0; i < c_nValArraySize; ++i )
255 arrVal[i] += producer.m_arrPush[i];
258 ASSERT_EQ( thread.type(), consumer_thread );
259 Consumer<Stack>& consumer = static_cast<Consumer<Stack>&>(thread);
261 nPopEmpty += consumer.m_nPopEmpty;
262 nPopCount += consumer.m_nPopCount;
263 nDirtyPop += consumer.m_nDirtyPop;
264 for ( size_t i = 0; i < c_nValArraySize; ++i )
265 arrVal[i] -= consumer.m_arrPop[i];
269 EXPECT_EQ( nPopCount, s_nStackSize );
270 EXPECT_EQ( nDirtyPop, 0u );
272 for ( size_t i = 0; i < sizeof( arrVal ) / sizeof( arrVal[0] ); ++i ) {
273 EXPECT_EQ( arrVal[i], 0u );
276 propout() << std::make_pair( "push_count", s_nStackSize )
277 << std::make_pair( "push_error", nPushError )
278 << std::make_pair( "pop_empty", nPopEmpty )
279 << std::make_pair( "dirty_pop", nDirtyPop )
284 CDSSTRESS_TreiberStack( stack_push_pop )
286 #undef CDSSTRESS_EliminationStack_F
288 #define CDSSTRESS_EliminationStack_F( test_fixture, type_name ) \
289 TEST_F( test_fixture, type_name ) \
291 typedef stack::Types< value_type >::type_name stack_type; \
292 s_nStackSize = s_nEliminationStackSize; \
293 stack_type stack( s_nEliminationSize ); \
294 test_elimination( stack ); \
297 CDSSTRESS_EliminationStack( stack_push_pop )
298 //CDSSTRESS_FCStack( stack_push_pop )
299 //CDSSTRESS_FCDeque( stack_push_pop )