1 /* Spin locks for communication between threads and signal handlers.
2 Copyright (C) 2020 Free Software Foundation, Inc.
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2, or (at your option)
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, see <https://www.gnu.org/licenses/>. */
17 /* Written by Bruno Haible <bruno@clisp.org>, 2020. */
22 #include "asyncsafe-spin.h"
27 # include <sys/atomic_op.h>
30 #if defined _WIN32 && ! defined __CYGWIN__
31 /* Use Windows threads. */
34 asyncsafe_spin_init (asyncsafe_spinlock_t
*lock
)
36 glwthread_spin_init (lock
);
40 do_lock (asyncsafe_spinlock_t
*lock
)
42 glwthread_spin_lock (lock
);
46 do_unlock (asyncsafe_spinlock_t
*lock
)
48 if (glwthread_spin_unlock (lock
))
53 asyncsafe_spin_destroy (asyncsafe_spinlock_t
*lock
)
55 glwthread_spin_destroy (lock
);
61 /* Use POSIX threads. */
63 /* We don't use semaphores (although sem_post() is allowed in signal handlers),
64 because it would require to link with -lrt on HP-UX 11, OSF/1, Solaris 10,
65 and also because on macOS only named semaphores work.
67 We don't use the C11 <stdatomic.h> (available in GCC >= 4.9) because it would
68 require to link with -latomic. */
70 # if (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 7) \
71 || __clang_major > 3 || (__clang_major__ == 3 && __clang_minor__ >= 1)) \
73 /* Use GCC built-ins (available in GCC >= 4.7 and clang >= 3.1) that operate on
74 the first byte of the lock.
76 <https://gcc.gnu.org/onlinedocs/gcc-4.7.0/gcc/_005f_005fatomic-Builtins.html>
80 /* An implementation that verifies the unlocks. */
83 asyncsafe_spin_init (asyncsafe_spinlock_t
*lock
)
85 __atomic_store_n (lock
, 0, __ATOMIC_SEQ_CST
);
89 do_lock (asyncsafe_spinlock_t
*lock
)
91 /* Wait until *lock becomes 0, then replace it with 1. */
92 asyncsafe_spinlock_t zero
;
94 __atomic_compare_exchange_n (lock
, &zero
, 1, false,
95 __ATOMIC_SEQ_CST
, __ATOMIC_SEQ_CST
)))
100 do_unlock (asyncsafe_spinlock_t
*lock
)
102 /* If *lock is 1, then replace it with 0. */
103 asyncsafe_spinlock_t one
= 1;
104 if (!__atomic_compare_exchange_n (lock
, &one
, 0, false,
105 __ATOMIC_SEQ_CST
, __ATOMIC_SEQ_CST
))
110 /* An implementation that is a little bit more optimized, but does not verify
114 asyncsafe_spin_init (asyncsafe_spinlock_t
*lock
)
116 __atomic_clear (lock
, __ATOMIC_SEQ_CST
);
120 do_lock (asyncsafe_spinlock_t
*lock
)
122 while (__atomic_test_and_set (lock
, __ATOMIC_SEQ_CST
))
127 do_unlock (asyncsafe_spinlock_t
*lock
)
129 __atomic_clear (lock
, __ATOMIC_SEQ_CST
);
134 # elif (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 1) \
135 || __clang_major__ >= 3) \
136 && !defined __ibmxl__
137 /* Use GCC built-ins (available in GCC >= 4.1 and clang >= 3.0).
139 <https://gcc.gnu.org/onlinedocs/gcc-4.1.2/gcc/Atomic-Builtins.html> */
142 asyncsafe_spin_init (asyncsafe_spinlock_t
*lock
)
144 volatile unsigned int *vp
= lock
;
146 __sync_synchronize ();
150 do_lock (asyncsafe_spinlock_t
*lock
)
152 /* Wait until *lock becomes 0, then replace it with 1. */
153 while (__sync_val_compare_and_swap (lock
, 0, 1) != 0)
158 do_unlock (asyncsafe_spinlock_t
*lock
)
160 /* If *lock is 1, then replace it with 0. */
161 if (__sync_val_compare_and_swap (lock
, 1, 0) != 1)
169 asyncsafe_spin_init (asyncsafe_spinlock_t
*lock
)
171 atomic_p vp
= (int *) lock
;
176 do_lock (asyncsafe_spinlock_t
*lock
)
178 atomic_p vp
= (int *) lock
;
179 while (_check_lock (vp
, 0, 1))
184 do_unlock (asyncsafe_spinlock_t
*lock
)
186 atomic_p vp
= (int *) lock
;
187 if (_check_lock (vp
, 1, 0))
191 # elif (defined __GNUC__ || defined __clang__ || defined __SUNPRO_C) && (defined __sparc || defined __i386 || defined __x86_64__)
192 /* For older versions of GCC or clang, use inline assembly.
193 GCC, clang, and the Oracle Studio C 12 compiler understand GCC's extended
194 asm syntax, but the plain Oracle Studio C 11 compiler understands only
196 /* An implementation that verifies the unlocks. */
199 memory_barrier (void)
201 # if defined __GNUC__ || defined __clang__ || __SUNPRO_C >= 0x590
202 # if defined __i386 || defined __x86_64__
203 asm volatile ("mfence");
206 asm volatile ("membar 2");
209 # if defined __i386 || defined __x86_64__
218 /* Store NEWVAL in *VP if the old value *VP is == CMP.
219 Return the old value. */
221 atomic_compare_and_swap (volatile unsigned int *vp
, unsigned int cmp
,
224 # if defined __GNUC__ || defined __clang__ || __SUNPRO_C >= 0x590
226 # if defined __i386 || defined __x86_64__
227 asm volatile (" lock\n cmpxchgl %3,(%1)"
228 : "=a" (oldval
) : "r" (vp
), "a" (cmp
), "r" (newval
) : "memory");
231 asm volatile (" cas [%1],%2,%3\n"
233 : "=r" (oldval
) : "r" (vp
), "r" (cmp
), "r" (newval
) : "memory");
236 # else /* __SUNPRO_C */
237 # if defined __x86_64__
238 asm (" movl %esi,%eax\n"
239 " lock\n cmpxchgl %edx,(%rdi)");
240 # elif defined __i386
241 asm (" movl 16(%ebp),%ecx\n"
242 " movl 12(%ebp),%eax\n"
243 " movl 8(%ebp),%edx\n"
244 " lock\n cmpxchgl %ecx,(%edx)");
247 asm (" cas [%i0],%i1,%i2\n"
254 asyncsafe_spin_init (asyncsafe_spinlock_t
*lock
)
256 volatile unsigned int *vp
= lock
;
262 do_lock (asyncsafe_spinlock_t
*lock
)
264 volatile unsigned int *vp
= lock
;
265 while (atomic_compare_and_swap (vp
, 0, 1) != 0)
270 do_unlock (asyncsafe_spinlock_t
*lock
)
272 volatile unsigned int *vp
= lock
;
273 if (atomic_compare_and_swap (vp
, 1, 0) != 1)
278 /* Fallback code. It has some race conditions. */
281 asyncsafe_spin_init (asyncsafe_spinlock_t
*lock
)
283 volatile unsigned int *vp
= lock
;
288 do_lock (asyncsafe_spinlock_t
*lock
)
290 volatile unsigned int *vp
= lock
;
297 do_unlock (asyncsafe_spinlock_t
*lock
)
299 volatile unsigned int *vp
= lock
;
306 /* Provide a dummy implementation for single-threaded applications. */
309 asyncsafe_spin_init (asyncsafe_spinlock_t
*lock
)
314 do_lock (asyncsafe_spinlock_t
*lock
)
319 do_unlock (asyncsafe_spinlock_t
*lock
)
326 asyncsafe_spin_destroy (asyncsafe_spinlock_t
*lock
)
333 asyncsafe_spin_lock (asyncsafe_spinlock_t
*lock
,
334 const sigset_t
*mask
, sigset_t
*saved_mask
)
336 sigprocmask (SIG_BLOCK
, mask
, saved_mask
); /* equivalent to pthread_sigmask */
341 asyncsafe_spin_unlock (asyncsafe_spinlock_t
*lock
, const sigset_t
*saved_mask
)
344 sigprocmask (SIG_SETMASK
, saved_mask
, NULL
); /* equivalent to pthread_sigmask */