throwing_ptr
Smart pointers that throw on dereference if null
Functions
shared_ptr_atomic.cpp File Reference

Go to the source code of this file.

Functions

 TEST_CASE ("atomic_is_lock_free std::shared_ptr compatibility", "[shared_ptr][atomic]")
 
 TEST_CASE ("atomic_load works in the same thread", "[shared_ptr][atomic]")
 
 TEST_CASE ("atomic_load_explicit works in the same thread", "[shared_ptr][atomic]")
 
 TEST_CASE ("atomic_store works in the same thread", "[shared_ptr][atomic]")
 
 TEST_CASE ("atomic_store_explicit works in the same thread", "[shared_ptr][atomic]")
 
 TEST_CASE ("atomic_exchange works in the same thread", "[shared_ptr][atomic]")
 
 TEST_CASE ("atomic_exchange_explicit works in the same thread", "[shared_ptr][atomic]")
 
 TEST_CASE ("atomic_compare_exchange_weak works in the same thread", "[shared_ptr][atomic]")
 
 TEST_CASE ("atomic_compare_exchange_weak works in the same thread, compares " "pointer, not value", "[shared_ptr][atomic]")
 
 TEST_CASE ("atomic_compare_exchange_strong works in the same thread", "[shared_ptr][atomic]")
 
 TEST_CASE ("atomic_compare_exchange_strong works in the same thread, compares " "pointer, not value", "[shared_ptr][atomic]")
 
 TEST_CASE ("atomic_compare_exchange_weak_explicit works in the same thread", "[shared_ptr][atomic]")
 
 TEST_CASE ("atomic_compare_exchange_strong_explicit works in the same thread, " "compares pointer, not value", "[shared_ptr][atomic]")
 

Function Documentation

◆ TEST_CASE() [1/13]

TEST_CASE ( "atomic_is_lock_free std::shared_ptr compatibility"  ,
""  [shared_ptr][atomic] 
)

Definition at line 9 of file shared_ptr_atomic.cpp.

10  {
11  const auto std_p = std::make_shared<int>(42);
12  const auto p = throwing::make_shared<int>(42);
13  REQUIRE(atomic_is_lock_free(&p) == atomic_is_lock_free(&std_p));
14 }
bool atomic_is_lock_free(shared_ptr< T > const *p)
Determines whether atomic access to the shared pointer pointed-to by p is lock-free.
Definition: shared_ptr.hpp:955

◆ TEST_CASE() [2/13]

TEST_CASE ( "atomic_load works in the same thread"  ,
""  [shared_ptr][atomic] 
)

Definition at line 16 of file shared_ptr_atomic.cpp.

16  {
17  const auto p = throwing::make_shared<int>(42);
18  auto p2 = atomic_load(&p);
19  REQUIRE(*p2 == 42);
20 }
shared_ptr< T > atomic_load(const shared_ptr< T > *p)
Equivalent to atomic_load_explicit(p, std::memory_order_seq_cst)
Definition: shared_ptr.hpp:961

◆ TEST_CASE() [3/13]

TEST_CASE ( "atomic_load_explicit works in the same thread"  ,
""  [shared_ptr][atomic] 
)

Definition at line 22 of file shared_ptr_atomic.cpp.

23  {
24  const auto p = throwing::make_shared<int>(42);
25  auto p2 = atomic_load_explicit(&p, std::memory_order_seq_cst);
26  REQUIRE(*p2 == 42);
27 }
shared_ptr< T > atomic_load_explicit(const shared_ptr< T > *p, std::memory_order mo)
Returns the shared pointer pointed-to by p.
Definition: shared_ptr.hpp:972

◆ TEST_CASE() [4/13]

TEST_CASE ( "atomic_store works in the same thread"  ,
""  [shared_ptr][atomic] 
)

Definition at line 29 of file shared_ptr_atomic.cpp.

29  {
30  const auto p1 = throwing::make_shared<int>(1);
31  auto p2 = throwing::make_shared<int>(2);
32 
33  atomic_store(&p2, p1);
34  REQUIRE(*p2 == 1);
35 }
void atomic_store(shared_ptr< T > *p, shared_ptr< T > r)
Equivalent to atomic_store_explicit(p, r, memory_order_seq_cst)
Definition: shared_ptr.hpp:980

◆ TEST_CASE() [5/13]

TEST_CASE ( "atomic_store_explicit works in the same thread"  ,
""  [shared_ptr][atomic] 
)

Definition at line 37 of file shared_ptr_atomic.cpp.

38  {
39  const auto p1 = throwing::make_shared<int>(1);
40  auto p2 = throwing::make_shared<int>(2);
41 
42  atomic_store_explicit(&p2, p1, std::memory_order_seq_cst);
43  REQUIRE(*p2 == 1);
44 }
void atomic_store_explicit(shared_ptr< T > *p, shared_ptr< T > r, std::memory_order mo)
Stores the shared pointer r in the shared pointer pointed-to by p atomically, effectively executing p...
Definition: shared_ptr.hpp:992

◆ TEST_CASE() [6/13]

TEST_CASE ( "atomic_exchange works in the same thread"  ,
""  [shared_ptr][atomic] 
)

Definition at line 46 of file shared_ptr_atomic.cpp.

46  {
47  const auto p1 = throwing::make_shared<int>(1);
48  auto p2 = throwing::make_shared<int>(2);
49  auto p3 = atomic_exchange(&p2, p1);
50  REQUIRE(*p2 == 1);
51  REQUIRE(*p3 == 2);
52 }
shared_ptr< T > atomic_exchange(shared_ptr< T > *p, shared_ptr< T > r)
Equivalent to atomic_exchange(p, r, memory_order_seq_cst)

◆ TEST_CASE() [7/13]

TEST_CASE ( "atomic_exchange_explicit works in the same thread"  ,
""  [shared_ptr][atomic] 
)

Definition at line 54 of file shared_ptr_atomic.cpp.

55  {
56  const auto p1 = throwing::make_shared<int>(1);
57  auto p2 = throwing::make_shared<int>(2);
58  auto p3 = atomic_exchange_explicit(&p2, p1, std::memory_order_seq_cst);
59  REQUIRE(*p2 == 1);
60  REQUIRE(*p3 == 2);
61 }
shared_ptr< T > atomic_exchange_explicit(shared_ptr< T > *p, shared_ptr< T > r, std::memory_order mo)
Stores the shared pointer r in the shared pointer pointed to by p and returns the value formerly poin...

◆ TEST_CASE() [8/13]

TEST_CASE ( "atomic_compare_exchange_weak works in the same thread"  ,
""  [shared_ptr][atomic] 
)

Definition at line 63 of file shared_ptr_atomic.cpp.

64  {
65  auto p = throwing::make_shared<int>(1);
66  auto expected = p;
67  auto desired = throwing::make_shared<int>(2);
68 
69  REQUIRE(atomic_compare_exchange_weak(&p, &expected, desired));
70  REQUIRE(*p == 2);
71 }
bool atomic_compare_exchange_weak(shared_ptr< T > *p, shared_ptr< T > *expected, shared_ptr< T > desired)
Equivalent to atomic_compare_exchange_weak_explicit(p, expected, desired, std::memory_order_seq_cst, std::memory_order_seq_cst)

◆ TEST_CASE() [9/13]

TEST_CASE ( "atomic_compare_exchange_weak works in the same  thread,
compares " "  pointer,
not value"  ,
""  [shared_ptr][atomic] 
)

Definition at line 73 of file shared_ptr_atomic.cpp.

75  {
76  auto p = throwing::make_shared<int>(1);
77  auto expected = throwing::make_shared<int>(1);
78  auto desired = throwing::make_shared<int>(3);
79 
80  REQUIRE_FALSE(atomic_compare_exchange_weak(&p, &expected, desired));
81  REQUIRE(*expected == 1);
82 }
bool atomic_compare_exchange_weak(shared_ptr< T > *p, shared_ptr< T > *expected, shared_ptr< T > desired)
Equivalent to atomic_compare_exchange_weak_explicit(p, expected, desired, std::memory_order_seq_cst, std::memory_order_seq_cst)

◆ TEST_CASE() [10/13]

TEST_CASE ( "atomic_compare_exchange_strong works in the same thread"  ,
""  [shared_ptr][atomic] 
)

Definition at line 84 of file shared_ptr_atomic.cpp.

85  {
86  auto p = throwing::make_shared<int>(1);
87  auto expected = p;
88  auto desired = throwing::make_shared<int>(2);
89 
90  REQUIRE(atomic_compare_exchange_strong(&p, &expected, desired));
91  REQUIRE(*p == 2);
92 }
bool atomic_compare_exchange_strong(shared_ptr< T > *p, shared_ptr< T > *expected, shared_ptr< T > desired)
Equivalent to atomic_compare_exchange_strong_explicit(p, expected, desired, std::memory_order_seq_cst...

◆ TEST_CASE() [11/13]

TEST_CASE ( "atomic_compare_exchange_strong works in the same  thread,
compares " "  pointer,
not value"  ,
""  [shared_ptr][atomic] 
)

Definition at line 94 of file shared_ptr_atomic.cpp.

96  {
97  auto p = throwing::make_shared<int>(1);
98  auto expected = throwing::make_shared<int>(1);
99  auto desired = throwing::make_shared<int>(3);
100 
101  REQUIRE_FALSE(atomic_compare_exchange_strong(&p, &expected, desired));
102  REQUIRE(*expected == 1);
103 }
bool atomic_compare_exchange_strong(shared_ptr< T > *p, shared_ptr< T > *expected, shared_ptr< T > desired)
Equivalent to atomic_compare_exchange_strong_explicit(p, expected, desired, std::memory_order_seq_cst...

◆ TEST_CASE() [12/13]

TEST_CASE ( "atomic_compare_exchange_weak_explicit works in the same thread"  ,
""  [shared_ptr][atomic] 
)

Definition at line 105 of file shared_ptr_atomic.cpp.

106  {
107  auto p = throwing::make_shared<int>(1);
108  auto expected = p;
109  auto desired = throwing::make_shared<int>(2);
110 
111  REQUIRE(atomic_compare_exchange_weak_explicit(&p, &expected, desired,
112  std::memory_order_seq_cst,
113  std::memory_order_seq_cst));
114  REQUIRE(*p == 2);
115 }
bool atomic_compare_exchange_weak_explicit(shared_ptr< T > *p, shared_ptr< T > *expected, shared_ptr< T > desired, std::memory_order success, std::memory_order failure)
Compares the shared pointers pointed-to by p and expected. If they are equivalent (store the same poi...

◆ TEST_CASE() [13/13]

TEST_CASE ( "atomic_compare_exchange_strong_explicit works in the same  thread,
" "compares  pointer,
not value"  ,
""  [shared_ptr][atomic] 
)

Definition at line 117 of file shared_ptr_atomic.cpp.

119  {
120  auto p = throwing::make_shared<int>(1);
121  auto expected = throwing::make_shared<int>(1);
122  auto desired = throwing::make_shared<int>(3);
123 
125  &p, &expected, desired, std::memory_order_seq_cst,
126  std::memory_order_seq_cst));
127  REQUIRE(*expected == 1);
128 }
bool atomic_compare_exchange_strong_explicit(shared_ptr< T > *p, shared_ptr< T > *expected, shared_ptr< T > desired, std::memory_order success, std::memory_order failure)
Compares the shared pointers pointed-to by p and expected. If they are equivalent (store the same poi...