Update.
[platform/upstream/glibc.git] / nptl / sysdeps / unix / sysv / linux / powerpc / lowlevellock.h
1 /* Copyright (C) 2003 Free Software Foundation, Inc.
2    This file is part of the GNU C Library.
3    Contributed by Paul Mackerras <paulus@au.ibm.com>, 2003.
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 Libr    \ary; if not, write to the Free
17    Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
18    02111-1307 USA.  */
19
20 #ifndef _LOWLEVELLOCK_H
21 #define _LOWLEVELLOCK_H 1
22
23 #include <time.h>
24 #include <sys/param.h>
25 #include <bits/pthreadtypes.h>
26 #include <atomic.h>
27
28
29 #define __NR_futex              221
30 #define FUTEX_WAIT              0
31 #define FUTEX_WAKE              1
32 #define FUTEX_REQUEUE           3
33
34 /* Initializer for compatibility lock.  */
35 #define LLL_MUTEX_LOCK_INITIALIZER (0)
36
37 #define lll_futex_wait(futexp, val) \
38   ({                                                                          \
39     INTERNAL_SYSCALL_DECL (__err);                                            \
40     long int __ret;                                                           \
41                                                                               \
42     __ret = INTERNAL_SYSCALL (futex, __err, 4,                                \
43                               (futexp), FUTEX_WAIT, (val), 0);                \
44     INTERNAL_SYSCALL_ERROR_P (__ret, __err) ? -__ret : __ret;                 \
45   })
46
47 #define lll_futex_timed_wait(futexp, val, timespec) \
48   ({                                                                          \
49     INTERNAL_SYSCALL_DECL (__err);                                            \
50     long int __ret;                                                           \
51                                                                               \
52     __ret = INTERNAL_SYSCALL (futex, __err, 4,                                \
53                               (futexp), FUTEX_WAIT, (val), (timespec));       \
54     INTERNAL_SYSCALL_ERROR_P (__ret, __err) ? -__ret : __ret;                 \
55   })
56
57 #define lll_futex_wake(futexp, nr) \
58   ({                                                                          \
59     INTERNAL_SYSCALL_DECL (__err);                                            \
60     long int __ret;                                                           \
61                                                                               \
62     __ret = INTERNAL_SYSCALL (futex, __err, 4,                                \
63                               (futexp), FUTEX_WAKE, (nr), 0);                 \
64     INTERNAL_SYSCALL_ERROR_P (__ret, __err) ? -__ret : __ret;                 \
65   })
66
67 #define lll_futex_requeue(futexp, nr_wake, nr_move, mutex) \
68   ({                                                                          \
69     INTERNAL_SYSCALL_DECL (__err);                                            \
70     long int __ret;                                                           \
71                                                                               \
72     __ret = INTERNAL_SYSCALL (futex, __err, 5,                                \
73                               (futexp), FUTEX_REQUEUE, (nr_wake), (nr_move),  \
74                               (mutex));                                       \
75     INTERNAL_SYSCALL_ERROR_P (__ret, __err) ? -__ret : __ret;                 \
76   })
77
78 #ifdef UP
79 # define __lll_acq_instr        ""
80 # define __lll_rel_instr        ""
81 #else
82 # define __lll_acq_instr        "isync"
83 # define __lll_rel_instr        "sync"
84 #endif
85
86 /* Set *futex to 1 if it is 0, atomically.  Returns the old value */
87 #define __lll_trylock(futex) \
88   ({ int __val;                                                               \
89      __asm __volatile ("1:      lwarx   %0,0,%2\n"                            \
90                        "        cmpwi   0,%0,0\n"                             \
91                        "        bne     2f\n"                                 \
92                        "        stwcx.  %3,0,%2\n"                            \
93                        "        bne-    1b\n"                                 \
94                        "2:      " __lll_acq_instr                             \
95                        : "=&r" (__val), "=m" (*futex)                         \
96                        : "r" (futex), "r" (1), "1" (*futex)                   \
97                        : "cr0", "memory");                                    \
98      __val;                                                                   \
99   })
100
101 #define lll_mutex_trylock(lock) __lll_trylock (&(lock))
102
103
104 extern void __lll_lock_wait (int *futex, int val) attribute_hidden;
105
106 #define lll_mutex_lock(lock) \
107   (void) ({                                                                   \
108     int *__futex = &(lock);                                                   \
109     if (atomic_compare_and_exchange_bool_acq (__futex, 1, 0) != 0)            \
110       __lll_lock_wait (__futex);                                              \
111   })
112
113 #define lll_mutex_cond_lock(lock) \
114   (void) ({                                                                   \
115     int *__futex = &(lock);                                                   \
116     if (atomic_compare_and_exchange_bool_acq (__futex, 2, 0) != 0)            \
117       __lll_lock_wait (__futex);                                              \
118   })
119
120 extern int __lll_timedlock_wait
121         (int *futex, int val, const struct timespec *) attribute_hidden;
122
123 #define lll_mutex_timedlock(lock, abstime) \
124   (void) ({                                                                   \
125     int *__futex = &(lock);                                                   \
126     if (atomic_compare_and_exchange_bool_acq (__futex, 1, 0) != 0)            \
127       __lll_timedlock_wait (__futex, abstime);                                \
128   })
129
130 #define lll_mutex_unlock(lock) \
131   ((void) ({                                                                  \
132     int *__futex = &(lock);                                                   \
133     int __val = atomic_exchange_rel (__futex, 0);                             \
134     if (__builtin_expect (__val > 1, 0))                                      \
135       lll_futex_wake (__futex, 1);                                            \
136   }))
137
138 #define lll_mutex_unlock_force(lock) \
139   ((void) ({                                                                  \
140     int *__futex = &(lock);                                                   \
141     *__futex = 0;                                                             \
142     __asm __volatile (__lll_rel_instr ::: "memory");                          \
143     lll_futex_wake (__futex, 1);                                              \
144   }))
145
146 #define lll_mutex_islocked(futex) \
147   (futex != 0)
148
149
150 /* Our internal lock implementation is identical to the binary-compatible
151    mutex implementation. */
152
153 /* Type for lock object.  */
154 typedef int lll_lock_t;
155
156 /* Initializers for lock.  */
157 #define LLL_LOCK_INITIALIZER            (0)
158 #define LLL_LOCK_INITIALIZER_LOCKED     (1)
159
160 extern int lll_unlock_wake_cb (int *__futex) attribute_hidden;
161
162 /* The states of a lock are:
163     0  -  untaken
164     1  -  taken by one user
165    >1  -  taken by more users */
166
167 #define lll_trylock(lock)       lll_mutex_trylock (lock)
168 #define lll_lock(lock)          lll_mutex_lock (lock)
169 #define lll_unlock(lock)        lll_mutex_unlock (lock)
170 #define lll_islocked(lock)      lll_mutex_islocked (lock)
171
172 /* The kernel notifies a process which uses CLONE_CLEARTID via futex
173    wakeup when the clone terminates.  The memory location contains the
174    thread ID while the clone is running and is reset to zero
175    afterwards.  */
176 #define lll_wait_tid(tid) \
177   do {                                                                        \
178     __typeof (tid) __tid;                                                     \
179     while ((__tid = (tid)) != 0)                                              \
180       lll_futex_wait (&(tid), __tid);                                         \
181   } while (0)
182
183 extern int __lll_timedwait_tid (int *, const struct timespec *)
184      attribute_hidden;
185
186 #define lll_timedwait_tid(tid, abstime) \
187   ({                                                                          \
188     int __res = 0;                                                            \
189     if ((tid) != 0)                                                           \
190       __res = __lll_timedwait_tid (&(tid), (abstime));                        \
191     __res;                                                                    \
192   })
193
194
195 /* Conditional variable handling.  */
196
197 extern void __lll_cond_wait (pthread_cond_t *cond)
198      attribute_hidden;
199 extern int __lll_cond_timedwait (pthread_cond_t *cond,
200                                  const struct timespec *abstime)
201      attribute_hidden;
202 extern void __lll_cond_wake (pthread_cond_t *cond)
203      attribute_hidden;
204 extern void __lll_cond_broadcast (pthread_cond_t *cond)
205      attribute_hidden;
206
207 #define lll_cond_wait(cond) \
208   __lll_cond_wait (cond)
209 #define lll_cond_timedwait(cond, abstime) \
210   __lll_cond_timedwait (cond, abstime)
211 #define lll_cond_wake(cond) \
212   __lll_cond_wake (cond)
213 #define lll_cond_broadcast(cond) \
214   __lll_cond_broadcast (cond)
215
216 #endif  /* lowlevellock.h */