]>
Commit | Line | Data |
---|---|---|
9385eb3d A |
1 | /* |
2 | * Copyright (c) 2003 Apple Computer, Inc. All rights reserved. | |
3 | * | |
4 | * @APPLE_LICENSE_HEADER_START@ | |
5 | * | |
9385eb3d A |
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. Please obtain a copy of the License at | |
10 | * http://www.opensource.apple.com/apsl/ and read it before using this | |
11 | * file. | |
12 | * | |
13 | * The Original Code and all software distributed under the License are | |
14 | * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER | |
15 | * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, | |
16 | * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, | |
17 | * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. | |
18 | * Please see the License for the specific language governing rights and | |
19 | * limitations under the License. | |
20 | * | |
21 | * @APPLE_LICENSE_HEADER_END@ | |
22 | */ | |
e9ce8d39 A |
23 | /* |
24 | * Copyright 1996 1995 by Open Software Foundation, Inc. 1997 1996 1995 1994 1993 1992 1991 | |
25 | * All Rights Reserved | |
26 | * | |
27 | * Permission to use, copy, modify, and distribute this software and | |
28 | * its documentation for any purpose and without fee is hereby granted, | |
29 | * provided that the above copyright notice appears in all copies and | |
30 | * that both the copyright notice and this permission notice appear in | |
31 | * supporting documentation. | |
32 | * | |
33 | * OSF DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE | |
34 | * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS | |
35 | * FOR A PARTICULAR PURPOSE. | |
36 | * | |
37 | * IN NO EVENT SHALL OSF BE LIABLE FOR ANY SPECIAL, INDIRECT, OR | |
38 | * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM | |
39 | * LOSS OF USE, DATA OR PROFITS, WHETHER IN ACTION OF CONTRACT, | |
40 | * NEGLIGENCE, OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION | |
41 | * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | |
42 | * | |
43 | */ | |
9385eb3d A |
44 | |
45 | #define __APPLE_API_PRIVATE | |
46 | #include <machine/cpu_capabilities.h> | |
47 | #undef __APPLE_API_PRIVATE | |
e9ce8d39 | 48 | |
59e0d9fe | 49 | #if defined(__ppc__) || defined(__ppc64__) |
e9ce8d39 A |
50 | |
51 | #import <architecture/ppc/asm_help.h> | |
52 | #import <architecture/ppc/pseudo_inst.h> | |
53 | ||
54 | /* void spin_lock(int *p); | |
55 | * | |
56 | * Lock the lock pointed to by `p'. Spin (possibly forever) until | |
57 | * the lock is available. Test and test and set logic used. | |
9385eb3d | 58 | * These routines have moved to the comm page. |
e9ce8d39 A |
59 | */ |
60 | ||
61 | .text | |
9385eb3d | 62 | .align 2 |
e9ce8d39 | 63 | LEAF(__spin_lock_try) |
9385eb3d | 64 | ba _COMM_PAGE_SPINLOCK_TRY |
e9ce8d39 A |
65 | END(__spin_lock_try) |
66 | ||
67 | .globl _spin_lock | |
68 | LEAF(__spin_lock) | |
69 | _spin_lock: | |
9385eb3d | 70 | ba _COMM_PAGE_SPINLOCK_LOCK |
e9ce8d39 A |
71 | END(__spin_lock) |
72 | ||
73 | /* void spin_unlock(int *p); | |
74 | * | |
75 | * Unlock the lock pointed to by p. | |
76 | */ | |
77 | .globl _spin_unlock | |
78 | LEAF(__spin_unlock) | |
79 | _spin_unlock: | |
9385eb3d | 80 | ba _COMM_PAGE_SPINLOCK_UNLOCK |
e9ce8d39 A |
81 | END(__spin_unlock) |
82 | ||
83 | #elif defined(__i386__) | |
84 | ||
85 | #include <architecture/i386/asm_help.h> | |
86 | ||
87 | /* | |
88 | * void | |
89 | * _spin_lock(p) | |
90 | * int *p; | |
91 | * | |
92 | * Lock the lock pointed to by p. Spin (possibly forever) until the next | |
93 | * lock is available. | |
94 | */ | |
95 | TEXT | |
9385eb3d | 96 | ALIGN |
e9ce8d39 | 97 | |
e9ce8d39 | 98 | LEAF(__spin_lock_try, 0) |
9385eb3d A |
99 | movl $(_COMM_PAGE_SPINLOCK_TRY), %eax |
100 | jmpl %eax | |
101 | ||
102 | ALIGN | |
e9ce8d39 A |
103 | |
104 | .globl _spin_lock | |
105 | LEAF(__spin_lock, 0) | |
106 | _spin_lock: | |
9385eb3d A |
107 | movl $(_COMM_PAGE_SPINLOCK_LOCK), %eax |
108 | jmpl %eax | |
e9ce8d39 A |
109 | |
110 | /* | |
111 | * void | |
112 | * _spin_unlock(p) | |
113 | * int *p; | |
114 | * | |
115 | * Unlock the lock pointed to by p. | |
116 | */ | |
9385eb3d A |
117 | ALIGN |
118 | ||
e9ce8d39 A |
119 | .globl _spin_unlock |
120 | LEAF(__spin_unlock, 0) | |
121 | _spin_unlock: | |
9385eb3d A |
122 | movl $(_COMM_PAGE_SPINLOCK_UNLOCK), %eax |
123 | jmpl %eax | |
e9ce8d39 A |
124 | |
125 | #else | |
126 | #error spin_locks not defined for this architecture | |
127 | #endif |