Difference between revisions of "cpp/atomic/atomic compare exchange"
(The example loop was empty, and never set 'new_node->next' to the new 'head' if a node was inserted 'just now' resulting in infinit loop, while 'head' isn't the old one already in 'new_node->next'.) |
(Applied P2869R4 (Remove Deprecated shared_ptr Atomic Access APIs from C++26).) |
||
(7 intermediate revisions by 4 users not shown) | |||
Line 1: | Line 1: | ||
{{cpp/title|atomic_compare_exchange_weak|atomic_compare_exchange_strong|atomic_compare_exchange_weak_explicit|atomic_compare_exchange_strong_explicit}} | {{cpp/title|atomic_compare_exchange_weak|atomic_compare_exchange_strong|atomic_compare_exchange_weak_explicit|atomic_compare_exchange_strong_explicit}} | ||
− | {{cpp/ | + | {{cpp/thread/navbar}} |
{{dcl begin}} | {{dcl begin}} | ||
− | {{dcl header | atomic }} | + | {{dcl header|atomic}} |
− | {{dcl | + | {{dcl|num=1|since=c++11| |
− | + | ||
template< class T > | template< class T > | ||
− | bool atomic_compare_exchange_weak( std::atomic<T>* obj, | + | bool atomic_compare_exchange_weak |
− | + | ( std::atomic<T>* obj, typename std::atomic<T>::value_type* expected, | |
− | + | typename std::atomic<T>::value_type desired ) noexcept; | |
}} | }} | ||
− | {{dcl | | + | {{dcl|num=2|since=c++11| |
template< class T > | template< class T > | ||
− | bool atomic_compare_exchange_weak( volatile std::atomic<T>* obj, | + | bool atomic_compare_exchange_weak |
− | + | ( volatile std::atomic<T>* obj, | |
− | + | typename std::atomic<T>::value_type* expected, | |
+ | typename std::atomic<T>::value_type desired ) noexcept; | ||
}} | }} | ||
− | {{dcl | + | {{dcl|num=3|since=c++11| |
− | + | ||
− | + | ||
template< class T > | template< class T > | ||
− | bool atomic_compare_exchange_strong( std::atomic<T>* obj, | + | bool atomic_compare_exchange_strong |
− | + | ( std::atomic<T>* obj, typename std::atomic<T>::value_type* expected, | |
− | + | typename std::atomic<T>::value_type desired ) noexcept; | |
}} | }} | ||
− | {{dcl | | + | {{dcl|num=4|since=c++11| |
template< class T > | template< class T > | ||
− | bool atomic_compare_exchange_strong( volatile std::atomic<T>* obj, | + | bool atomic_compare_exchange_strong |
− | + | ( volatile std::atomic<T>* obj, | |
− | + | typename std::atomic<T>::value_type* expected, | |
+ | typename std::atomic<T>::value_type desired ) noexcept; | ||
}} | }} | ||
− | {{dcl | + | {{dcl|num=5|since=c++11| |
− | + | ||
− | + | ||
template< class T > | template< class T > | ||
− | bool atomic_compare_exchange_weak_explicit( std::atomic<T>* obj, | + | bool atomic_compare_exchange_weak_explicit |
− | + | ( std::atomic<T>* obj, typename std::atomic<T>::value_type* expected, | |
− | + | typename std::atomic<T>::value_type desired, | |
− | + | std::memory_order success, std::memory_order failure ) noexcept; | |
− | + | ||
}} | }} | ||
− | {{dcl | | + | {{dcl|num=6|since=c++11| |
template< class T > | template< class T > | ||
− | bool atomic_compare_exchange_weak_explicit( volatile std::atomic<T>* obj, | + | bool atomic_compare_exchange_weak_explicit |
− | + | ( volatile std::atomic<T>* obj, | |
− | + | typename std::atomic<T>::value_type* expected, | |
− | + | typename std::atomic<T>::value_type desired, | |
− | + | std::memory_order success, std::memory_order failure ) noexcept; | |
}} | }} | ||
− | {{dcl | + | {{dcl|num=7|since=c++11| |
− | + | ||
− | + | ||
template< class T > | template< class T > | ||
− | bool atomic_compare_exchange_strong_explicit( std::atomic<T>* obj, | + | bool atomic_compare_exchange_strong_explicit |
− | + | ( std::atomic<T>* obj, typename std::atomic<T>::value_type* expected, | |
− | + | typename std::atomic<T>::value_type desired, | |
− | + | std::memory_order success, std::memory_order failure ) noexcept; | |
− | + | ||
}} | }} | ||
− | {{dcl | | + | {{dcl|num=8|since=c++11| |
template< class T > | template< class T > | ||
− | bool atomic_compare_exchange_strong_explicit( volatile std::atomic<T>* obj, | + | bool atomic_compare_exchange_strong_explicit |
− | + | ( volatile std::atomic<T>* obj, | |
− | + | typename std::atomic<T>::value_type* expected, | |
− | + | typename std::atomic<T>::value_type desired, | |
− | + | std::memory_order success, std::memory_order failure ) noexcept; | |
}} | }} | ||
− | |||
{{dcl end}} | {{dcl end}} | ||
− | Atomically compares the [[cpp/language/object|object representation]] of the object pointed to by {{ | + | Atomically compares the {{rev inl|until=c++20|[[cpp/language/object|object representation]]}}{{rev inl|since=c++20|[[cpp/language/object|value representation]]}} of the object pointed to by {{c|obj}} with that of the object pointed to by {{c|expected}}, and if those are bitwise-equal, replaces the former with {{c|desired}} (performs read-modify-write operation). Otherwise, loads the actual value pointed to by {{c|obj}} into {{c|*expected}} (performs load operation). |
− | + | {|class="wikitable" style="text-align: center;" | |
+ | !rowspan=2|{{nbsp}}Overloads{{nbsp}} | ||
+ | !colspan=2|Memory model for | ||
+ | |- | ||
+ | !{{nbsp}}read‑modify‑write{{nbsp}}operation{{nbsp}} | ||
+ | !load operation | ||
+ | |- | ||
+ | |{{v|1-4}} | ||
+ | |{{c|std::memory_order_seq_cst}} | ||
+ | |{{nbsp}}{{c|std::memory_order_seq_cst}}{{nbsp}} | ||
+ | |- | ||
+ | |{{v|5-8}} | ||
+ | |{{c|success}} | ||
+ | |{{c|failure}} | ||
+ | |} | ||
− | These functions are defined in terms of member functions of {{lc|std::atomic}}: | + | These functions are defined in terms of [[cpp/atomic/atomic/compare_exchange|member functions]] of {{lc|std::atomic}}: |
+ | @1,2@ {{c|obj->compare_exchange_weak(*expected, desired)}} | ||
+ | @3,4@ {{c|obj->compare_exchange_strong(*expected, desired)}} | ||
+ | @5,6@ {{c|obj->compare_exchange_weak(*expected, desired, success, failure)}} | ||
+ | @7,8@ {{c|obj->compare_exchange_strong(*expected, desired, success, failure)}} | ||
− | + | If {{c|failure}}{{rev inl|until=c++17| is stronger than {{c|success}} or}} is one of {{c|std::memory_order_release}} and {{c|std::memory_order_acq_rel}}, the behavior is undefined. | |
− | + | ||
− | + | ||
− | + | ||
===Parameters=== | ===Parameters=== | ||
{{par begin}} | {{par begin}} | ||
− | {{par | obj | pointer to the atomic object to test and modify}} | + | {{par|obj|pointer to the atomic object to test and modify}} |
− | {{par | expected | pointer to the value expected to be found in the atomic object}} | + | {{par|expected|pointer to the value expected to be found in the atomic object}} |
− | {{par | desired | the value to store in the atomic object if it is as expected}} | + | {{par|desired|the value to store in the atomic object if it is as expected}} |
− | {{par | | + | {{par|success|the memory synchronization ordering for the read-modify-write operation if the comparison succeeds}} |
− | {{par | | + | {{par|failure|the memory synchronization ordering for the load operation if the comparison fails}} |
{{par end}} | {{par end}} | ||
===Return value=== | ===Return value=== | ||
− | The result of the comparison: {{c|true}} if {{ | + | The result of the comparison: {{c|true}} if {{c|*obj}} was equal to {{c|*expected}}, {{c|false}} otherwise. |
+ | ===Notes=== | ||
+ | {{tt|std::atomic_compare_exchange_weak}} and {{tt|std::atomic_compare_exchange_weak_explicit}} (the weak versions) are allowed to fail spuriously, that is, act as if {{c|1=*obj != *expected}} even if they are equal. When a compare-and-exchange is in a loop, they will yield better performance on some platforms. | ||
+ | When a weak compare-and-exchange would require a loop and a strong one would not, the strong one is preferable unless the object representation of {{tt|T}} may include {{rev inl|until=c++20|padding bits,}} trap bits, or offers multiple object representations for the same value (e.g. floating-point NaN). In those cases, weak compare-and-exchange typically works because it quickly converges on some stable object representation. | ||
− | + | For a union with bits that participate in the value representations of some members but not the others, compare-and-exchange might always fail because such padding bits have indeterminate values when they do not participate in the value representation of the active member. | |
− | + | ||
− | + | {{rrev|since=c++20|1= | |
+ | Padding bits that never participate in an object's value representation are ignored. | ||
+ | }} | ||
===Example=== | ===Example=== | ||
− | {{example | | + | {{example |
+ | |Compare and exchange operations are often used as basic building blocks of lockfree data structures. | ||
|code= | |code= | ||
#include <atomic> | #include <atomic> | ||
Line 116: | Line 128: | ||
{ | { | ||
std::atomic<node<T>*> head; | std::atomic<node<T>*> head; | ||
− | + | public: | |
void push(const T& data) | void push(const T& data) | ||
{ | { | ||
node<T>* new_node = new node<T>(data); | node<T>* new_node = new node<T>(data); | ||
− | + | ||
− | + | // put the current value of head into new_node->next | |
− | + | new_node->next = head.load(std::memory_order_relaxed); | |
− | + | ||
− | + | // now make new_node the new head, but if the head | |
− | + | // is no longer what's stored in new_node->next | |
− | + | // (some other thread must have inserted a node just now) | |
− | + | // then put that new head into new_node->next and try again | |
− | + | while (!std::atomic_compare_exchange_weak_explicit( | |
− | + | &head, &new_node->next, new_node, | |
− | + | std::memory_order_release, std::memory_order_relaxed)) | |
− | + | ; // the body of the loop is empty | |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
// note: the above loop is not thread-safe in at least | // note: the above loop is not thread-safe in at least | ||
// GCC prior to 4.8.3 (bug 60272), clang prior to 2014-05-05 (bug 18899) | // GCC prior to 4.8.3 (bug 60272), clang prior to 2014-05-05 (bug 18899) | ||
Line 153: | Line 161: | ||
===Defect reports=== | ===Defect reports=== | ||
{{dr list begin}} | {{dr list begin}} | ||
− | {{dr list item|std=C++11|paper=P0558R1|before=exact type match required because {{tt|T}} | + | {{dr list item|std=C++11|paper=P0558R1|before=exact type match was required because<br>{{tt|T}} was deduced from multiple arguments|after={{tt|T}} is only deduced<br>from {{c|obj}}}} |
{{dr list end}} | {{dr list end}} | ||
===See also=== | ===See also=== | ||
{{dsc begin}} | {{dsc begin}} | ||
− | {{dsc inc | cpp/atomic/atomic/dsc compare_exchange}} | + | {{dsc inc|cpp/atomic/atomic/dsc compare_exchange}} |
− | {{dsc inc | cpp/atomic/dsc atomic_exchange}} | + | {{dsc inc|cpp/atomic/dsc atomic_exchange}} |
− | {{dsc tfun | cpp/memory/shared_ptr/atomic | title=std::atomic_compare_exchange_weak{{dsc small|(std::shared_ptr)}} | + | {{dsc break}} |
− | <br>std::atomic_compare_exchange_strong{{dsc small|(std::shared_ptr)}} | specializes atomic operations for std::shared_ptr }} | + | {{dsc tfun|cpp/memory/shared_ptr/atomic|notes={{mark life|deprecated=c++20|removed=c++26|br=yes}}|title=std::atomic_compare_exchange_weak{{dsc small|(std::shared_ptr)}} |
− | {{dsc see c | c/atomic/atomic_compare_exchange | atomic_compare_exchange | atomic_compare_exchange_explicit}} | + | <br>std::atomic_compare_exchange_strong{{dsc small|(std::shared_ptr)}}|specializes atomic operations for std::shared_ptr}} |
+ | {{dsc see c|c/atomic/atomic_compare_exchange|atomic_compare_exchange|atomic_compare_exchange_explicit}} | ||
{{dsc end}} | {{dsc end}} | ||
{{langlinks|de|es|fr|it|ja|pt|ru|zh}} | {{langlinks|de|es|fr|it|ja|pt|ru|zh}} |
Latest revision as of 05:26, 24 April 2024
Defined in header <atomic>
|
||
template< class T > bool atomic_compare_exchange_weak |
(1) | (since C++11) |
template< class T > bool atomic_compare_exchange_weak |
(2) | (since C++11) |
template< class T > bool atomic_compare_exchange_strong |
(3) | (since C++11) |
template< class T > bool atomic_compare_exchange_strong |
(4) | (since C++11) |
template< class T > bool atomic_compare_exchange_weak_explicit |
(5) | (since C++11) |
template< class T > bool atomic_compare_exchange_weak_explicit |
(6) | (since C++11) |
template< class T > bool atomic_compare_exchange_strong_explicit |
(7) | (since C++11) |
template< class T > bool atomic_compare_exchange_strong_explicit |
(8) | (since C++11) |
Atomically compares the object representation(until C++20)value representation(since C++20) of the object pointed to by obj with that of the object pointed to by expected, and if those are bitwise-equal, replaces the former with desired (performs read-modify-write operation). Otherwise, loads the actual value pointed to by obj into *expected (performs load operation).
Overloads | Memory model for | |
---|---|---|
read‑modify‑write operation | load operation | |
(1-4) | std::memory_order_seq_cst | std::memory_order_seq_cst |
(5-8) | success | failure |
These functions are defined in terms of member functions of std::atomic:
If failure is stronger than success or(until C++17) is one of std::memory_order_release and std::memory_order_acq_rel, the behavior is undefined.
Contents |
[edit] Parameters
obj | - | pointer to the atomic object to test and modify |
expected | - | pointer to the value expected to be found in the atomic object |
desired | - | the value to store in the atomic object if it is as expected |
success | - | the memory synchronization ordering for the read-modify-write operation if the comparison succeeds |
failure | - | the memory synchronization ordering for the load operation if the comparison fails |
[edit] Return value
The result of the comparison: true if *obj was equal to *expected, false otherwise.
[edit] Notes
std::atomic_compare_exchange_weak
and std::atomic_compare_exchange_weak_explicit
(the weak versions) are allowed to fail spuriously, that is, act as if *obj != *expected even if they are equal. When a compare-and-exchange is in a loop, they will yield better performance on some platforms.
When a weak compare-and-exchange would require a loop and a strong one would not, the strong one is preferable unless the object representation of T
may include padding bits,(until C++20) trap bits, or offers multiple object representations for the same value (e.g. floating-point NaN). In those cases, weak compare-and-exchange typically works because it quickly converges on some stable object representation.
For a union with bits that participate in the value representations of some members but not the others, compare-and-exchange might always fail because such padding bits have indeterminate values when they do not participate in the value representation of the active member.
Padding bits that never participate in an object's value representation are ignored. |
(since C++20) |
[edit] Example
Compare and exchange operations are often used as basic building blocks of lockfree data structures.
#include <atomic> template<class T> struct node { T data; node* next; node(const T& data) : data(data), next(nullptr) {} }; template<class T> class stack { std::atomic<node<T>*> head; public: void push(const T& data) { node<T>* new_node = new node<T>(data); // put the current value of head into new_node->next new_node->next = head.load(std::memory_order_relaxed); // now make new_node the new head, but if the head // is no longer what's stored in new_node->next // (some other thread must have inserted a node just now) // then put that new head into new_node->next and try again while (!std::atomic_compare_exchange_weak_explicit( &head, &new_node->next, new_node, std::memory_order_release, std::memory_order_relaxed)) ; // the body of the loop is empty // note: the above loop is not thread-safe in at least // GCC prior to 4.8.3 (bug 60272), clang prior to 2014-05-05 (bug 18899) // MSVC prior to 2014-03-17 (bug 819819). See member function version for workaround } }; int main() { stack<int> s; s.push(1); s.push(2); s.push(3); }
[edit] Defect reports
The following behavior-changing defect reports were applied retroactively to previously published C++ standards.
DR | Applied to | Behavior as published | Correct behavior |
---|---|---|---|
P0558R1 | C++11 | exact type match was required becauseT was deduced from multiple arguments
|
T is only deducedfrom obj |
[edit] See also
atomically compares the value of the atomic object with non-atomic argument and performs atomic exchange if equal or atomic load if not (public member function of std::atomic<T> )
| |
(C++11)(C++11) |
atomically replaces the value of the atomic object with non-atomic argument and returns the old value of the atomic (function template) |
(deprecated in C++20)(removed in C++26) |
specializes atomic operations for std::shared_ptr (function template) |
C documentation for atomic_compare_exchange, atomic_compare_exchange_explicit
|