2 * Copyright (c) 2003-2006 Apple Computer, Inc. All rights reserved.
4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. The rights granted to you under the License
10 * may not be used to create, or enable the creation or redistribution of,
11 * unlawful or unlicensed copies of an Apple operating system, or to
12 * circumvent, violate, or enable the circumvention or violation of, any
13 * terms of an Apple operating system software license agreement.
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
18 * The Original Code and all software distributed under the License are
19 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
20 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23 * Please see the License for the specific language governing rights and
24 * limitations under the License.
26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
29 #include <sys/appleapiopts.h>
30 #include <machine/cpu_capabilities.h>
31 #include <machine/commpage.h>
32 #include <mach/i386/syscall_sw.h>
36 #define MP_SPIN_TRIES 1024
50 COMMPAGE_DESCRIPTOR(spin_lock_try_up,_COMM_PAGE_SPINLOCK_TRY,kUP,0)
64 COMMPAGE_DESCRIPTOR(spin_lock_try_mp,_COMM_PAGE_SPINLOCK_TRY,0,kUP)
73 jnz,pn 1f /* predict not taken */
76 /* failed to get lock so relinquish the processor immediately on UP */
78 pushl $1 /* SWITCH_OPTION_DEPRESS */
79 pushl $0 /* THREAD_NULL */
80 pushl $0 /* push dummy stack ret addr */
81 movl $-61,%eax /* SYSCALL_THREAD_SWITCH */
83 addl $16, %esp /* adjust stack*/
86 COMMPAGE_DESCRIPTOR(spin_lock_up,_COMM_PAGE_SPINLOCK_LOCK,kUP,0)
97 jnz,pn 1f /* predict not taken */
101 movl $(MP_SPIN_TRIES), %edx
105 jz,pt 0b /* favor success and slow down spin loop */
107 jnz,pn 2b /* slow down spin loop with a mispredict */
108 /* failed to get lock after spinning so relinquish */
110 pushl $1 /* SWITCH_OPTION_DEPRESS */
111 pushl $0 /* THREAD_NULL */
112 pushl $0 /* push dummy stack ret addr */
113 movl $-61,%eax /* SYSCALL_THREAD_SWITCH */
115 addl $16, %esp /* adjust stack*/
118 COMMPAGE_DESCRIPTOR(spin_lock_mp,_COMM_PAGE_SPINLOCK_LOCK,0,kUP)
127 COMMPAGE_DESCRIPTOR(spin_unlock,_COMM_PAGE_SPINLOCK_UNLOCK,0,0)
130 /* ============================ 64-bit versions follow ===================== */
137 Lspin_lock_try_up_64:
140 cmpxchgl %edx, (%rdi)
145 COMMPAGE_DESCRIPTOR(spin_lock_try_up_64,_COMM_PAGE_SPINLOCK_TRY,kUP,0)
149 Lspin_lock_try_mp_64:
153 cmpxchgl %edx, (%rdi)
158 COMMPAGE_DESCRIPTOR(spin_lock_try_mp_64,_COMM_PAGE_SPINLOCK_TRY,0,kUP)
168 jnz,pn 1f /* predict not taken */
171 /* failed to get lock so relinquish the processor immediately on UP */
172 xorl %edi,%edi /* THREAD_NULL */
173 movl $1,%esi /* SWITCH_OPTION_DEPRESS */
174 movl $1,%edx /* 1 ms */
175 movl $(SYSCALL_CONSTRUCT_MACH(61)),%eax /* 61 = thread_switch */
179 COMMPAGE_DESCRIPTOR(spin_lock_up_64,_COMM_PAGE_SPINLOCK_LOCK,kUP,0)
191 jnz,pn 1f /* predict not taken */
195 movl $(MP_SPIN_TRIES), %edx
196 2: /* spin for awhile before relinquish */
202 /* failed to get lock after spinning so relinquish */
203 xorl %edi,%edi /* THREAD_NULL */
204 movl $1,%esi /* SWITCH_OPTION_DEPRESS */
205 movl $1,%edx /* 1 ms */
206 movl $(SYSCALL_CONSTRUCT_MACH(61)),%eax /* 61 = thread_switch */
210 COMMPAGE_DESCRIPTOR(spin_lock_mp_64,_COMM_PAGE_SPINLOCK_LOCK,0,kUP)
218 COMMPAGE_DESCRIPTOR(spin_unlock_64,_COMM_PAGE_SPINLOCK_UNLOCK,0,0)