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
|
/* $OpenBSD: mutex.S,v 1.8 2010/09/24 13:21:30 matthew Exp $ */
/*
* Copyright (c) 2004 Artur Grabowski <art@openbsd.org>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. The name of the author may not be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
* AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
* THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "assym.h"
#include <machine/param.h>
#include <machine/asm.h>
#include <machine/segments.h>
#include <machine/specialreg.h>
#include <machine/trap.h>
#include <machine/frameasm.h>
/*
* Yeah, we don't really need to implement mtx_init here, but let's keep
* all the functions in the same place.
*/
ENTRY(mtx_init)
movl %esi, MTX_WANTIPL(%rdi)
movl $0, MTX_OLDIPL(%rdi)
movq $0, MTX_OWNER(%rdi)
ret
ENTRY(mtx_enter)
1: movl MTX_WANTIPL(%rdi), %eax
movq CPUVAR(SELF), %rcx
movl CPU_INFO_ILEVEL(%rcx), %edx # oipl = cpl;
cmpl %eax, %edx # if (cpl < mtx->mtx_wantipl)
cmovge %edx, %eax
movl %eax, CPU_INFO_ILEVEL(%rcx) # cpl = mtx->mtx_wantipl;
/*
* %edx - the old ipl
* %rcx - curcpu()
*/
xorq %rax, %rax
#ifdef MULTIPROCESSOR
lock
#endif
cmpxchgq %rcx, MTX_OWNER(%rdi) # test_and_set(mtx->mtx_owner)
jne 2f
movl %edx, MTX_OLDIPL(%rdi)
#ifdef DIAGNOSTIC
incl CPU_INFO_MUTEX_LEVEL(%rcx)
#endif
ret
/* We failed to obtain the lock. splx, spin and retry. */
2: pushq %rdi
movl %edx, %edi
call _C_LABEL(spllower)
popq %rdi
#ifdef DIAGNOSTIC
movq CPUVAR(SELF), %rcx
cmpq MTX_OWNER(%rdi), %rcx
je 4f
#endif
3:
movq MTX_OWNER(%rdi), %rax
testq %rax, %rax
jz 1b
jmp 3b
#ifdef DIAGNOSTIC
4: movq $5f, %rdi
call _C_LABEL(panic)
5: .asciz "mtx_enter: locking against myself"
#endif
ENTRY(mtx_enter_try)
1: movl MTX_WANTIPL(%rdi), %eax
movq CPUVAR(SELF), %rcx
movl CPU_INFO_ILEVEL(%rcx), %edx # oipl = cpl;
cmpl %eax, %edx # if (cpl < mtx->mtx_wantipl)
cmovge %edx, %eax
movl %eax, CPU_INFO_ILEVEL(%rcx) # cpl = mtx->mtx_wantipl;
/*
* %edx - the old ipl
* %rcx - curcpu()
*/
xorq %rax, %rax
#ifdef MULTIPROCESSOR
lock
#endif
cmpxchgq %rcx, MTX_OWNER(%rdi) # test_and_set(mtx->mtx_owner)
jne 2f
movl %edx, MTX_OLDIPL(%rdi)
#ifdef DIAGNOSTIC
incl CPU_INFO_MUTEX_LEVEL(%rcx)
#endif
movq $1, %rax
ret
/* We failed to obtain the lock. splx and return 0. */
2: pushq %rdi
movl %edx, %edi
call _C_LABEL(spllower)
popq %rdi
#ifdef DIAGNOSTIC
movq CPUVAR(SELF), %rcx
cmpq MTX_OWNER(%rdi), %rcx
je 3f
#endif
xorq %rax, %rax
ret
#ifdef DIAGNOSTIC
3: movq $4f, %rdi
call _C_LABEL(panic)
4: .asciz "mtx_enter_try: locking against myself"
#endif
ENTRY(mtx_leave)
movq %rdi, %rax
#ifdef DIAGNOSTIC
movq CPUVAR(SELF), %rcx
cmpq MTX_OWNER(%rax), %rcx
jne 2f
decl CPU_INFO_MUTEX_LEVEL(%rcx)
#endif
xorq %rcx, %rcx
movl MTX_OLDIPL(%rax), %edi
movl %ecx, MTX_OLDIPL(%rax)
movq %rcx, MTX_OWNER(%rax)
cmpl %edi, CPUVAR(ILEVEL)
je 1f
call _C_LABEL(spllower)
1:
ret
#ifdef DIAGNOSTIC
2: movq $3f, %rdi
call _C_LABEL(panic)
3: .asciz "mtx_leave: lock not held"
#endif
|