1 /* Copyright (C) 2003-2014 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, see
16 <http://www.gnu.org/licenses/>. */
19 #include <lowlevellock.h>
20 #include <lowlevelrwlock.h>
21 #include <kernel-features.h>
22 #include "lowlevel-atomic.h"
27 .globl __pthread_rwlock_unlock
28 .type __pthread_rwlock_unlock,@function
31 __pthread_rwlock_unlock:
33 cfi_adjust_cfa_offset (4)
34 cfi_rel_offset (r12, 0)
36 cfi_adjust_cfa_offset (4)
37 cfi_rel_offset (r8, 0)
39 cfi_adjust_cfa_offset (4)
40 cfi_rel_offset (pr, 0)
47 CMPXCHG (r3, @r8, r4, r2)
49 CMPXCHG (r3, @(MUTEX,r8), r4, r2)
53 mov.l @(WRITER,r8), r0
56 mov.l @(NR_READERS,r8), r0
58 mov.l r0, @(NR_READERS,r8)
63 mov.l r0, @(WRITER,r8)
66 add #WRITERS_WAKEUP, r4
67 mov.l @(WRITERS_QUEUED,r8), r0
71 /* If also no readers waiting nothing to do. */
72 mov.l @(READERS_QUEUED,r8), r0
77 shlr r6 /* r6 = 0x7fffffff */
79 add #READERS_WAKEUP, r4
94 #ifdef __ASSUME_PRIVATE_FUTEX
97 mov #(FUTEX_PRIVATE_FLAG|FUTEX_WAKE), r0
120 cfi_adjust_cfa_offset (-4)
123 cfi_adjust_cfa_offset (-4)
126 cfi_adjust_cfa_offset (-4)
135 DEC (@(MUTEX,r8), r2)
142 cfi_adjust_cfa_offset (-4)
145 cfi_adjust_cfa_offset (-4)
148 cfi_adjust_cfa_offset (-4)
185 cfi_adjust_cfa_offset (4)
187 cfi_adjust_cfa_offset (4)
201 cfi_adjust_cfa_offset (-4)
207 #ifndef __ASSUME_PRIVATE_FUTEX
209 .word PRIVATE_FUTEX - TLS_PRE_TCB_SIZE
213 .long __lll_lock_wait-.Lwait8b
215 .long __lll_unlock_wake-.Lwake8b
217 .long __lll_unlock_wake-.Lwake9b
218 .size __pthread_rwlock_unlock,.-__pthread_rwlock_unlock
220 strong_alias (__pthread_rwlock_unlock, pthread_rwlock_unlock)
221 hidden_def (__pthread_rwlock_unlock)