1 /* Copyright (C) 2002, 2003, 2004, 2007 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, write to the Free
17 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
21 #include <lowlevellock.h>
22 #include <lowlevelbarrier.h>
26 .globl pthread_barrier_wait
27 .type pthread_barrier_wait,@function
32 cfi_adjust_cfa_offset(4)
41 cmpxchgl %edx, MUTEX(%ebx)
44 /* One less waiter. If this was the last one needed wake
46 2: subl $1, LEFT(%ebx)
49 /* There are more threads to come. */
51 cfi_adjust_cfa_offset(4)
57 movl CURR_EVENT(%ebx), %edx
60 /* Release the mutex. */
65 /* Wait for the remaining threads. The call will return immediately
66 if the CURR_EVENT memory has meanwhile been changed. */
69 movl PRIVATE(%ebx), %ecx
71 movl $FUTEX_WAIT, %ecx
72 orl PRIVATE(%ebx), %ecx
75 8: movl $SYS_futex, %eax
78 /* Don't return on spurious wakeups. The syscall does not change
79 any register except %eax so there is no need to reload any of
84 cmpl %edx, CURR_EVENT(%ebx)
88 /* Increment LEFT. If this brings the count back to the
89 initial count unlock the object. */
91 movl INIT_COUNT(%ebx), %ecx
93 xaddl %edx, LEFT(%ebx)
98 /* Release the mutex. We cannot release the lock before
99 waking the waiting threads since otherwise a new thread might
100 arrive and gets waken up, too. */
105 /* Note: %esi is still zero. */
106 10: movl %esi, %eax /* != PTHREAD_BARRIER_SERIAL_THREAD */
109 cfi_adjust_cfa_offset(-4)
112 cfi_adjust_cfa_offset(-4)
114 popl %ecx; nacljmp %ecx
116 cfi_adjust_cfa_offset(4)
119 /* The necessary number of threads arrived. */
124 addl $1, CURR_EVENT(%ebx)
127 /* Wake up all waiters. The count is a signed number in the kernel
128 so 0x7fffffff is the highest value. */
129 movl $0x7fffffff, %edx
130 movl $FUTEX_WAKE, %ecx
131 orl PRIVATE(%ebx), %ecx
132 movl $SYS_futex, %eax
135 /* Increment LEFT. If this brings the count back to the
136 initial count unlock the object. */
138 movl INIT_COUNT(%ebx), %ecx
140 xaddl %edx, LEFT(%ebx)
145 /* Release the mutex. We cannot release the lock before
146 waking the waiting threads since otherwise a new thread might
147 arrive and gets waken up, too. */
152 5: orl $-1, %eax /* == PTHREAD_BARRIER_SERIAL_THREAD */
155 cfi_adjust_cfa_offset(-4)
157 popl %ecx; nacljmp %ecx
159 cfi_adjust_cfa_offset(4)
161 1: movl PRIVATE(%ebx), %ecx
162 leal MUTEX(%ebx), %edx
163 xorl $LLL_SHARED, %ecx
167 4: movl PRIVATE(%ebx), %ecx
168 leal MUTEX(%ebx), %eax
169 xorl $LLL_SHARED, %ecx
170 call __lll_unlock_wake
173 cfi_adjust_cfa_offset(4)
174 cfi_offset(%esi, -12)
175 6: movl PRIVATE(%ebx), %ecx
176 leal MUTEX(%ebx), %eax
177 xorl $LLL_SHARED, %ecx
178 call __lll_unlock_wake
181 9: movl PRIVATE(%ebx), %ecx
182 leal MUTEX(%ebx), %eax
183 xorl $LLL_SHARED, %ecx
184 call __lll_unlock_wake
187 .size pthread_barrier_wait,.-pthread_barrier_wait