1 /* Copyright (C) 2002-2005, 2007, 2009 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Contributed by Ulrich Drepper <drepper@redhat.com>, 2002.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <http://www.gnu.org/licenses/>. */
20 #include <shlib-compat.h>
21 #include <lowlevellock.h>
22 #include <lowlevelcond.h>
23 #include <pthread-pi-defines.h>
24 #include <kernel-features.h>
25 #include <pthread-errnos.h>
30 /* int pthread_cond_signal (pthread_cond_t *cond) */
31 .globl __pthread_cond_signal
32 .type __pthread_cond_signal, @function
34 __pthread_cond_signal:
36 /* Get internal lock. */
44 cmpxchgl %esi, cond_lock(%rdi)
48 2: addq $cond_futex, %rdi
49 movq total_seq(%r8), %rcx
50 cmpq wakeup_seq(%r8), %rcx
53 /* Bump the wakeup number. */
54 addq $1, wakeup_seq(%r8)
57 /* Wake up one thread. */
58 LP_OP(cmp) $-1, dep_mutex(%r8)
59 movl $FUTEX_WAKE_OP, %esi
64 /* Get the address of the mutex used. */
65 mov dep_mutex(%r8), %RCX_LP
66 movl MUTEX_KIND(%rcx), %r11d
67 andl $(ROBUST_BIT|PI_BIT), %r11d
71 #ifdef __ASSUME_PRIVATE_FUTEX
72 movl $(FUTEX_WAKE_OP|FUTEX_PRIVATE_FLAG), %esi
74 orl %fs:PRIVATE_FUTEX, %esi
81 movl $FUTEX_OP_CLEAR_WAKE_IF_GT_ONE, %r9d
86 /* For any kind of error, we try again with WAKE.
87 The general test also covers running on old kernels. */
94 /* Wake up one thread and requeue none in the PI Mutex case. */
95 9: movl $(FUTEX_CMP_REQUEUE_PI|FUTEX_PRIVATE_FLAG), %esi
98 movl (%rdi), %r9d // XXX Can this be right?
101 leaq -cond_futex(%rdi), %r8
103 /* For any kind of error, we try again with WAKE.
104 The general test also covers running on old kernels. */
109 #ifdef __ASSUME_PRIVATE_FUTEX
110 andl $FUTEX_PRIVATE_FLAG, %esi
112 andl %fs:PRIVATE_FUTEX, %esi
114 orl $FUTEX_WAKE, %esi
115 movl $SYS_futex, %eax
116 /* %rdx should be 1 already from $FUTEX_WAKE_OP syscall.
132 /* Initial locking failed. */
135 addq $cond_lock, %rdi
137 LP_OP(cmp) $-1, dep_mutex-cond_lock(%rdi)
138 movl $LLL_PRIVATE, %eax
139 movl $LLL_SHARED, %esi
141 callq __lll_lock_wait
143 subq $cond_lock, %rdi
147 /* Unlock in loop requires wakeup. */
151 addq $cond_lock, %rdi
153 LP_OP(cmp) $-1, dep_mutex-cond_lock(%rdi)
154 movl $LLL_PRIVATE, %eax
155 movl $LLL_SHARED, %esi
157 callq __lll_unlock_wake
159 .size __pthread_cond_signal, .-__pthread_cond_signal
160 versioned_symbol (libpthread, __pthread_cond_signal, pthread_cond_signal,