summaryrefslogtreecommitdiff
path: root/nptl/sysdeps/unix/sysv/linux/i386/i486/lowlevelrwlock.S
blob: 2dde246d1f13e791e6704060fc6297523b2897eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
/* Copyright (C) 2002 Free Software Foundation, Inc.
   This file is part of the GNU C Library.
   Contributed by Ulrich Drepper <drepper@redhat.com>, 2002.

   The GNU C Library is free software; you can redistribute it and/or
   modify it under the terms of the GNU Lesser General Public
   License as published by the Free Software Foundation; either
   version 2.1 of the License, or (at your option) any later version.

   The GNU C Library is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   Lesser General Public License for more details.

   You should have received a copy of the GNU Lesser General Public
   License along with the GNU C Library; if not, write to the Free
   Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
   02111-1307 USA.  */

#include <sysdep.h>

	.text

#define SYS_gettimeofday	__NR_gettimeofday
#define SYS_futex		240
#define FUTEX_WAIT		0
#define FUTEX_WAKE		1

#define EAGAIN		11
#define EDEADLK		35
#define ETIMEDOUT	110

/* Offsets in the pthread_rwlock_t structure.  */
#define MUTEX		0
#define NR_READERS	4
#define READERS_WAKEUP	8
#define WRITERS_WAKEUP	12
#define READERS_QUEUED	16
#define WRITERS_QUEUED	20
#define FLAGS		24
#define WRITER	28

#ifndef UP
# define LOCK lock
#else
# define LOCK
#endif


	.globl	__pthread_rwlock_rdlock
	.type	__pthread_rwlock_rdlock,@function
	.align	16
__pthread_rwlock_rdlock:
	pushl	%esi
	pushl	%ebx

	xorl	%esi, %esi
	xorl	%edx, %edx
	movl	12(%esp), %ebx

	/* Get the lock.  */
	movl	$1, %eax
	LOCK
	xaddl	%eax, MUTEX(%ebx)
	testl	%eax, %eax
	jne	1f

2:	movl	WRITER(%ebx), %eax
	testl	%eax, %eax
	jne	14f
	cmp	$0, WRITERS_QUEUED(%ebx)
	je	5f
	cmpl	$0, FLAGS(%ebx)
	je	5f

3:	incl	READERS_QUEUED(%ebx)
	je	4f

	LOCK
	decl	MUTEX(%ebx)
	jne	10f

11:	addl	$READERS_WAKEUP-MUTEX, %ebx
	movl	%esi, %ecx	/* movl $FUTEX_WAIT, %ecx */
	movl	$SYS_futex, %eax
	int	$0x80

	subl	$READERS_WAKEUP-MUTEX, %ebx

	/* Reget the lock.  */
	movl	$1, %eax
	LOCK
	xaddl	%eax, MUTEX(%ebx)
	testl	%eax, %eax
	jne	12f

13:	decl	READERS_QUEUED(%ebx)
	jne	2b
	movl	$0, READERS_WAKEUP(%ebx)
	jmp	2b

5:	xorl	%ecx, %ecx
	incl	NR_READERS(%ebx)
	je	8f
9:	LOCK
	decl	MUTEX(%ebx)
	jne	6f
7:

	movl	%ecx, %eax
	popl	%ebx
	popl	%esi
	ret

1:	movl	%ebx, %ecx
	call	__lll_mutex_lock_wait
	jmp	2b

14:	cmpl	%gs:8, %eax
	jne	3b
	/* Deadlock detected.  */
	movl	$EDEADLK, %ecx
	jmp	9b

6:	movl	%ebx, %eax
	call	__lll_mutex_unlock_wake
	jmp	7b

	/* Overflow.  */
8:	decl	NR_READERS(%ebx)
	movl	$EAGAIN, %ecx
	jmp	9b

	/* Overflow.  */
4:	decl	READERS_QUEUED(%ebx)
	movl	$EAGAIN, %ecx
	jmp	9b

10:	movl	%ebx, %eax
	call	__lll_mutex_unlock_wake
	jmp	11b

12:	movl	%ebx, %ecx
	call	__lll_mutex_lock_wait
	jmp	13b
	.size	__pthread_rwlock_rdlock,.-__pthread_rwlock_rdlock

	.globl	pthread_rwlock_rdlock
pthread_rwlock_rdlock = __pthread_rwlock_rdlock


	.globl	pthread_rwlock_timedrdlock
	.type	pthread_rwlock_timedrdlock,@function
	.align	16
pthread_rwlock_timedrdlock:
	pushl	%esi
	pushl	%edi
	pushl	%ebx
	pushl	%ebp
	subl	$8, %esp

	movl	28(%esp), %ebp
	movl	32(%esp), %edi

	/* Get the lock.  */
	movl	$1, %eax
	LOCK
	xaddl	%eax, MUTEX(%ebp)
	testl	%eax, %eax
	jne	1f

2:	movl	WRITER(%ebp), %eax
	testl	%eax, %eax
	jne	14f
	cmp	$0, WRITERS_QUEUED(%ebp)
	je	5f
	cmpl	$0, FLAGS(%ebp)
	je	5f

3:	incl	READERS_QUEUED(%ebp)
	je	4f

	LOCK
	decl	MUTEX(%ebp)
	jne	10f

	/* Get current time.  */
	movl	%esp, %ebx
	xorl	%ecx, %ecx
	movl	$SYS_gettimeofday, %eax
	int	$0x80

	/* Compute relative timeout.  */
	movl	4(%esp), %eax
	movl	$1000, %edx
	mul	%edx		/* Milli seconds to nano seconds.  */
	movl	(%edi), %ecx
	movl	4(%edi), %edx
	subl	(%esp), %ecx
	subl	%eax, %edx
	jns	15f
	addl	$1000000000, %edx
	decl	%ecx
15:	testl	%ecx, %ecx
	js	16f		/* Time is already up.  */

	/* Futex call.  */
	movl	%ecx, (%esp)	/* Store relative timeout.  */
	movl	%edx, 4(%esp)
	xorl	%ecx, %ecx	/* movl $FUTEX_WAIT, %ecx */
	movl	%esp, %esi
	movl	%ecx, %edx
	leal	READERS_WAKEUP(%ebp), %ebx
	movl	$SYS_futex, %eax
	int	$0x80
	movl	%eax, %edx
17:

	/* Reget the lock.  */
	movl	$1, %eax
	LOCK
	xaddl	%eax, MUTEX(%ebp)
	testl	%eax, %eax
	jne	12f

13:	cmpl	$-ETIMEDOUT, %ecx
	je	18f
	decl	READERS_QUEUED(%ebp)
	jne	2b
	movl	$0, READERS_WAKEUP(%ebp)
	jmp	2b


5:	xorl	%ecx, %ecx
	incl	NR_READERS(%ebp)
	je	8f
9:	LOCK
	decl	MUTEX(%ebp)
	jne	6f

7:	movl	%ecx, %eax

	addl	$8, %esp
	popl	%ebp
	popl	%ebx
	popl	%edi
	popl	%esi
	ret

1:	movl	%ebp, %ecx
	call	__lll_mutex_lock_wait
	jmp	2b

14:	cmpl	%gs:8, %eax
	jne	3b
	movl	$EDEADLK, %ecx
	jmp	9b

6:	movl	%ebp, %eax
	call	__lll_mutex_unlock_wake
	jmp	7b

	/* Overflow.  */
8:	decl	NR_READERS(%ebp)
	movl	$EAGAIN, %ecx
	jmp	9b

	/* Overflow.  */
4:	decl	READERS_QUEUED(%ebp)
	movl	$EAGAIN, %ecx
	jmp	9b

10:	movl	%ebp, %eax
	call	__lll_mutex_unlock_wake
	jmp	11b

12:	movl	%ebx, %ecx
	call	__lll_mutex_lock_wait
	jmp	13b

16:	movl	$-ETIMEDOUT, %ecx
	jmp	17b

18:	movl	$ETIMEDOUT, %ecx
	jmp	9b
	.size	pthread_rwlock_timedrdlock,.-pthread_rwlock_timedrdlock


	.globl	__pthread_rwlock_wrlock
	.type	__pthread_rwlock_wrlock,@function
	.align	16
__pthread_rwlock_wrlock:
	pushl	%esi
	pushl	%ebx

	xorl	%esi, %esi
	xorl	%edx, %edx
	movl	12(%esp), %ebx

	/* Get the lock.  */
	movl	$1, %eax
	LOCK
	xaddl	%eax, MUTEX(%ebx)
	testl	%eax, %eax
	jne	1f

2:	movl	WRITER(%ebx), %eax
	testl	%eax, %eax
	jne	14f
	cmp	$0, NR_READERS(%ebx)
	je	5f

3:	incl	WRITERS_QUEUED(%ebx)
	je	4f

	LOCK
	decl	MUTEX(%ebx)
	jne	10f

11:	addl	$WRITERS_WAKEUP-MUTEX, %ebx
	movl	%esi, %ecx	/* movl $FUTEX_WAIT, %ecx */
	movl	$SYS_futex, %eax
	int	$0x80

	subl	$WRITERS_WAKEUP-MUTEX, %ebx

	/* Reget the lock.  */
	movl	$1, %eax
	LOCK
	xaddl	%eax, MUTEX(%ebx)
	testl	%eax, %eax
	jne	12f

13:	decl	WRITERS_QUEUED(%ebx)
	movl	$0, WRITERS_WAKEUP(%ebx)
	jmp	2b

5:	xorl	%ecx, %ecx
	movl	%gs:8, %eax
	movl	%eax, WRITER(%ebx)
9:	LOCK
	decl	MUTEX(%ebx)
	jne	6f
7:

	movl	%ecx, %eax
	popl	%ebx
	popl	%esi
	ret

1:	movl	%ebx, %ecx
	call	__lll_mutex_lock_wait
	jmp	2b

14:	cmpl	%gs:8, %eax
	jne	3b
	movl	$EDEADLK, %ecx
	jmp	9b

6:	movl	%ebx, %eax
	call	__lll_mutex_unlock_wake
	jmp	7b

4:	decl	WRITERS_QUEUED(%ebx)
	movl	$EAGAIN, %ecx
	jmp	9b

10:	movl	%ebx, %eax
	call	__lll_mutex_unlock_wake
	jmp	11b

12:	movl	%ebx, %ecx
	call	__lll_mutex_lock_wait
	jmp	13b
	.size	__pthread_rwlock_wrlock,.-__pthread_rwlock_wrlock

	.globl	pthread_rwlock_wrlock
pthread_rwlock_wrlock = __pthread_rwlock_wrlock


	.globl	pthread_rwlock_timedwrlock
	.type	pthread_rwlock_timedwrlock,@function
	.align	16
pthread_rwlock_timedwrlock:
	pushl	%esi
	pushl	%edi
	pushl	%ebx
	pushl	%ebp
	subl	$8, %esp

	movl	28(%esp), %ebp
	movl	32(%esp), %edi

	/* Get the lock.  */
	movl	$1, %eax
	LOCK
	xaddl	%eax, MUTEX(%ebp)
	testl	%eax, %eax
	jne	1f

2:	movl	WRITER(%ebp), %eax
	testl	%eax, %eax
	jne	14f
	cmp	$0, NR_READERS(%ebp)
	je	5f

3:	incl	WRITERS_QUEUED(%ebp)
	je	4f

	LOCK
	decl	MUTEX(%ebp)
	jne	10f

	/* Get current time.  */
	movl	%esp, %ebx
	xorl	%ecx, %ecx
	movl	$SYS_gettimeofday, %eax
	int	$0x80

	/* Compute relative timeout.  */
	movl	4(%esp), %eax
	movl	$1000, %edx
	mul	%edx		/* Milli seconds to nano seconds.  */
	movl	(%edi), %ecx
	movl	4(%edi), %edx
	subl	(%esp), %ecx
	subl	%eax, %edx
	jns	15f
	addl	$1000000000, %edx
	decl	%ecx
15:	testl	%ecx, %ecx
	js	16f		/* Time is already up.  */

	/* Futex call.  */
	movl	%ecx, (%esp)	/* Store relative timeout.  */
	movl	%edx, 4(%esp)
	xorl	%ecx, %ecx	/* movl $FUTEX_WAIT, %ecx */
	movl	%esp, %esi
	movl	%ecx, %edx
	leal	WRITERS_WAKEUP(%ebp), %ebx
	movl	$SYS_futex, %eax
	int	$0x80
	movl	%eax, %edx
17:

	/* Reget the lock.  */
	movl	$1, %eax
	LOCK
	xaddl	%eax, MUTEX(%ebp)
	testl	%eax, %eax
	jne	12f

13:	cmpl	$-ETIMEDOUT, %ecx
	je	18f
	decl	WRITERS_QUEUED(%ebp)
	movl	$0, WRITERS_WAKEUP(%ebp)
	jmp	2b


5:	xorl	%ecx, %ecx
	movl	%gs:8, %eax
	movl	%eax, WRITER(%ebp)
9:	LOCK
	decl	MUTEX(%ebp)
	jne	6f

7:	movl	%ecx, %eax

	addl	$8, %esp
	popl	%ebp
	popl	%ebx
	popl	%edi
	popl	%esi
	ret

1:	movl	%ebp, %ecx
	call	__lll_mutex_lock_wait
	jmp	2b

14:	cmpl	%gs:8, %eax
	jne	3b
	movl	$EDEADLK, %ecx
	jmp	9b

6:	movl	%ebp, %eax
	call	__lll_mutex_unlock_wake
	jmp	7b

	/* Overflow.  */
4:	decl	WRITERS_QUEUED(%ebp)
	movl	$EAGAIN, %ecx
	jmp	9b

10:	movl	%ebp, %eax
	call	__lll_mutex_unlock_wake
	jmp	11b

12:	movl	%ebx, %ecx
	call	__lll_mutex_lock_wait
	jmp	13b

16:	movl	$-ETIMEDOUT, %ecx
	jmp	17b

18:	movl	$ETIMEDOUT, %ecx
	jmp	9b
	.size	pthread_rwlock_timedwrlock,.-pthread_rwlock_timedwrlock

	.globl	__pthread_rwlock_unlock
	.type	__pthread_rwlock_unlock,@function
	.align	16
__pthread_rwlock_unlock:
	pushl	%ebx
	pushl	%esi
	pushl	%edi

	xorl	%esi, %esi
	xorl	%edx, %edx
	movl	16(%esp), %edi

	/* Get the lock.  */
	movl	$1, %eax
	LOCK
	xaddl	%eax, MUTEX(%edi)
	testl	%eax, %eax
	jne	1f

2:	cmpl	$0, WRITER(%edi)
	jne	5f
	decl	NR_READERS(%edi)
	jnz	6f

5:	movl	$0, WRITER(%edi)

	movl	$0x7fffffff, %edx
	leal	READERS_WAKEUP(%edi), %ebx
	movl	$1, %ecx
	leal	WRITERS_WAKEUP(%edi), %eax
	cmpl	$0, WRITERS_QUEUED(%edi)
	cmovne	%ecx, %edx
	cmovne	%eax, %ebx
	movl	$SYS_futex, %eax
	int	$0x80

6:	LOCK
	decl	MUTEX(%edi)
	jne	3f

4:	xorl	%eax, %eax
	popl	%edi
	popl	%esi
	popl	%ebx
	ret

1:	movl	%edi, %ecx
	call	__lll_mutex_lock_wait
	jmp	2b

3:	movl	%edi, %eax
	call	__lll_mutex_unlock_wake
	jmp	4b

	.size	__pthread_rwlock_unlock,.-__pthread_rwlock_unlock

	.globl	pthread_rwlock_unlock
pthread_rwlock_unlock = __pthread_rwlock_unlock