Loading...
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 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 | /* * Copyright (c) 2007-2012 Apple Inc. All rights reserved. * Copyright (c) 2000-2006 Apple Computer, Inc. All rights reserved. * * @APPLE_OSREFERENCE_LICENSE_HEADER_START@ * * This file contains Original Code and/or Modifications of Original Code * as defined in and that are subject to the Apple Public Source License * Version 2.0 (the 'License'). You may not use this file except in * compliance with the License. The rights granted to you under the License * may not be used to create, or enable the creation or redistribution of, * unlawful or unlicensed copies of an Apple operating system, or to * circumvent, violate, or enable the circumvention or violation of, any * terms of an Apple operating system software license agreement. * * Please obtain a copy of the License at * http://www.opensource.apple.com/apsl/ and read it before using this file. * * The Original Code and all software distributed under the License are * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. * Please see the License for the specific language governing rights and * limitations under the License. * * @APPLE_OSREFERENCE_LICENSE_HEADER_END@ */ /* * Copyright (c) 1999 Apple Computer, Inc. All rights reserved. * * HISTORY * */ #ifndef _OS_OSATOMIC_H #define _OS_OSATOMIC_H #include <libkern/OSBase.h> #include <string.h> #if defined(__cplusplus) extern "C" { #endif #ifdef XNU_KERNEL_PRIVATE /* * The macro SAFE_CAST_PTR() casts one type of pointer to another type, making sure * the data the pointer is referencing is the same size. If it is not, it will cause * a division by zero compiler warning. This is to work around "SInt32" being defined * as "long" on ILP32 and as "int" on LP64, which would require an explicit cast to * "SInt32*" when for instance passing an "int*" to OSAddAtomic() - which masks size * mismatches. * -- var is used, but sizeof does not evaluate the * argument, i.e. we're safe against "++" etc. in var -- */ #define __SAFE_CAST_PTR(type, var) (((type)(var))+(0/(sizeof(*var) == sizeof(*(type)NULL) ? 1 : 0))) #else #define __SAFE_CAST_PTR(type, var) ((type)(var)) #endif /*! * @header * * @abstract * This header declares the OSAtomic group of functions for atomic * reading and updating of values. */ /*! * @function OSCompareAndSwap64 * * @abstract * 64-bit compare and swap operation. * * @discussion * See OSCompareAndSwap. */ extern Boolean OSCompareAndSwap64( UInt64 oldValue, UInt64 newValue, volatile UInt64 * address); #define OSCompareAndSwap64(a, b, c) \ (OSCompareAndSwap64(a, b, __SAFE_CAST_PTR(volatile UInt64*,c))) /*! * @function OSAddAtomic64 * * @abstract * 64-bit atomic add operation. * * @discussion * See OSAddAtomic. */ extern SInt64 OSAddAtomic64( SInt64 theAmount, volatile SInt64 * address); #define OSAddAtomic64(a, b) \ (OSAddAtomic64(a, __SAFE_CAST_PTR(volatile SInt64*,b))) /*! * @function OSIncrementAtomic64 * * @abstract * 64-bit increment. * * @discussion * See OSIncrementAtomic. */ inline static SInt64 OSIncrementAtomic64(volatile SInt64 * address) { return OSAddAtomic64(1LL, address); } /*! * @function OSDecrementAtomic64 * * @abstract * 64-bit decrement. * * @discussion * See OSDecrementAtomic. */ inline static SInt64 OSDecrementAtomic64(volatile SInt64 * address) { return OSAddAtomic64(-1LL, address); } #if XNU_KERNEL_PRIVATE /* Not to be included in headerdoc. * * @function OSAddAtomicLong * * @abstract * 32/64-bit atomic add operation, depending on sizeof(long). * * @discussion * See OSAddAtomic. */ extern long OSAddAtomicLong( long theAmount, volatile long * address); #define OSAddAtomicLong(a, b) \ (OSAddAtomicLong(a, __SAFE_CAST_PTR(volatile long*,b))) /* Not to be included in headerdoc. * * @function OSIncrementAtomicLong * * @abstract * 32/64-bit increment, depending on sizeof(long) * * @discussion * See OSIncrementAtomic. */ inline static long OSIncrementAtomicLong(volatile long * address) { return OSAddAtomicLong(1L, address); } /* Not to be included in headerdoc. * * @function OSDecrementAtomicLong * * @abstract * 32/64-bit decrement, depending on sizeof(long) *@discussion See OSDecrementAtomic. */ inline static long OSDecrementAtomicLong(volatile long * address) { return OSAddAtomicLong(-1L, address); } #endif /* XNU_KERNEL_PRIVATE */ #if XNU_KERNEL_PRIVATE /*! * @function OSCompareAndSwap8 * * @abstract * Compare and swap operation, performed atomically with respect to all devices that participate in the coherency architecture of the platform. * * @discussion * The OSCompareAndSwap8 function compares the value at the specified address with oldVal. The value of newValue is written to the address only if oldValue and the value at the address are equal. OSCompareAndSwap returns true if newValue is written to the address; otherwise, it returns false. * * This function guarantees atomicity only with main system memory. It is specifically unsuitable for use on noncacheable memory such as that in devices; this function cannot guarantee atomicity, for example, on memory mapped from a PCI device. Additionally, this function incorporates a memory barrier on systems with weakly-ordered memory architectures. * * @param oldValue The value to compare at address. * @param newValue The value to write to address if oldValue compares true. * @param address The byte aligned address of the data to update atomically. * @result true if newValue was written to the address. */ extern Boolean OSCompareAndSwap8( UInt8 oldValue, UInt8 newValue, volatile UInt8 * address); #define OSCompareAndSwap8(a, b, c) \ (OSCompareAndSwap8(a, b, __SAFE_CAST_PTR(volatile UInt8*,c))) /*! * @function OSCompareAndSwap16 * * @abstract * Compare and swap operation, performed atomically with respect to all devices that participate in the coherency architecture of the platform. * * @discussion * The OSCompareAndSwap16 function compares the value at the specified address with oldVal. The value of newValue is written to the address only if oldValue and the value at the address are equal. OSCompareAndSwap returns true if newValue is written to the address; otherwise, it returns false. * * This function guarantees atomicity only with main system memory. It is specifically unsuitable for use on noncacheable memory such as that in devices; this function cannot guarantee atomicity, for example, on memory mapped from a PCI device. Additionally, this function incorporates a memory barrier on systems with weakly-ordered memory architectures. * * @param oldValue The value to compare at address. * @param newValue The value to write to address if oldValue compares true. * @param address The 2-byte aligned address of the data to update atomically. * @result true if newValue was written to the address. */ extern Boolean OSCompareAndSwap16( UInt16 oldValue, UInt16 newValue, volatile UInt16 * address); #define OSCompareAndSwap16(a, b, c) \ (OSCompareAndSwap16(a, b, __SAFE_CAST_PTR(volatile UInt16*,c))) #endif /* XNU_KERNEL_PRIVATE */ /*! * @function OSCompareAndSwap * * @abstract * Compare and swap operation, performed atomically with respect to all devices that participate in the coherency architecture of the platform. * * @discussion * The OSCompareAndSwap function compares the value at the specified address with oldVal. The value of newValue is written to the address only if oldValue and the value at the address are equal. OSCompareAndSwap returns true if newValue is written to the address; otherwise, it returns false. * * This function guarantees atomicity only with main system memory. It is specifically unsuitable for use on noncacheable memory such as that in devices; this function cannot guarantee atomicity, for example, on memory mapped from a PCI device. Additionally, this function incorporates a memory barrier on systems with weakly-ordered memory architectures. * * @param oldValue The value to compare at address. * @param newValue The value to write to address if oldValue compares true. * @param address The 4-byte aligned address of the data to update atomically. * @result true if newValue was written to the address. */ extern Boolean OSCompareAndSwap( UInt32 oldValue, UInt32 newValue, volatile UInt32 * address); #define OSCompareAndSwap(a, b, c) \ (OSCompareAndSwap(a, b, __SAFE_CAST_PTR(volatile UInt32*,c))) /*! * @function OSCompareAndSwapPtr * * @abstract * Compare and swap operation, performed atomically with respect to all devices that participate in the coherency architecture of the platform. * * @discussion * The OSCompareAndSwapPtr function compares the pointer-sized value at the specified address with oldVal. The value of newValue is written to the address only if oldValue and the value at the address are equal. OSCompareAndSwapPtr returns true if newValue is written to the address; otherwise, it returns false. * * This function guarantees atomicity only with main system memory. It is specifically unsuitable for use on noncacheable memory such as that in devices; this function cannot guarantee atomicity, for example, on memory mapped from a PCI device. Additionally, this function incorporates a memory barrier on systems with weakly-ordered memory architectures. * @param oldValue The pointer value to compare at address. * @param newValue The pointer value to write to address if oldValue compares true. * @param address The pointer-size aligned address of the data to update atomically. * @result true if newValue was written to the address. */ extern Boolean OSCompareAndSwapPtr( void * oldValue, void * newValue, void * volatile * address); #define OSCompareAndSwapPtr(a, b, c) \ (OSCompareAndSwapPtr(a, b, __SAFE_CAST_PTR(void * volatile *,c))) /*! * @function OSAddAtomic * * @abstract * 32-bit add operation, performed atomically with respect to all devices that participate in the coherency architecture of the platform. * * @discussion * The OSAddAtomic function adds the specified amount to the value at the specified address and returns the original value. * * This function guarantees atomicity only with main system memory. It is specifically unsuitable for use on noncacheable memory such as that in devices; this function cannot guarantee atomicity, for example, on memory mapped from a PCI device. Previous incarnations of this function incorporated a memory barrier on systems with weakly-ordered memory architectures, but current versions contain no barriers. * @param amount The amount to add. * @param address The 4-byte aligned address of the value to update atomically. * @result The value before the addition */ extern SInt32 OSAddAtomic( SInt32 amount, volatile SInt32 * address); #define OSAddAtomic(a, b) \ (OSAddAtomic(a, __SAFE_CAST_PTR(volatile SInt32*,b))) /*! * @function OSAddAtomic16 * * @abstract * 16-bit add operation, performed atomically with respect to all devices that participate in the coherency architecture of the platform. * * @discussion * The OSAddAtomic16 function adds the specified amount to the value at the specified address and returns the original value. * * This function guarantees atomicity only with main system memory. It is specifically unsuitable for use on noncacheable memory such as that in devices; this function cannot guarantee atomicity, for example, on memory mapped from a PCI device. Previous incarnations of this function incorporated a memory barrier on systems with weakly-ordered memory architectures, but current versions contain no barriers. * @param address The 2-byte aligned address of the value to update atomically. * @result The value before the addition */ extern SInt16 OSAddAtomic16( SInt32 amount, volatile SInt16 * address); /*! * @function OSAddAtomic8 * * @abstract * 8-bit add operation, performed atomically with respect to all devices that participate in the coherency architecture of the platform. * * @discussion * The OSAddAtomic8 function adds the specified amount to the value at the specified address and returns the original value. * * This function guarantees atomicity only with main system memory. It is specifically unsuitable for use on noncacheable memory such as that in devices; this function cannot guarantee atomicity, for example, on memory mapped from a PCI device. Previous incarnations of this function incorporated a memory barrier on systems with weakly-ordered memory architectures, but current versions contain no barriers. * @param amount The amount to add. * @param address The address of the value to update atomically. * @result The value before the addition. */ extern SInt8 OSAddAtomic8( SInt32 amount, volatile SInt8 * address); /*! * @function OSIncrementAtomic * * @abstract * 32-bit increment operation, performed atomically with respect to all devices that participate in the coherency architecture of the platform. * * @discussion * The OSIncrementAtomic function increments the value at the specified address by one and returns the original value. * * This function guarantees atomicity only with main system memory. It is specifically unsuitable for use on noncacheable memory such as that in devices; this function cannot guarantee atomicity, for example, on memory mapped from a PCI device. * @param address The 4-byte aligned address of the value to update atomically. * @result The value before the increment. */ extern SInt32 OSIncrementAtomic(volatile SInt32 * address); #define OSIncrementAtomic(a) \ (OSIncrementAtomic(__SAFE_CAST_PTR(volatile SInt32*,a))) /*! * @function OSIncrementAtomic16 * * @abstract * 16-bit increment operation, performed atomically with respect to all devices that participate in the coherency architecture of the platform. * * @discussion * The OSIncrementAtomic16 function increments the value at the specified address by one and returns the original value. * * This function guarantees atomicity only with main system memory. It is specifically unsuitable for use on noncacheable memory such as that in devices; this function cannot guarantee atomicity, for example, on memory mapped from a PCI device. Previous incarnations of this function incorporated a memory barrier on systems with weakly-ordered memory architectures, but current versions contain no barriers. * @param address The 2-byte aligned address of the value to update atomically. * @result The value before the increment. */ extern SInt16 OSIncrementAtomic16(volatile SInt16 * address); /*! * @function OSIncrementAtomic8 * * @abstract * 8-bit increment operation, performed atomically with respect to all devices that participate in the coherency architecture of the platform. * * @discussion * The OSIncrementAtomic8 function increments the value at the specified address by one and returns the original value. * * This function guarantees atomicity only with main system memory. It is specifically unsuitable for use on noncacheable memory such as that in devices; this function cannot guarantee atomicity, for example, on memory mapped from a PCI device. Previous incarnations of this function incorporated a memory barrier on systems with weakly-ordered memory architectures, but current versions contain no barriers. * @param address The address of the value to update atomically. * @result The value before the increment. */ extern SInt8 OSIncrementAtomic8(volatile SInt8 * address); /*! * @function OSDecrementAtomic * * @abstract * 32-bit decrement operation, performed atomically with respect to all devices that participate in the coherency architecture of the platform. * * @discussion * The OSDecrementAtomic function decrements the value at the specified address by one and returns the original value. * * This function guarantees atomicity only with main system memory. It is specifically unsuitable for use on noncacheable memory such as that in devices; this function cannot guarantee atomicity, for example, on memory mapped from a PCI device. Previous incarnations of this function incorporated a memory barrier on systems with weakly-ordered memory architectures, but current versions contain no barriers. * @param address The 4-byte aligned address of the value to update atomically. * @result The value before the decrement. */ extern SInt32 OSDecrementAtomic(volatile SInt32 * address); #define OSDecrementAtomic(a) \ (OSDecrementAtomic(__SAFE_CAST_PTR(volatile SInt32*,a))) /*! * @function OSDecrementAtomic16 * * @abstract * 16-bit decrement operation, performed atomically with respect to all devices that participate in the coherency architecture of the platform. * * @discussion * The OSDecrementAtomic16 function decrements the value at the specified address by one and returns the original value. * * This function guarantees atomicity only with main system memory. It is specifically unsuitable for use on noncacheable memory such as that in devices; this function cannot guarantee atomicity, for example, on memory mapped from a PCI device. Previous incarnations of this function incorporated a memory barrier on systems with weakly-ordered memory architectures, but current versions contain no barriers. * @param address The 2-byte aligned address of the value to update atomically. * @result The value before the decrement. */ extern SInt16 OSDecrementAtomic16(volatile SInt16 * address); /*! * @function OSDecrementAtomic8 * * @abstract * 8-bit decrement operation, performed atomically with respect to all devices that participate in the coherency architecture of the platform. * * @discussion * The OSDecrementAtomic8 function decrements the value at the specified address by one and returns the original value. * * This function guarantees atomicity only with main system memory. It is specifically unsuitable for use on noncacheable memory such as that in devices; this function cannot guarantee atomicity, for example, on memory mapped from a PCI device. Previous incarnations of this function incorporated a memory barrier on systems with weakly-ordered memory architectures, but current versions contain no barriers. * @param address The address of the value to update atomically. * @result The value before the decrement. */ extern SInt8 OSDecrementAtomic8(volatile SInt8 * address); /*! * @function OSBitAndAtomic * * @abstract * 32-bit logical and operation, performed atomically with respect to all devices that participate in the coherency architecture of the platform. * * @discussion * The OSBitAndAtomic function logically ands the bits of the specified mask into the value at the specified address and returns the original value. * * This function guarantees atomicity only with main system memory. It is specifically unsuitable for use on noncacheable memory such as that in devices; this function cannot guarantee atomicity, for example, on memory mapped from a PCI device. Previous incarnations of this function incorporated a memory barrier on systems with weakly-ordered memory architectures, but current versions contain no barriers.. * @param mask The mask to logically and with the value. * @param address The 4-byte aligned address of the value to update atomically. * @result The value before the bitwise operation */ extern UInt32 OSBitAndAtomic( UInt32 mask, volatile UInt32 * address); #define OSBitAndAtomic(a, b) \ (OSBitAndAtomic(a, __SAFE_CAST_PTR(volatile UInt32*,b))) /*! * @function OSBitAndAtomic16 * * @abstract * 16-bit logical and operation, performed atomically with respect to all devices that participate in the coherency architecture of the platform. * * @discussion * The OSBitAndAtomic16 function logically ands the bits of the specified mask into the value at the specified address and returns the original value. * * This function guarantees atomicity only with main system memory. It is specifically unsuitable for use on noncacheable memory such as that in devices; this function cannot guarantee atomicity, for example, on memory mapped from a PCI device. * @param mask The mask to logically and with the value. * @param address The 2-byte aligned address of the value to update atomically. * @result The value before the bitwise operation. */ extern UInt16 OSBitAndAtomic16( UInt32 mask, volatile UInt16 * address); /*! * @function OSBitAndAtomic8 * * @abstract * 8-bit logical and operation, performed atomically with respect to all devices that participate in the coherency architecture of the platform. * * @discussion * The OSBitAndAtomic8 function logically ands the bits of the specified mask into the value at the specified address and returns the original value. * * This function guarantees atomicity only with main system memory. It is specifically unsuitable for use on noncacheable memory such as that in devices; this function cannot guarantee atomicity, for example, on memory mapped from a PCI device. * @param mask The mask to logically and with the value. * @param address The address of the value to update atomically. * @result The value before the bitwise operation. */ extern UInt8 OSBitAndAtomic8( UInt32 mask, volatile UInt8 * address); /*! * @function OSBitOrAtomic * * @abstract * 32-bit logical or operation, performed atomically with respect to all devices that participate in the coherency architecture of the platform. * * @discussion * The OSBitOrAtomic function logically ors the bits of the specified mask into the value at the specified address and returns the original value. * * This function guarantees atomicity only with main system memory. It is specifically unsuitable for use on noncacheable memory such as that in devices; this function cannot guarantee atomicity, for example, on memory mapped from a PCI device. * @param mask The mask to logically or with the value. * @param address The 4-byte aligned address of the value to update atomically. * @result The value before the bitwise operation. */ extern UInt32 OSBitOrAtomic( UInt32 mask, volatile UInt32 * address); #define OSBitOrAtomic(a, b) \ (OSBitOrAtomic(a, __SAFE_CAST_PTR(volatile UInt32*,b))) /*! * @function OSBitOrAtomic16 * * @abstract * 16-bit logical or operation, performed atomically with respect to all devices that participate in the coherency architecture of the platform. * * @discussion * The OSBitOrAtomic16 function logically ors the bits of the specified mask into the value at the specified address and returns the original value. * * This function guarantees atomicity only with main system memory. It is specifically unsuitable for use on noncacheable memory such as that in devices; this function cannot guarantee atomicity, for example, on memory mapped from a PCI device. * @param mask The mask to logically or with the value. * @param address The 2-byte aligned address of the value to update atomically. * @result The value before the bitwise operation. */ extern UInt16 OSBitOrAtomic16( UInt32 mask, volatile UInt16 * address); /*! * @function OSBitOrAtomic8 * * @abstract * 8-bit logical or operation, performed atomically with respect to all devices that participate in the coherency architecture of the platform. * * This function guarantees atomicity only with main system memory. It is specifically unsuitable for use on noncacheable memory such as that in devices; this function cannot guarantee atomicity, for example, on memory mapped from a PCI device. * * @discussion * The OSBitOrAtomic8 function logically ors the bits of the specified mask into the value at the specified address and returns the original value. * @param mask The mask to logically or with the value. * @param address The address of the value to update atomically. * @result The value before the bitwise operation. */ extern UInt8 OSBitOrAtomic8( UInt32 mask, volatile UInt8 * address); /*! * @function OSBitXorAtomic * * @abstract * 32-bit logical xor operation, performed atomically with respect to all devices that participate in the coherency architecture of the platform. * * This function guarantees atomicity only with main system memory. It is specifically unsuitable for use on noncacheable memory such as that in devices; this function cannot guarantee atomicity, for example, on memory mapped from a PCI device. * * @discussion * The OSBitXorAtomic function logically xors the bits of the specified mask into the value at the specified address and returns the original value. * @param mask The mask to logically or with the value. * @param address The 4-byte aligned address of the value to update atomically. * @result The value before the bitwise operation. */ extern UInt32 OSBitXorAtomic( UInt32 mask, volatile UInt32 * address); #define OSBitXorAtomic(a, b) \ (OSBitXorAtomic(a, __SAFE_CAST_PTR(volatile UInt32*,b))) /*! * @function OSBitXorAtomic16 * * @abstract * 16-bit logical xor operation, performed atomically with respect to all devices that participate in the coherency architecture of the platform. * * @discussion * The OSBitXorAtomic16 function logically xors the bits of the specified mask into the value at the specified address and returns the original value. * * This function guarantees atomicity only with main system memory. It is specifically unsuitable for use on noncacheable memory such as that in devices; this function cannot guarantee atomicity, for example, on memory mapped from a PCI device. * @param mask The mask to logically or with the value. * @param address The 2-byte aligned address of the value to update atomically. * @result The value before the bitwise operation. */ extern UInt16 OSBitXorAtomic16( UInt32 mask, volatile UInt16 * address); /*! * @function OSBitXorAtomic8 * * @abstract * 8-bit logical xor operation, performed atomically with respect to all devices that participate in the coherency architecture of the platform. * * This function guarantees atomicity only with main system memory. It is specifically unsuitable for use on noncacheable memory such as that in devices; this function cannot guarantee atomicity, for example, on memory mapped from a PCI device. * * @discussion * The OSBitXorAtomic8 function logically xors the bits of the specified mask into the value at the specified address and returns the original value. * @param mask The mask to logically or with the value. * @param address The address of the value to update atomically. * @result The value before the bitwise operation. */ extern UInt8 OSBitXorAtomic8( UInt32 mask, volatile UInt8 * address); /*! * @function OSTestAndSet * * @abstract * Bit test and set operation, performed atomically with respect to all devices that participate in the coherency architecture of the platform. * * This function guarantees atomicity only with main system memory. It is specifically unsuitable for use on noncacheable memory such as that in devices; this function cannot guarantee atomicity, for example, on memory mapped from a PCI device. * * @discussion * The OSTestAndSet function sets a single bit in a byte at a specified address. It returns true if the bit was already set, false otherwise. * @param bit The bit number in the range 0 through 7. Bit 0 is the most significant. * @param startAddress The address of the byte to update atomically. * @result true if the bit was already set, false otherwise. */ extern Boolean OSTestAndSet( UInt32 bit, volatile UInt8 * startAddress); /*! * @function OSTestAndClear * * @abstract * Bit test and clear operation, performed atomically with respect to all devices that participate in the coherency architecture of the platform. * * @discussion * The OSTestAndClear function clears a single bit in a byte at a specified address. It returns true if the bit was already clear, false otherwise. * * This function guarantees atomicity only with main system memory. It is specifically unsuitable for use on noncacheable memory such as that in devices; this function cannot guarantee atomicity, for example, on memory mapped from a PCI device. * @param bit The bit number in the range 0 through 7. Bit 0 is the most significant. * @param startAddress The address of the byte to update atomically. * @result true if the bit was already clear, false otherwise. */ extern Boolean OSTestAndClear( UInt32 bit, volatile UInt8 * startAddress); /*! * @defined OS_SPINLOCK_INIT * * @abstract * The default value for an OSSpinLock. * * @discussion * The convention is that unlocked is zero, locked is nonzero. */ #define OS_SPINLOCK_INIT 0 /*! * @typedef OSSpinLock * * @abstract * Data type for a spinlock. * * @discussion * You should always initialize a spinlock to OS_SPINLOCK_INIT before using it. */ typedef SInt32 OSSpinLock; #ifdef PRIVATE /*! * @function OSSpinLockTry * * @abstract * Locks a spinlock if it would not block. * * @discussion * Multiprocessor locks used within the shared memory area between the kernel and event system. These must work in both user and kernel mode. * * @result * Returns false if the lock was already held by another thread, true if it took the lock successfully. */ extern Boolean OSSpinLockTry(volatile OSSpinLock * lock); /*! * @function OSSpinLockUnlock * * @abstract * Unlocks a spinlock. * * @discussion * Unlocks a spinlock. */ extern void OSSpinLockUnlock(volatile OSSpinLock * lock); #endif /* PRIVATE */ /*! * @function OSSynchronizeIO * * @abstract * The OSSynchronizeIO routine ensures orderly load and store operations to noncached memory mapped I/O devices. * * @discussion * The OSSynchronizeIO routine ensures orderly load and store operations to noncached memory mapped I/O devices. It executes the eieio instruction on PowerPC processors. */ #if defined(__arm__) || defined(__arm64__) extern void OSSynchronizeIO(void); #else static __inline__ void OSSynchronizeIO(void) { } #endif #if defined(KERNEL_PRIVATE) #if defined(__arm__) || defined(__arm64__) static inline void OSMemoryBarrier(void) { __asm__ volatile ("dmb ish" ::: "memory"); } #elif defined(__i386__) || defined(__x86_64__) #if defined(XNU_KERNEL_PRIVATE) static inline void OSMemoryBarrier(void) { __asm__ volatile ("mfence" ::: "memory"); } #endif /* XNU_KERNEL_PRIVATE */ #endif #endif /* KERNEL_PRIVATE */ #if defined(__cplusplus) } #endif #endif /* ! _OS_OSATOMIC_H */ |