1.\" Copyright (c) 2000-2001 John H. Baldwin <jhb@FreeBSD.org> 2.\" 3.\" Redistribution and use in source and binary forms, with or without 4.\" modification, are permitted provided that the following conditions 5.\" are met: 6.\" 1. Redistributions of source code must retain the above copyright 7.\" notice, this list of conditions and the following disclaimer. 8.\" 2. Redistributions in binary form must reproduce the above copyright 9.\" notice, this list of conditions and the following disclaimer in the 10.\" documentation and/or other materials provided with the distribution. 11.\" 12.\" THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY EXPRESS OR 13.\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 14.\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 15.\" IN NO EVENT SHALL THE DEVELOPERS BE LIABLE FOR ANY DIRECT, INDIRECT, 16.\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 17.\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 18.\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 19.\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 20.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 21.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 22.\" 23.\" $FreeBSD$ 24.\" 25.Dd August 18, 2019 26.Dt ATOMIC 9 27.Os 28.Sh NAME 29.Nm atomic_add , 30.Nm atomic_clear , 31.Nm atomic_cmpset , 32.Nm atomic_fcmpset , 33.Nm atomic_fetchadd , 34.Nm atomic_load , 35.Nm atomic_readandclear , 36.Nm atomic_set , 37.Nm atomic_subtract , 38.Nm atomic_store , 39.Nm atomic_thread_fence 40.Nd atomic operations 41.Sh SYNOPSIS 42.In sys/types.h 43.In machine/atomic.h 44.Ft void 45.Fn atomic_add_[acq_|rel_]<type> "volatile <type> *p" "<type> v" 46.Ft void 47.Fn atomic_clear_[acq_|rel_]<type> "volatile <type> *p" "<type> v" 48.Ft int 49.Fo atomic_cmpset_[acq_|rel_]<type> 50.Fa "volatile <type> *dst" 51.Fa "<type> old" 52.Fa "<type> new" 53.Fc 54.Ft int 55.Fo atomic_fcmpset_[acq_|rel_]<type> 56.Fa "volatile <type> *dst" 57.Fa "<type> *old" 58.Fa "<type> new" 59.Fc 60.Ft <type> 61.Fn atomic_fetchadd_<type> "volatile <type> *p" "<type> v" 62.Ft <type> 63.Fn atomic_load_[acq_]<type> "volatile <type> *p" 64.Ft <type> 65.Fn atomic_readandclear_<type> "volatile <type> *p" 66.Ft void 67.Fn atomic_set_[acq_|rel_]<type> "volatile <type> *p" "<type> v" 68.Ft void 69.Fn atomic_subtract_[acq_|rel_]<type> "volatile <type> *p" "<type> v" 70.Ft void 71.Fn atomic_store_[rel_]<type> "volatile <type> *p" "<type> v" 72.Ft <type> 73.Fn atomic_swap_<type> "volatile <type> *p" "<type> v" 74.Ft int 75.Fn atomic_testandclear_<type> "volatile <type> *p" "u_int v" 76.Ft int 77.Fn atomic_testandset_<type> "volatile <type> *p" "u_int v" 78.Ft void 79.Fn atomic_thread_fence_[acq|acq_rel|rel|seq_cst] "void" 80.Sh DESCRIPTION 81Atomic operations are commonly used to implement reference counts and as 82building blocks for synchronization primitives, such as mutexes. 83.Pp 84All of these operations are performed 85.Em atomically 86across multiple threads and in the presence of interrupts, meaning that they 87are performed in an indivisible manner from the perspective of concurrently 88running threads and interrupt handlers. 89.Pp 90On all architectures supported by 91.Fx , 92ordinary loads and stores of integers in cache-coherent memory are 93inherently atomic if the integer is naturally aligned and its size does not 94exceed the processor's word size. 95However, such loads and stores may be elided from the program by 96the compiler, whereas atomic operations are always performed. 97.Pp 98When atomic operations are performed on cache-coherent memory, all 99operations on the same location are totally ordered. 100.Pp 101When an atomic load is performed on a location in cache-coherent memory, 102it reads the entire value that was defined by the last atomic store to 103each byte of the location. 104An atomic load will never return a value out of thin air. 105When an atomic store is performed on a location, no other thread or 106interrupt handler will observe a 107.Em torn write , 108or partial modification of the location. 109.Pp 110Except as noted below, the semantics of these operations are almost 111identical to the semantics of similarly named C11 atomic operations. 112.Ss Types 113Most atomic operations act upon a specific 114.Fa type . 115That type is indicated in the function name. 116In contrast to C11 atomic operations, 117.Fx Ns 's 118atomic operations are performed on ordinary integer types. 119The available types are: 120.Pp 121.Bl -tag -offset indent -width short -compact 122.It Li int 123unsigned integer 124.It Li long 125unsigned long integer 126.It Li ptr 127unsigned integer the size of a pointer 128.It Li 32 129unsigned 32-bit integer 130.It Li 64 131unsigned 64-bit integer 132.El 133.Pp 134For example, the function to atomically add two integers is called 135.Fn atomic_add_int . 136.Pp 137Certain architectures also provide operations for types smaller than 138.Dq Li int . 139.Pp 140.Bl -tag -offset indent -width short -compact 141.It Li char 142unsigned character 143.It Li short 144unsigned short integer 145.It Li 8 146unsigned 8-bit integer 147.It Li 16 148unsigned 16-bit integer 149.El 150.Pp 151These types must not be used in machine-independent code. 152.Ss Acquire and Release Operations 153By default, a thread's accesses to different memory locations might not be 154performed in 155.Em program order , 156that is, the order in which the accesses appear in the source code. 157To optimize the program's execution, both the compiler and processor might 158reorder the thread's accesses. 159However, both ensure that their reordering of the accesses is not visible to 160the thread. 161Otherwise, the traditional memory model that is expected by single-threaded 162programs would be violated. 163Nonetheless, other threads in a multithreaded program, such as the 164.Fx 165kernel, might observe the reordering. 166Moreover, in some cases, such as the implementation of synchronization between 167threads, arbitrary reordering might result in the incorrect execution of the 168program. 169To constrain the reordering that both the compiler and processor might perform 170on a thread's accesses, a programmer can use atomic operations with 171.Em acquire 172and 173.Em release 174semantics. 175.Pp 176Atomic operations on memory have up to three variants. 177The first, or 178.Em relaxed 179variant, performs the operation without imposing any ordering constraints on 180accesses to other memory locations. 181This variant is the default. 182The second variant has acquire semantics, and the third variant has release 183semantics. 184.Pp 185When an atomic operation has acquire semantics, the operation must have 186completed before any subsequent load or store (by program order) is 187performed. 188Conversely, acquire semantics do not require that prior loads or stores have 189completed before the atomic operation is performed. 190An atomic operation can only have acquire semantics if it performs a load 191from memory. 192To denote acquire semantics, the suffix 193.Dq Li _acq 194is inserted into the function name immediately prior to the 195.Dq Li _ Ns Aq Fa type 196suffix. 197For example, to subtract two integers ensuring that the subtraction is 198completed before any subsequent loads and stores are performed, use 199.Fn atomic_subtract_acq_int . 200.Pp 201When an atomic operation has release semantics, all prior loads or stores 202(by program order) must have completed before the operation is performed. 203Conversely, release semantics do not require that the atomic operation must 204have completed before any subsequent load or store is performed. 205An atomic operation can only have release semantics if it performs a store 206to memory. 207To denote release semantics, the suffix 208.Dq Li _rel 209is inserted into the function name immediately prior to the 210.Dq Li _ Ns Aq Fa type 211suffix. 212For example, to add two long integers ensuring that all prior loads and 213stores are completed before the addition is performed, use 214.Fn atomic_add_rel_long . 215.Pp 216When a release operation by one thread 217.Em synchronizes with 218an acquire operation by another thread, usually meaning that the acquire 219operation reads the value written by the release operation, then the effects 220of all prior stores by the releasing thread must become visible to 221subsequent loads by the acquiring thread. 222Moreover, the effects of all stores (by other threads) that were visible to 223the releasing thread must also become visible to the acquiring thread. 224These rules only apply to the synchronizing threads. 225Other threads might observe these stores in a different order. 226.Pp 227In effect, atomic operations with acquire and release semantics establish 228one-way barriers to reordering that enable the implementations of 229synchronization primitives to express their ordering requirements without 230also imposing unnecessary ordering. 231For example, for a critical section guarded by a mutex, an acquire operation 232when the mutex is locked and a release operation when the mutex is unlocked 233will prevent any loads or stores from moving outside of the critical 234section. 235However, they will not prevent the compiler or processor from moving loads 236or stores into the critical section, which does not violate the semantics of 237a mutex. 238.Ss Thread Fence Operations 239Alternatively, a programmer can use atomic thread fence operations to 240constrain the reordering of accesses. 241In contrast to other atomic operations, fences do not, themselves, access 242memory. 243.Pp 244When a fence has acquire semantics, all prior loads (by program order) must 245have completed before any subsequent load or store is performed. 246Thus, an acquire fence is a two-way barrier for load operations. 247To denote acquire semantics, the suffix 248.Dq Li _acq 249is appended to the function name, for example, 250.Fn atomic_thread_fence_acq . 251.Pp 252When a fence has release semantics, all prior loads or stores (by program 253order) must have completed before any subsequent store operation is 254performed. 255Thus, a release fence is a two-way barrier for store operations. 256To denote release semantics, the suffix 257.Dq Li _rel 258is appended to the function name, for example, 259.Fn atomic_thread_fence_rel . 260.Pp 261Although 262.Fn atomic_thread_fence_acq_rel 263implements both acquire and release semantics, it is not a full barrier. 264For example, a store prior to the fence (in program order) may be completed 265after a load subsequent to the fence. 266In contrast, 267.Fn atomic_thread_fence_seq_cst 268implements a full barrier. 269Neither loads nor stores may cross this barrier in either direction. 270.Pp 271In C11, a release fence by one thread synchronizes with an acquire fence by 272another thread when an atomic load that is prior to the acquire fence (by 273program order) reads the value written by an atomic store that is subsequent 274to the release fence. 275In constrast, in FreeBSD, because of the atomicity of ordinary, naturally 276aligned loads and stores, fences can also be synchronized by ordinary loads 277and stores. 278This simplifies the implementation and use of some synchronization 279primitives in 280.Fx . 281.Pp 282Since neither a compiler nor a processor can foresee which (atomic) load 283will read the value written by an (atomic) store, the ordering constraints 284imposed by fences must be more restrictive than acquire loads and release 285stores. 286Essentially, this is why fences are two-way barriers. 287.Pp 288Although fences impose more restrictive ordering than acquire loads and 289release stores, by separating access from ordering, they can sometimes 290facilitate more efficient implementations of synchronization primitives. 291For example, they can be used to avoid executing a memory barrier until a 292memory access shows that some condition is satisfied. 293.Ss Multiple Processors 294In multiprocessor systems, the atomicity of the atomic operations on memory 295depends on support for cache coherence in the underlying architecture. 296In general, cache coherence on the default memory type, 297.Dv VM_MEMATTR_DEFAULT , 298is guaranteed by all architectures that are supported by 299.Fx . 300For example, cache coherence is guaranteed on write-back memory by the 301.Tn amd64 302and 303.Tn i386 304architectures. 305However, on some architectures, cache coherence might not be enabled on all 306memory types. 307To determine if cache coherence is enabled for a non-default memory type, 308consult the architecture's documentation. 309.Ss Semantics 310This section describes the semantics of each operation using a C like notation. 311.Bl -hang 312.It Fn atomic_add p v 313.Bd -literal -compact 314*p += v; 315.Ed 316.It Fn atomic_clear p v 317.Bd -literal -compact 318*p &= ~v; 319.Ed 320.It Fn atomic_cmpset dst old new 321.Bd -literal -compact 322if (*dst == old) { 323 *dst = new; 324 return (1); 325} else 326 return (0); 327.Ed 328.El 329.Pp 330Some architectures do not implement the 331.Fn atomic_cmpset 332functions for the types 333.Dq Li char , 334.Dq Li short , 335.Dq Li 8 , 336and 337.Dq Li 16 . 338.Bl -hang 339.It Fn atomic_fcmpset dst *old new 340.El 341.Pp 342On architectures implementing 343.Em Compare And Swap 344operation in hardware, the functionality can be described as 345.Bd -literal -offset indent -compact 346if (*dst == *old) { 347 *dst = new; 348 return (1); 349} else { 350 *old = *dst; 351 return (0); 352} 353.Ed 354On architectures which provide 355.Em Load Linked/Store Conditional 356primitive, the write to 357.Dv *dst 358might also fail for several reasons, most important of which 359is a parallel write to 360.Dv *dst 361cache line by other CPU. 362In this case 363.Fn atomic_fcmpset 364function also returns 365.Dv false , 366despite 367.Dl *old == *dst . 368.Pp 369Some architectures do not implement the 370.Fn atomic_fcmpset 371functions for the types 372.Dq Li char , 373.Dq Li short , 374.Dq Li 8 , 375and 376.Dq Li 16 . 377.Bl -hang 378.It Fn atomic_fetchadd p v 379.Bd -literal -compact 380tmp = *p; 381*p += v; 382return (tmp); 383.Ed 384.El 385.Pp 386The 387.Fn atomic_fetchadd 388functions are only implemented for the types 389.Dq Li int , 390.Dq Li long 391and 392.Dq Li 32 393and do not have any variants with memory barriers at this time. 394.Bl -hang 395.It Fn atomic_load p 396.Bd -literal -compact 397return (*p); 398.Ed 399.It Fn atomic_readandclear p 400.Bd -literal -compact 401tmp = *p; 402*p = 0; 403return (tmp); 404.Ed 405.El 406.Pp 407The 408.Fn atomic_readandclear 409functions are not implemented for the types 410.Dq Li char , 411.Dq Li short , 412.Dq Li ptr , 413.Dq Li 8 , 414and 415.Dq Li 16 416and do not have any variants with memory barriers at this time. 417.Bl -hang 418.It Fn atomic_set p v 419.Bd -literal -compact 420*p |= v; 421.Ed 422.It Fn atomic_subtract p v 423.Bd -literal -compact 424*p -= v; 425.Ed 426.It Fn atomic_store p v 427.Bd -literal -compact 428*p = v; 429.Ed 430.It Fn atomic_swap p v 431.Bd -literal -compact 432tmp = *p; 433*p = v; 434return (tmp); 435.Ed 436.El 437.Pp 438The 439.Fn atomic_swap 440functions are not implemented for the types 441.Dq Li char , 442.Dq Li short , 443.Dq Li ptr , 444.Dq Li 8 , 445and 446.Dq Li 16 447and do not have any variants with memory barriers at this time. 448.Bl -hang 449.It Fn atomic_testandclear p v 450.Bd -literal -compact 451bit = 1 << (v % (sizeof(*p) * NBBY)); 452tmp = (*p & bit) != 0; 453*p &= ~bit; 454return (tmp); 455.Ed 456.El 457.Bl -hang 458.It Fn atomic_testandset p v 459.Bd -literal -compact 460bit = 1 << (v % (sizeof(*p) * NBBY)); 461tmp = (*p & bit) != 0; 462*p |= bit; 463return (tmp); 464.Ed 465.El 466.Pp 467The 468.Fn atomic_testandset 469and 470.Fn atomic_testandclear 471functions are only implemented for the types 472.Dq Li int , 473.Dq Li long 474and 475.Dq Li 32 476and do not have any variants with memory barriers at this time. 477.Pp 478The type 479.Dq Li 64 480is currently not implemented for some of the atomic operations on the 481.Tn arm , 482.Tn i386 , 483and 484.Tn powerpc 485architectures. 486.Sh RETURN VALUES 487The 488.Fn atomic_cmpset 489function returns the result of the compare operation. 490The 491.Fn atomic_fcmpset 492function returns 493.Dv true 494if the operation succeeded. 495Otherwise it returns 496.Dv false 497and sets 498.Va *old 499to the found value. 500The 501.Fn atomic_fetchadd , 502.Fn atomic_load , 503.Fn atomic_readandclear , 504and 505.Fn atomic_swap 506functions return the value at the specified address. 507The 508.Fn atomic_testandset 509and 510.Fn atomic_testandclear 511function returns the result of the test operation. 512.Sh EXAMPLES 513This example uses the 514.Fn atomic_cmpset_acq_ptr 515and 516.Fn atomic_set_ptr 517functions to obtain a sleep mutex and handle recursion. 518Since the 519.Va mtx_lock 520member of a 521.Vt "struct mtx" 522is a pointer, the 523.Dq Li ptr 524type is used. 525.Bd -literal 526/* Try to obtain mtx_lock once. */ 527#define _obtain_lock(mp, tid) \\ 528 atomic_cmpset_acq_ptr(&(mp)->mtx_lock, MTX_UNOWNED, (tid)) 529 530/* Get a sleep lock, deal with recursion inline. */ 531#define _get_sleep_lock(mp, tid, opts, file, line) do { \\ 532 uintptr_t _tid = (uintptr_t)(tid); \\ 533 \\ 534 if (!_obtain_lock(mp, tid)) { \\ 535 if (((mp)->mtx_lock & MTX_FLAGMASK) != _tid) \\ 536 _mtx_lock_sleep((mp), _tid, (opts), (file), (line));\\ 537 else { \\ 538 atomic_set_ptr(&(mp)->mtx_lock, MTX_RECURSE); \\ 539 (mp)->mtx_recurse++; \\ 540 } \\ 541 } \\ 542} while (0) 543.Ed 544.Sh HISTORY 545The 546.Fn atomic_add , 547.Fn atomic_clear , 548.Fn atomic_set , 549and 550.Fn atomic_subtract 551operations were introduced in 552.Fx 3.0 . 553Initially, these operations were defined on the types 554.Dq Li char , 555.Dq Li short , 556.Dq Li int , 557and 558.Dq Li long . 559.Pp 560The 561.Fn atomic_cmpset , 562.Fn atomic_load_acq , 563.Fn atomic_readandclear , 564and 565.Fn atomic_store_rel 566operations were added in 567.Fx 5.0 . 568Simultaneously, the acquire and release variants were introduced, and 569support was added for operation on the types 570.Dq Li 8 , 571.Dq Li 16 , 572.Dq Li 32 , 573.Dq Li 64 , 574and 575.Dq Li ptr . 576.Pp 577The 578.Fn atomic_fetchadd 579operation was added in 580.Fx 6.0 . 581.Pp 582The 583.Fn atomic_swap 584and 585.Fn atomic_testandset 586operations were added in 587.Fx 10.0 . 588.Pp 589The 590.Fn atomic_testandclear 591and 592.Fn atomic_thread_fence 593operations were added in 594.Fx 11.0 . 595.Pp 596The relaxed variants of 597.Fn atomic_load 598and 599.Fn atomic_store 600were added in 601.Fx 12.0 . 602