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 <pthread-errnos.h>
22 #include <tcb-offsets.h>
23 #include <kernel-features.h>
24 #include "lowlevel-atomic.h"
29 .globl __pthread_rwlock_wrlock
30 .type __pthread_rwlock_wrlock,@function
33 __pthread_rwlock_wrlock:
35 cfi_adjust_cfa_offset (4)
36 cfi_rel_offset (r12, 0)
38 cfi_adjust_cfa_offset (4)
39 cfi_rel_offset (r9, 0)
41 cfi_adjust_cfa_offset (4)
42 cfi_rel_offset (r8, 0)
44 cfi_adjust_cfa_offset (4)
45 cfi_rel_offset (pr, 0)
52 CMPXCHG (r3, @r8, r4, r2)
54 CMPXCHG (r3, @(MUTEX,r8), r4, r2)
58 mov.l @(WRITER,r8), r0
61 mov.l @(NR_READERS,r8), r0
65 mov.l @(WRITERS_QUEUED,r8), r0
67 mov.l r0, @(WRITERS_QUEUED,r8)
71 mov.l @(WRITERS_WAKEUP,r8), r9
82 add #WRITERS_WAKEUP, r4
83 #ifdef __ASSUME_PRIVATE_FUTEX
86 mov #(FUTEX_PRIVATE_FLAG|FUTEX_WAIT), r0
110 /* Reget the lock. */
114 CMPXCHG (r3, @r8, r4, r2)
116 CMPXCHG (r3, @(MUTEX,r8), r4, r2)
120 mov.l @(WRITERS_QUEUED,r8), r0
123 mov.l r0, @(WRITERS_QUEUED,r8)
130 mov.l r0, @(WRITER,r8)
135 DEC (@(MUTEX,r8), r2)
142 cfi_adjust_cfa_offset (-4)
145 cfi_adjust_cfa_offset (-4)
148 cfi_adjust_cfa_offset (-4)
151 cfi_adjust_cfa_offset (-4)
195 #ifndef __ASSUME_PRIVATE_FUTEX
197 .word PRIVATE_FUTEX - TLS_PRE_TCB_SIZE
200 .word TID - TLS_PRE_TCB_SIZE
203 mov.l @(WRITERS_QUEUED,r8), r1
205 mov.l r1, @(WRITERS_QUEUED,r8)
243 .long __lll_lock_wait-.Lwait4b
245 .long __lll_unlock_wake-.Lwake4b
247 .long __lll_lock_wait-.Lwait5b
249 .long __lll_unlock_wake-.Lwake5b
251 strong_alias (__pthread_rwlock_wrlock, pthread_rwlock_wrlock)
252 hidden_def (__pthread_rwlock_wrlock)