]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - share/man/man9/atomic.9
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / share / man / man9 / atomic.9
1 .\" Copyright (c) 2000-2001 John H. Baldwin <jhb@FreeBSD.org>
2 .\" All rights reserved.
3 .\"
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
6 .\" are met:
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\"    notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\"    notice, this list of conditions and the following disclaimer in the
11 .\"    documentation and/or other materials provided with the distribution.
12 .\"
13 .\" THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY EXPRESS OR
14 .\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
15 .\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
16 .\" IN NO EVENT SHALL THE DEVELOPERS BE LIABLE FOR ANY DIRECT, INDIRECT,
17 .\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
18 .\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
19 .\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
20 .\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
21 .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
22 .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23 .\"
24 .\" $FreeBSD$
25 .\"
26 .Dd August 20, 2013
27 .Dt ATOMIC 9
28 .Os
29 .Sh NAME
30 .Nm atomic_add ,
31 .Nm atomic_clear ,
32 .Nm atomic_cmpset ,
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 .Nd atomic operations
40 .Sh SYNOPSIS
41 .In sys/types.h
42 .In machine/atomic.h
43 .Ft void
44 .Fn atomic_add_[acq_|rel_]<type> "volatile <type> *p" "<type> v"
45 .Ft void
46 .Fn atomic_clear_[acq_|rel_]<type> "volatile <type> *p" "<type> v"
47 .Ft int
48 .Fo atomic_cmpset_[acq_|rel_]<type>
49 .Fa "volatile <type> *dst"
50 .Fa "<type> old"
51 .Fa "<type> new"
52 .Fc
53 .Ft <type>
54 .Fn atomic_fetchadd_<type> "volatile <type> *p" "<type> v"
55 .Ft <type>
56 .Fn atomic_load_acq_<type> "volatile <type> *p"
57 .Ft <type>
58 .Fn atomic_readandclear_<type> "volatile <type> *p"
59 .Ft void
60 .Fn atomic_set_[acq_|rel_]<type> "volatile <type> *p" "<type> v"
61 .Ft void
62 .Fn atomic_subtract_[acq_|rel_]<type> "volatile <type> *p" "<type> v"
63 .Ft void
64 .Fn atomic_store_rel_<type> "volatile <type> *p" "<type> v"
65 .Ft <type>
66 .Fn atomic_swap_<type> "volatile <type> *p" "<type> v"
67 .Ft int
68 .Fn atomic_testandset_<type> "volatile <type> *p" "u_int v"
69 .Sh DESCRIPTION
70 Each of the atomic operations is guaranteed to be atomic in the presence of
71 interrupts.
72 They can be used to implement reference counts or as building blocks for more
73 advanced synchronization primitives such as mutexes.
74 .Ss Types
75 Each atomic operation operates on a specific
76 .Fa type .
77 The type to use is indicated in the function name.
78 The available types that can be used are:
79 .Pp
80 .Bl -tag -offset indent -width short -compact
81 .It Li int
82 unsigned integer
83 .It Li long
84 unsigned long integer
85 .It Li ptr
86 unsigned integer the size of a pointer
87 .It Li 32
88 unsigned 32-bit integer
89 .It Li 64
90 unsigned 64-bit integer
91 .El
92 .Pp
93 For example, the function to atomically add two integers is called
94 .Fn atomic_add_int .
95 .Pp
96 Certain architectures also provide operations for types smaller than
97 .Dq Li int .
98 .Pp
99 .Bl -tag -offset indent -width short -compact
100 .It Li char
101 unsigned character
102 .It Li short
103 unsigned short integer
104 .It Li 8
105 unsigned 8-bit integer
106 .It Li 16
107 unsigned 16-bit integer
108 .El
109 .Pp
110 These must not be used in MI code because the instructions to implement them
111 efficiently may not be available.
112 .Ss Memory Barriers
113 Memory barriers are used to guarantee the order of data accesses in
114 two ways.
115 First, they specify hints to the compiler to not re-order or optimize the
116 operations.
117 Second, on architectures that do not guarantee ordered data accesses,
118 special instructions or special variants of instructions are used to indicate
119 to the processor that data accesses need to occur in a certain order.
120 As a result, most of the atomic operations have three variants in order to
121 include optional memory barriers.
122 The first form just performs the operation without any explicit barriers.
123 The second form uses a read memory barrier, and the third variant uses a write
124 memory barrier.
125 .Pp
126 The second variant of each operation includes a read memory barrier.
127 This barrier ensures that the effects of this operation are completed before the
128 effects of any later data accesses.
129 As a result, the operation is said to have acquire semantics as it acquires a
130 pseudo-lock requiring further operations to wait until it has completed.
131 To denote this, the suffix
132 .Dq Li _acq
133 is inserted into the function name immediately prior to the
134 .Dq Li _ Ns Aq Fa type
135 suffix.
136 For example, to subtract two integers ensuring that any later writes will
137 happen after the subtraction is performed, use
138 .Fn atomic_subtract_acq_int .
139 .Pp
140 The third variant of each operation includes a write memory barrier.
141 This ensures that all effects of all previous data accesses are completed
142 before this operation takes place.
143 As a result, the operation is said to have release semantics as it releases
144 any pending data accesses to be completed before its operation is performed.
145 To denote this, the suffix
146 .Dq Li _rel
147 is inserted into the function name immediately prior to the
148 .Dq Li _ Ns Aq Fa type
149 suffix.
150 For example, to add two long integers ensuring that all previous
151 writes will happen first, use
152 .Fn atomic_add_rel_long .
153 .Pp
154 A practical example of using memory barriers is to ensure that data accesses
155 that are protected by a lock are all performed while the lock is held.
156 To achieve this, one would use a read barrier when acquiring the lock to
157 guarantee that the lock is held before any protected operations are performed.
158 Finally, one would use a write barrier when releasing the lock to ensure that
159 all of the protected operations are completed before the lock is released.
160 .Ss Multiple Processors
161 The current set of atomic operations do not necessarily guarantee atomicity
162 across multiple processors.
163 To guarantee atomicity across processors, not only does the individual
164 operation need to be atomic on the processor performing the operation, but
165 the result of the operation needs to be pushed out to stable storage and the
166 caches of all other processors on the system need to invalidate any cache
167 lines that include the affected memory region.
168 On the
169 .Tn i386
170 architecture, the cache coherency model requires that the hardware perform
171 this task, thus the atomic operations are atomic across multiple processors.
172 On the
173 .Tn ia64
174 architecture, coherency is only guaranteed for pages that are configured to
175 using a caching policy of either uncached or write back.
176 .Ss Semantics
177 This section describes the semantics of each operation using a C like notation.
178 .Bl -hang
179 .It Fn atomic_add p v
180 .Bd -literal -compact
181 *p += v;
182 .Ed
183 .It Fn atomic_clear p v
184 .Bd -literal -compact
185 *p &= ~v;
186 .Ed
187 .It Fn atomic_cmpset dst old new
188 .Bd -literal -compact
189 if (*dst == old) {
190         *dst = new;
191         return (1);
192 } else
193         return (0);
194 .Ed
195 .El
196 .Pp
197 The
198 .Fn atomic_cmpset
199 functions are not implemented for the types
200 .Dq Li char ,
201 .Dq Li short ,
202 .Dq Li 8 ,
203 and
204 .Dq Li 16 .
205 .Bl -hang
206 .It Fn atomic_fetchadd p v
207 .Bd -literal -compact
208 tmp = *p;
209 *p += v;
210 return (tmp);
211 .Ed
212 .El
213 .Pp
214 The
215 .Fn atomic_fetchadd
216 functions are only implemented for the types
217 .Dq Li int ,
218 .Dq Li long
219 and
220 .Dq Li 32
221 and do not have any variants with memory barriers at this time.
222 .Bl -hang
223 .It Fn atomic_load p
224 .Bd -literal -compact
225 return (*p);
226 .Ed
227 .El
228 .Pp
229 The
230 .Fn atomic_load
231 functions are only provided with acquire memory barriers.
232 .Bl -hang
233 .It Fn atomic_readandclear p
234 .Bd -literal -compact
235 tmp = *p;
236 *p = 0;
237 return (tmp);
238 .Ed
239 .El
240 .Pp
241 The
242 .Fn atomic_readandclear
243 functions are not implemented for the types
244 .Dq Li char ,
245 .Dq Li short ,
246 .Dq Li ptr ,
247 .Dq Li 8 ,
248 and
249 .Dq Li 16
250 and do not have any variants with memory barriers at this time.
251 .Bl -hang
252 .It Fn atomic_set p v
253 .Bd -literal -compact
254 *p |= v;
255 .Ed
256 .It Fn atomic_subtract p v
257 .Bd -literal -compact
258 *p -= v;
259 .Ed
260 .It Fn atomic_store p v
261 .Bd -literal -compact
262 *p = v;
263 .Ed
264 .El
265 .Pp
266 The
267 .Fn atomic_store
268 functions are only provided with release memory barriers.
269 .Bl -hang
270 .It Fn atomic_swap p v
271 .Bd -literal -compact
272 tmp = *p;
273 *p = v;
274 return (tmp);
275 .Ed
276 .El
277 .Pp
278 The
279 .Fn atomic_swap
280 functions are not implemented for the types
281 .Dq Li char ,
282 .Dq Li short ,
283 .Dq Li ptr ,
284 .Dq Li 8 ,
285 and
286 .Dq Li 16
287 and do not have any variants with memory barriers at this time.
288 .Bl -hang
289 .It Fn atomic_testandset p v
290 .Bd -literal -compact
291 bit = 1 << (v % (sizeof(*p) * NBBY));
292 tmp = (*p & bit) != 0;
293 *p |= bit;
294 return (tmp);
295 .Ed
296 .El
297 .Pp
298 The
299 .Fn atomic_testandset
300 functions are only implemented for the types
301 .Dq Li int ,
302 .Dq Li long
303 and
304 .Dq Li 32
305 and do not have any variants with memory barriers at this time.
306 .Pp
307 The type
308 .Dq Li 64
309 is currently not implemented for any of the atomic operations on the
310 .Tn arm ,
311 .Tn i386 ,
312 and
313 .Tn powerpc
314 architectures.
315 .Sh RETURN VALUES
316 The
317 .Fn atomic_cmpset
318 function returns the result of the compare operation.
319 The
320 .Fn atomic_fetchadd ,
321 .Fn atomic_load ,
322 .Fn atomic_readandclear ,
323 and
324 .Fn atomic_swap
325 functions return the value at the specified address.
326 The
327 .Fn atomic_testandset
328 function returns the result of the test operation.
329 .Sh EXAMPLES
330 This example uses the
331 .Fn atomic_cmpset_acq_ptr
332 and
333 .Fn atomic_set_ptr
334 functions to obtain a sleep mutex and handle recursion.
335 Since the
336 .Va mtx_lock
337 member of a
338 .Vt "struct mtx"
339 is a pointer, the
340 .Dq Li ptr
341 type is used.
342 .Bd -literal
343 /* Try to obtain mtx_lock once. */
344 #define _obtain_lock(mp, tid)                                           \\
345         atomic_cmpset_acq_ptr(&(mp)->mtx_lock, MTX_UNOWNED, (tid))
346
347 /* Get a sleep lock, deal with recursion inline. */
348 #define _get_sleep_lock(mp, tid, opts, file, line) do {                 \\
349         uintptr_t _tid = (uintptr_t)(tid);                              \\
350                                                                         \\
351         if (!_obtain_lock(mp, tid)) {                                   \\
352                 if (((mp)->mtx_lock & MTX_FLAGMASK) != _tid)            \\
353                         _mtx_lock_sleep((mp), _tid, (opts), (file), (line));\\
354                 else {                                                  \\
355                         atomic_set_ptr(&(mp)->mtx_lock, MTX_RECURSE);   \\
356                         (mp)->mtx_recurse++;                            \\
357                 }                                                       \\
358         }                                                               \\
359 } while (0)
360 .Ed
361 .Sh HISTORY
362 The
363 .Fn atomic_add ,
364 .Fn atomic_clear ,
365 .Fn atomic_set ,
366 and
367 .Fn atomic_subtract
368 operations were first introduced in
369 .Fx 3.0 .
370 This first set only supported the types
371 .Dq Li char ,
372 .Dq Li short ,
373 .Dq Li int ,
374 and
375 .Dq Li long .
376 The
377 .Fn atomic_cmpset ,
378 .Fn atomic_load ,
379 .Fn atomic_readandclear ,
380 and
381 .Fn atomic_store
382 operations were added in
383 .Fx 5.0 .
384 The types
385 .Dq Li 8 ,
386 .Dq Li 16 ,
387 .Dq Li 32 ,
388 .Dq Li 64 ,
389 and
390 .Dq Li ptr
391 and all of the acquire and release variants
392 were added in
393 .Fx 5.0
394 as well.
395 The
396 .Fn atomic_fetchadd
397 operations were added in
398 .Fx 6.0 .
399 The
400 .Fn atomic_swap
401 and
402 .Fn atomic_testandset
403 operations were added in
404 .Fx 10.0 .