sp_counted_base_snc_ps3.hpp
Go to the documentation of this file.
1 #ifndef BOOST_SMART_PTR_DETAIL_SP_COUNTED_BASE_SNC_PS3_HPP_INCLUDED
2 #define BOOST_SMART_PTR_DETAIL_SP_COUNTED_BASE_SNC_PS3_HPP_INCLUDED
3 
4 // MS compatible compilers support #pragma once
5 #if defined(_MSC_VER) && (_MSC_VER >= 1020)
6 # pragma once
7 #endif
8 
9 // detail/sp_counted_base_gcc_sparc.hpp - g++ on Sparc V8+
10 //
11 // Copyright (c) 2006 Piotr Wyderski
12 // Copyright (c) 2006 Tomas Puverle
13 // Copyright (c) 2006 Peter Dimov
14 // Copyright (c) 2011 Emil Dotchevski
15 //
16 // Distributed under the Boost Software License, Version 1.0.
17 // See accompanying file LICENSE_1_0.txt or copy at
18 // http://www.boost.org/LICENSE_1_0.txt
19 //
20 // Thanks to Michael van der Westhuizen
21 
23 #include <inttypes.h> // uint32_t
24 
25 namespace boost
26 {
27 
28 namespace detail
29 {
30 
31 inline uint32_t compare_and_swap( uint32_t * dest_, uint32_t compare_, uint32_t swap_ )
32 {
33  return __builtin_cellAtomicCompareAndSwap32(dest_,compare_,swap_);
34 }
35 
36 inline uint32_t atomic_fetch_and_add( uint32_t * pw, uint32_t dv )
37 {
38  // long r = *pw;
39  // *pw += dv;
40  // return r;
41 
42  for( ;; )
43  {
44  uint32_t r = *pw;
45 
46  if( __builtin_expect((compare_and_swap(pw, r, r + dv) == r), 1) )
47  {
48  return r;
49  }
50  }
51 }
52 
53 inline void atomic_increment( uint32_t * pw )
54 {
55  (void) __builtin_cellAtomicIncr32( pw );
56 }
57 
58 inline uint32_t atomic_decrement( uint32_t * pw )
59 {
60  return __builtin_cellAtomicDecr32( pw );
61 }
62 
63 inline uint32_t atomic_conditional_increment( uint32_t * pw )
64 {
65  // long r = *pw;
66  // if( r != 0 ) ++*pw;
67  // return r;
68 
69  for( ;; )
70  {
71  uint32_t r = *pw;
72 
73  if( r == 0 )
74  {
75  return r;
76  }
77 
78  if( __builtin_expect( ( compare_and_swap( pw, r, r + 1 ) == r ), 1 ) )
79  {
80  return r;
81  }
82  }
83 }
84 
85 class sp_counted_base
86 {
87 private:
88 
91 
92  uint32_t use_count_; // #shared
93  uint32_t weak_count_; // #weak + (#shared != 0)
94 
95 public:
96 
98  {
99  }
100 
101  virtual ~sp_counted_base() // nothrow
102  {
103  }
104 
105  // dispose() is called when use_count_ drops to zero, to release
106  // the resources managed by *this.
107 
108  virtual void dispose() = 0; // nothrow
109 
110  // destroy() is called when weak_count_ drops to zero.
111 
112  virtual void destroy() // nothrow
113  {
114  delete this;
115  }
116 
117  virtual void * get_deleter( sp_typeinfo const & ti ) = 0;
118  virtual void * get_untyped_deleter() = 0;
119 
121  {
123  }
124 
125  bool add_ref_lock() // true on success
126  {
128  }
129 
130  void release() // nothrow
131  {
132  if( atomic_decrement( &use_count_ ) == 1 )
133  {
134  dispose();
135  weak_release();
136  }
137  }
138 
139  void weak_add_ref() // nothrow
140  {
142  }
143 
144  void weak_release() // nothrow
145  {
146  if( atomic_decrement( &weak_count_ ) == 1 )
147  {
148  destroy();
149  }
150  }
151 
152  long use_count() const // nothrow
153  {
154  return const_cast< uint32_t const volatile & >( use_count_ );
155  }
156 };
157 
158 } // namespace detail
159 
160 } // namespace boost
161 
162 #endif // #ifndef BOOST_SMART_PTR_DETAIL_SP_COUNTED_BASE_SNC_PS3_HPP_INCLUDED
boost::detail::atomic_increment
void atomic_increment(int *pw)
Definition: sp_counted_base_acc_ia64.hpp:27
boost::detail::sp_counted_base::use_count_
uint32_t use_count_
Definition: sp_counted_base_snc_ps3.hpp:92
boost::detail::sp_counted_base::get_untyped_deleter
virtual void * get_untyped_deleter()=0
boost
BOOST_MOVE_USE_STANDARD_LIBRARY_MOVE.
boost::detail::sp_counted_base::destroy
virtual void destroy()
Definition: sp_counted_base_snc_ps3.hpp:112
boost::detail::sp_counted_base::add_ref_copy
void add_ref_copy()
Definition: sp_counted_base_snc_ps3.hpp:120
sp_typeinfo.hpp
boost::detail::sp_counted_base::weak_release
void weak_release()
Definition: sp_counted_base_acc_ia64.hpp:133
boost::detail::sp_counted_base::add_ref_lock
bool add_ref_lock()
Definition: sp_counted_base_snc_ps3.hpp:125
boost::detail::compare_and_swap
int32_t compare_and_swap(int32_t *dest_, int32_t compare_, int32_t swap_)
Definition: sp_counted_base_gcc_sparc.hpp:31
boost::detail::sp_typeinfo
boost::core::typeinfo sp_typeinfo
Definition: sp_typeinfo.hpp:28
boost::detail::sp_counted_base::get_deleter
virtual void * get_deleter(sp_typeinfo const &ti)=0
boost::detail::sp_counted_base::use_count
long use_count() const
Definition: sp_counted_base_snc_ps3.hpp:152
boost::detail::sp_counted_base::dispose
virtual void dispose()=0
boost::detail::sp_counted_base::~sp_counted_base
virtual ~sp_counted_base()
Definition: sp_counted_base_snc_ps3.hpp:101
boost::detail::sp_counted_base::operator=
sp_counted_base & operator=(sp_counted_base const &)
boost::detail::atomic_conditional_increment
int atomic_conditional_increment(int *pw)
Definition: sp_counted_base_acc_ia64.hpp:47
boost::detail::sp_counted_base::sp_counted_base
sp_counted_base()
Definition: sp_counted_base_acc_ia64.hpp:86
boost::detail::sp_counted_base::weak_count_
uint32_t weak_count_
Definition: sp_counted_base_snc_ps3.hpp:93
boost::detail::sp_counted_base::release
void release()
Definition: sp_counted_base_snc_ps3.hpp:130
boost::detail::atomic_decrement
int atomic_decrement(int *pw)
Definition: sp_counted_base_acc_ia64.hpp:34
boost::detail::atomic_fetch_and_add
int32_t atomic_fetch_and_add(int32_t *pw, int32_t dv)
Definition: sp_counted_base_gcc_sparc.hpp:41
boost::detail::sp_counted_base::use_count_
int use_count_
Definition: sp_counted_base_acc_ia64.hpp:81
boost::detail::sp_counted_base::weak_count_
int weak_count_
Definition: sp_counted_base_acc_ia64.hpp:82
boost::detail::sp_counted_base::weak_add_ref
void weak_add_ref()
Definition: sp_counted_base_snc_ps3.hpp:139


sick_visionary_ros
Author(s): SICK AG TechSupport 3D Snapshot
autogenerated on Thu Feb 8 2024 03:48:40