]>
git.saurik.com Git - apple/xnu.git/blob - libkern/gen/OSAtomicOperations.c
2 * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * The contents of this file constitute Original Code as defined in and
7 * are subject to the Apple Public Source License Version 1.1 (the
8 * "License"). You may not use this file except in compliance with the
9 * License. Please obtain a copy of the License at
10 * http://www.apple.com/publicsource and read it before using this file.
12 * This Original Code and all software distributed under the License are
13 * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
14 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
15 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the
17 * License for the specific language governing rights and limitations
20 * @APPLE_LICENSE_HEADER_END@
23 #include <libkern/OSAtomic.h>
34 * these are _the_ atomic operations, currently cast atop CompareAndSwap,
35 * which is implemented in assembler. if we are worried about the cost of
36 * this layering (we shouldn't be), then all this stuff could be
37 * implemented in assembler, as it is in MacOS8/9
38 * (derived from SuperMario/NativeLibs/IO/DriverServices/Synchronization.s,
39 * which I wrote for NuKernel in a previous life with a different last name...)
41 * native Boolean CompareAndSwap(UInt32 oldValue, UInt32 newValue, UInt32 * oldValuePtr);
46 SInt32
OSAddAtomic(SInt32 amount
, SInt32
* value
)
53 newValue
= oldValue
+ amount
;
54 } while (! OSCompareAndSwap((UInt32
) oldValue
, (UInt32
) newValue
, (UInt32
*) value
));
59 SInt32
OSIncrementAtomic(SInt32
* value
)
61 return OSAddAtomic(1, value
);
64 SInt32
OSDecrementAtomic(SInt32
* value
)
66 return OSAddAtomic(-1, value
);
71 static UInt32
OSBitwiseAtomic(UInt32 and_mask
, UInt32 or_mask
, UInt32 xor_mask
, UInt32
* value
)
78 newValue
= ((oldValue
& and_mask
) | or_mask
) ^ xor_mask
;
79 } while (! OSCompareAndSwap(oldValue
, newValue
, value
));
84 UInt32
OSBitAndAtomic(UInt32 mask
, UInt32
* value
)
86 return OSBitwiseAtomic(mask
, 0, 0, value
);
89 UInt32
OSBitOrAtomic(UInt32 mask
, UInt32
* value
)
91 return OSBitwiseAtomic((UInt32
) -1, mask
, 0, value
);
94 UInt32
OSBitXorAtomic(UInt32 mask
, UInt32
* value
)
96 return OSBitwiseAtomic((UInt32
) -1, 0, mask
, value
);
100 static Boolean
OSCompareAndSwap8(UInt8 oldValue8
, UInt8 newValue8
, UInt8
* value8
)
102 UInt32 mask
= 0x000000ff;
103 UInt32 newbits
= (UInt32
) newValue8
;
105 UInt32 alignment
= ((UInt32
) value8
) & (sizeof(UInt32
) - 1);
114 value
= (UInt32
*) value8
;
118 value
= (UInt32
*) (value8
+ 1);
122 value
= (UInt32
*) (value8
+ 2);
126 value
= (UInt32
*) (value8
+ 3);
135 newValue
= (oldValue
& ~mask
) | (newbits
& mask
);
137 return OSCompareAndSwap(oldValue
, newValue
, value
);
140 static Boolean
OSTestAndSetClear(UInt32 bit
, Boolean wantSet
, UInt8
* startAddress
)
146 startAddress
+= (bit
/ 8);
147 mask
<<= (7 - (bit
% 8));
148 wantValue
= wantSet
? mask
: 0;
151 oldValue
= *startAddress
;
152 if ((oldValue
& mask
) == wantValue
) {
155 } while (! OSCompareAndSwap8(oldValue
, (oldValue
& ~mask
) | wantValue
, startAddress
));
157 return (oldValue
& mask
) == wantValue
;
160 Boolean
OSTestAndSet(UInt32 bit
, UInt8
* startAddress
)
162 return OSTestAndSetClear(bit
, true, startAddress
);
165 Boolean
OSTestAndClear(UInt32 bit
, UInt8
* startAddress
)
167 return OSTestAndSetClear(bit
, false, startAddress
);
170 void * OSDequeueAtomic(void ** inList
, SInt32 inOffset
)
176 oldListHead
= *inList
;
177 if (oldListHead
== NULL
) {
181 newListHead
= *(void **) (((char *) oldListHead
) + inOffset
);
182 } while (! OSCompareAndSwap((UInt32
)oldListHead
,
183 (UInt32
)newListHead
, (UInt32
*)inList
));
188 void OSEnqueueAtomic(void ** inList
, void * inNewLink
, SInt32 inOffset
)
191 void * newListHead
= inNewLink
;
192 void ** newLinkNextPtr
= (void **) (((char *) inNewLink
) + inOffset
);
195 oldListHead
= *inList
;
196 *newLinkNextPtr
= oldListHead
;
197 } while (! OSCompareAndSwap((UInt32
)oldListHead
, (UInt32
)newListHead
,
202 * silly unaligned versions
205 SInt8
OSIncrementAtomic8(SInt8
* value
)
207 return OSAddAtomic8(1, value
);
210 SInt8
OSDecrementAtomic8(SInt8
* value
)
212 return OSAddAtomic8(-1, value
);
215 SInt8
OSAddAtomic8(SInt32 amount
, SInt8
* value
)
222 newValue
= oldValue
+ amount
;
223 } while (! OSCompareAndSwap8((UInt8
) oldValue
, (UInt8
) newValue
, (UInt8
*) value
));
228 static UInt8
OSBitwiseAtomic8(UInt32 and_mask
, UInt32 or_mask
, UInt32 xor_mask
, UInt8
* value
)
235 newValue
= ((oldValue
& and_mask
) | or_mask
) ^ xor_mask
;
236 } while (! OSCompareAndSwap8(oldValue
, newValue
, value
));
241 UInt8
OSBitAndAtomic8(UInt32 mask
, UInt8
* value
)
243 return OSBitwiseAtomic8(mask
, 0, 0, value
);
246 UInt8
OSBitOrAtomic8(UInt32 mask
, UInt8
* value
)
248 return OSBitwiseAtomic8((UInt32
) -1, mask
, 0, value
);
251 UInt8
OSBitXorAtomic8(UInt32 mask
, UInt8
* value
)
253 return OSBitwiseAtomic8((UInt32
) -1, 0, mask
, value
);
257 static Boolean
OSCompareAndSwap16(UInt16 oldValue16
, UInt16 newValue16
, UInt16
* value16
)
259 UInt32 mask
= 0x0000ffff;
260 UInt32 newbits
= (UInt32
) newValue16
;
262 UInt32 alignment
= ((UInt32
) value16
) & (sizeof(UInt32
) - 1);
267 if (alignment
== 2) {
268 value
= (UInt32
*) (value16
- 1);
272 // assert(alignment == 0);
273 value
= (UInt32
*) value16
;
281 newValue
= (oldValue
& ~mask
) | (newbits
& mask
);
283 return OSCompareAndSwap(oldValue
, newValue
, value
);
286 SInt16
OSIncrementAtomic16(SInt16
* value
)
288 return OSAddAtomic16(1, value
);
291 SInt16
OSDecrementAtomic16(SInt16
* value
)
293 return OSAddAtomic16(-1, value
);
296 SInt16
OSAddAtomic16(SInt32 amount
, SInt16
* value
)
303 newValue
= oldValue
+ amount
;
304 } while (! OSCompareAndSwap16((UInt16
) oldValue
, (UInt16
) newValue
, (UInt16
*) value
));
309 static UInt16
OSBitwiseAtomic16(UInt32 and_mask
, UInt32 or_mask
, UInt32 xor_mask
, UInt16
* value
)
316 newValue
= ((oldValue
& and_mask
) | or_mask
) ^ xor_mask
;
317 } while (! OSCompareAndSwap16(oldValue
, newValue
, value
));
322 UInt16
OSBitAndAtomic16(UInt32 mask
, UInt16
* value
)
324 return OSBitwiseAtomic16(mask
, 0, 0, value
);
327 UInt16
OSBitOrAtomic16(UInt32 mask
, UInt16
* value
)
329 return OSBitwiseAtomic16((UInt32
) -1, mask
, 0, value
);
332 UInt16
OSBitXorAtomic16(UInt32 mask
, UInt16
* value
)
334 return OSBitwiseAtomic16((UInt32
) -1, 0, mask
, value
);