]> sourceware.org Git - glibc.git/blob - nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_broadcast.S
Update.
[glibc.git] / nptl / sysdeps / unix / sysv / linux / i386 / i486 / pthread_cond_broadcast.S
1 /* Copyright (C) 2002, 2003 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Contributed by Ulrich Drepper <drepper@redhat.com>, 2002.
4
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.
9
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.
14
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. */
19
20 #include <sysdep.h>
21 #include <shlib-compat.h>
22 #include <lowlevelcond.h>
23 #include <kernel-features.h>
24
25 #ifdef UP
26 # define LOCK
27 #else
28 # define LOCK lock
29 #endif
30
31 #define SYS_futex 240
32 #define FUTEX_WAIT 0
33 #define FUTEX_WAKE 1
34 #define FUTEX_REQUEUE 3
35
36 #define EINVAL 22
37
38
39 .text
40
41 /* int pthread_cond_broadcast (pthread_cond_t *cond) */
42 .globl __pthread_cond_broadcast
43 .type __pthread_cond_broadcast, @function
44 .align 16
45 __pthread_cond_broadcast:
46
47 pushl %ebx
48 pushl %esi
49 pushl %edi
50
51 movl 16(%esp), %ebx
52
53 /* Get internal lock. */
54 movl $1, %edx
55 xorl %eax, %eax
56 LOCK
57 #if cond_lock == 0
58 cmpxchgl %edx, (%ebx)
59 #else
60 cmpxchgl %edx, cond_lock(%ebx)
61 #endif
62 jnz 1f
63
64 2: addl $wakeup_seq, %ebx
65 movl total_seq+4-wakeup_seq(%ebx), %eax
66 movl total_seq-wakeup_seq(%ebx), %ecx
67 cmpl 4(%ebx), %eax
68 ja 3f
69 jb 4f
70 cmpl (%ebx), %ecx
71 jna 4f
72
73 /* Cause all currently waiting threads to recognize they are
74 woken up. */
75 3: movl %ecx, (%ebx)
76 movl %eax, 4(%ebx)
77
78 /* Get the address of the mutex used. */
79 movl dep_mutex-wakeup_seq(%ebx), %edi
80
81 /* Unlock. */
82 LOCK
83 subl $1, cond_lock-wakeup_seq(%ebx)
84 jne 7f
85
86 /* Wake up all threads. */
87 8: movl $FUTEX_REQUEUE, %ecx
88 movl $SYS_futex, %eax
89 movl $0x7fffffff, %esi
90 movl $1, %edx
91 /* Get the address of the futex involved. */
92 # if MUTEX_FUTEX != 0
93 addl $MUTEX_FUTEX, %edi
94 # endif
95 ENTER_KERNEL
96
97 #ifndef __ASSUME_FUTEX_REQUEUE
98 cmpl $-EINVAL, %eax
99 je 9f
100 10:
101 #endif
102
103 xorl %eax, %eax
104 popl %edi
105 popl %esi
106 popl %ebx
107 ret
108
109 .align 16
110 /* Unlock. */
111 4: LOCK
112 subl $1, cond_lock-wakeup_seq(%ebx)
113 jne 5f
114
115 6: xorl %eax, %eax
116 popl %edi
117 popl %esi
118 popl %ebx
119 ret
120
121 /* Initial locking failed. */
122 1:
123 #if cond_lock == 0
124 movl %ebx, %ecx
125 #else
126 leal cond_lock(%ebx), %ecx
127 #endif
128 call __lll_mutex_lock_wait
129 jmp 2b
130
131 /* Unlock in loop requires waekup. */
132 5: leal cond_lock-wakeup_seq(%ebx), %eax
133 call __lll_mutex_unlock_wake
134 jmp 6b
135
136 /* Unlock in loop requires waekup. */
137 7: leal cond_lock-wakeup_seq(%ebx), %eax
138 call __lll_mutex_unlock_wake
139 jmp 8b
140
141 #ifndef __ASSUME_FUTEX_REQUEUE
142 9: /* The futex requeue functionality is not available. */
143 movl $0x7fffffff, %edx
144 movl $FUTEX_WAKE, %ecx
145 movl $SYS_futex, %eax
146 ENTER_KERNEL
147 jmp 10b
148 #endif
149 .size __pthread_cond_broadcast, .-__pthread_cond_broadcast
150 versioned_symbol (libpthread, __pthread_cond_broadcast, pthread_cond_broadcast,
151 GLIBC_2_3_2)
This page took 0.042671 seconds and 5 git commands to generate.