(CFLAGS-tst-align.c): Add -mpreferred-stack-boundary=4.
[glibc.git] / nptl / sysdeps / unix / sysv / linux / i386 / i486 / pthread_barrier_wait.S
blob114284c44cfeb22e48ef221b753711ef9f5d790f
1 /* Copyright (C) 2002, 2003, 2004 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
18    02111-1307 USA.  */
20 #include <sysdep.h>
21 #include <lowlevelbarrier.h>
23 #define SYS_futex       240
24 #define FUTEX_WAIT      0
25 #define FUTEX_WAKE      1
27 #ifndef UP
28 # define LOCK lock
29 #else
30 # define LOCK
31 #endif
34         .text
36         .globl  pthread_barrier_wait
37         .type   pthread_barrier_wait,@function
38         .align  16
39 pthread_barrier_wait:
40         pushl   %ebx
42         movl    8(%esp), %ebx
44         /* Get the mutex.  */
45         movl    $1, %edx
46         xorl    %eax, %eax
47         LOCK
48         cmpxchgl %edx, MUTEX(%ebx)
49         jnz     1f
51         /* One less waiter.  If this was the last one needed wake
52            everybody.  */
53 2:      subl    $1, LEFT(%ebx)
54         je      3f
56         /* There are more threads to come.  */
57         pushl   %esi
59 #if CURR_EVENT == 0
60         movl    (%ebx), %edx
61 #else
62         movl    CURR_EVENT(%ebx), %edx
63 #endif
65         /* Release the mutex.  */
66         LOCK
67         subl    $1, MUTEX(%ebx)
68         jne     6f
70         /* Wait for the remaining threads.  The call will return immediately
71            if the CURR_EVENT memory has meanwhile been changed.  */
72 7:      xorl    %ecx, %ecx              /* movl $FUTEX_WAIT, %ecx */
73         xorl    %esi, %esi
74 8:      movl    $SYS_futex, %eax
75         ENTER_KERNEL
77         /* Don't return on spurious wakeups.  The syscall does not change
78            any register except %eax so there is no need to reload any of
79            them.  */
80 #if CURR_EVENT == 0
81         cmpl    %edx, (%ebx)
82 #else
83         cmpl    %edx, CURR_EVENT(%ebx)
84 #endif
85         je,pn   8b
87         /* Increment LEFT.  If this brings the count back to the
88            initial count unlock the object.  */
89         movl    $1, %edx
90         movl    INIT_COUNT(%ebx), %ecx
91         LOCK
92         xaddl   %edx, LEFT(%ebx)
93         subl    $1, %ecx
94         cmpl    %ecx, %edx
95         jne,pt  10f
97         /* Release the mutex.  We cannot release the lock before
98            waking the waiting threads since otherwise a new thread might
99            arrive and gets waken up, too.  */
100         LOCK
101         subl    $1, MUTEX(%ebx)
102         jne     9f
104         /* Note: %esi is still zero.  */
105 10:     movl    %esi, %eax              /* != PTHREAD_BARRIER_SERIAL_THREAD */
107         popl    %esi
108         popl    %ebx
109         ret
111         /* The necessary number of threads arrived.  */
113 #if CURR_EVENT == 0
114         addl    $1, (%ebx)
115 #else
116         addl    $1, CURR_EVENT(%ebx)
117 #endif
119         /* Wake up all waiters.  The count is a signed number in the kernel
120            so 0x7fffffff is the highest value.  */
121         movl    $0x7fffffff, %edx
122         movl    $FUTEX_WAKE, %ecx
123         movl    $SYS_futex, %eax
124         ENTER_KERNEL
126         /* Increment LEFT.  If this brings the count back to the
127            initial count unlock the object.  */
128         movl    $1, %edx
129         movl    INIT_COUNT(%ebx), %ecx
130         LOCK
131         xaddl   %edx, LEFT(%ebx)
132         subl    $1, %ecx
133         cmpl    %ecx, %edx
134         jne,pt  5f
136         /* Release the mutex.  We cannot release the lock before
137            waking the waiting threads since otherwise a new thread might
138            arrive and gets waken up, too.  */
139         LOCK
140         subl    $1, MUTEX(%ebx)
141         jne     4f
143 5:      orl     $-1, %eax               /* == PTHREAD_BARRIER_SERIAL_THREAD */
145         popl    %ebx
146         ret
148 1:      leal    MUTEX(%ebx), %ecx
149         call    __lll_mutex_lock_wait
150         jmp     2b
152 4:      leal    MUTEX(%ebx), %eax
153         call    __lll_mutex_unlock_wake
154         jmp     5b
156 6:      leal    MUTEX(%ebx), %eax
157         call    __lll_mutex_unlock_wake
158         jmp     7b
160 9:      leal    MUTEX(%ebx), %eax
161         call    __lll_mutex_unlock_wake
162         jmp     10b
163         .size   pthread_barrier_wait,.-pthread_barrier_wait