1 /* Copyright (C) 2003, 2007 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public
15 License along with the GNU C Library; if not, write to the Free
16 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
20 #include <lowlevellock.h>
21 #include <lowlevelrwlock.h>
22 #include <pthread-errnos.h>
23 #include <tcb-offsets.h>
24 #include <kernel-features.h>
25 #include "lowlevel-atomic.h"
30 .globl __pthread_rwlock_rdlock
31 .type __pthread_rwlock_rdlock,@function
33 __pthread_rwlock_rdlock:
44 CMPXCHG (r3, @r8, r4, r2)
46 CMPXCHG (r3, @(MUTEX,r8), r4, r2)
50 mov.l @(WRITER,r8), r0
53 mov.l @(WRITERS_QUEUED,r8), r0
61 mov.l @(READERS_QUEUED,r8), r0
63 mov.l r0, @(READERS_QUEUED,r8)
67 mov.l @(READERS_WAKEUP,r8), r9
77 #ifdef __ASSUME_PRIVATE_FUTEX
80 mov #(FUTEX_PRIVATE_FLAG|FUTEX_WAIT), r0
98 add #READERS_WAKEUP, r4
106 /* Reget the lock. */
110 CMPXCHG (r3, @r8, r4, r2)
112 CMPXCHG (r3, @(MUTEX,r8), r4, r2)
116 mov.l @(READERS_QUEUED,r8), r0
119 mov.l r0, @(READERS_QUEUED,r8)
123 mov.l @(NR_READERS,r8), r0
125 mov.l r0, @(NR_READERS,r8)
133 DEC (@(MUTEX,r8), r2)
145 #ifndef __ASSUME_PRIVATE_FUTEX
147 .word PRIVATE_FUTEX - TLS_PRE_TCB_SIZE
171 /* Deadlock detected. */
176 .word TID - TLS_PRE_TCB_SIZE
195 mov.l @(NR_READERS,r8), r1
197 mov.l r1, @(NR_READERS,r8)
203 mov.l @(READERS_QUEUED,r8), r1
205 mov.l r1, @(READERS_QUEUED,r8)
241 .long __lll_lock_wait-.Lwait0b
243 .long __lll_unlock_wake-.Lwake0b
245 .long __lll_lock_wait-.Lwait1b
247 .long __lll_unlock_wake-.Lwake1b
248 .size __pthread_rwlock_rdlock,.-__pthread_rwlock_rdlock
250 .globl pthread_rwlock_rdlock
251 pthread_rwlock_rdlock = __pthread_rwlock_rdlock
253 .globl __pthread_rwlock_rdlock_internal
254 __pthread_rwlock_rdlock_internal = __pthread_rwlock_rdlock