macos_common.h 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. /*
  2. Copyright 2005-2013 Intel Corporation. All Rights Reserved.
  3. This file is part of Threading Building Blocks.
  4. Threading Building Blocks is free software; you can redistribute it
  5. and/or modify it under the terms of the GNU General Public License
  6. version 2 as published by the Free Software Foundation.
  7. Threading Building Blocks is distributed in the hope that it will be
  8. useful, but WITHOUT ANY WARRANTY; without even the implied warranty
  9. of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. GNU General Public License for more details.
  11. You should have received a copy of the GNU General Public License
  12. along with Threading Building Blocks; if not, write to the Free Software
  13. Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  14. As a special exception, you may use this file as part of a free software
  15. library without restriction. Specifically, if other files instantiate
  16. templates or use macros or inline functions from this file, or you compile
  17. this file and link it with other files to produce an executable, this
  18. file does not by itself cause the resulting executable to be covered by
  19. the GNU General Public License. This exception does not however
  20. invalidate any other reasons why the executable file might be covered by
  21. the GNU General Public License.
  22. */
  23. #if !defined(__TBB_machine_H) || defined(__TBB_machine_macos_common_H)
  24. #error Do not #include this internal file directly; use public TBB headers instead.
  25. #endif
  26. #define __TBB_machine_macos_common_H
  27. #include <sched.h>
  28. #define __TBB_Yield() sched_yield()
  29. // __TBB_HardwareConcurrency
  30. #include <sys/types.h>
  31. #include <sys/sysctl.h>
  32. static inline int __TBB_macos_available_cpu() {
  33. int name[2] = {CTL_HW, HW_AVAILCPU};
  34. int ncpu;
  35. size_t size = sizeof(ncpu);
  36. sysctl( name, 2, &ncpu, &size, NULL, 0 );
  37. return ncpu;
  38. }
  39. #define __TBB_HardwareConcurrency() __TBB_macos_available_cpu()
  40. #ifndef __TBB_full_memory_fence
  41. // TBB has not recognized the architecture (none of the architecture abstraction
  42. // headers was included).
  43. #define __TBB_UnknownArchitecture 1
  44. #endif
  45. #if __TBB_UnknownArchitecture
  46. // Implementation of atomic operations based on OS provided primitives
  47. #include <libkern/OSAtomic.h>
  48. static inline int64_t __TBB_machine_cmpswp8_OsX(volatile void *ptr, int64_t value, int64_t comparand)
  49. {
  50. __TBB_ASSERT( tbb::internal::is_aligned(ptr,8), "address not properly aligned for Mac OS atomics");
  51. int64_t* address = (int64_t*)ptr;
  52. while( !OSAtomicCompareAndSwap64Barrier(comparand, value, address) ){
  53. #if __TBB_WORDSIZE==8
  54. int64_t snapshot = *address;
  55. #else
  56. int64_t snapshot = OSAtomicAdd64( 0, address );
  57. #endif
  58. if( snapshot!=comparand ) return snapshot;
  59. }
  60. return comparand;
  61. }
  62. #define __TBB_machine_cmpswp8 __TBB_machine_cmpswp8_OsX
  63. #endif /* __TBB_UnknownArchitecture */
  64. #if __TBB_UnknownArchitecture
  65. #ifndef __TBB_WORDSIZE
  66. #define __TBB_WORDSIZE 4
  67. #endif
  68. #ifdef __TBB_BIG_ENDIAN
  69. // Already determined based on hardware architecture.
  70. #elif __BIG_ENDIAN__
  71. #define __TBB_BIG_ENDIAN 1
  72. #elif __LITTLE_ENDIAN__
  73. #define __TBB_BIG_ENDIAN 0
  74. #else
  75. #define __TBB_BIG_ENDIAN -1 // not currently supported
  76. #endif
  77. /** As this generic implementation has absolutely no information about underlying
  78. hardware, its performance most likely will be sub-optimal because of full memory
  79. fence usages where a more lightweight synchronization means (or none at all)
  80. could suffice. Thus if you use this header to enable TBB on a new platform,
  81. consider forking it and relaxing below helpers as appropriate. **/
  82. #define __TBB_control_consistency_helper() OSMemoryBarrier()
  83. #define __TBB_acquire_consistency_helper() OSMemoryBarrier()
  84. #define __TBB_release_consistency_helper() OSMemoryBarrier()
  85. #define __TBB_full_memory_fence() OSMemoryBarrier()
  86. static inline int32_t __TBB_machine_cmpswp4(volatile void *ptr, int32_t value, int32_t comparand)
  87. {
  88. __TBB_ASSERT( tbb::internal::is_aligned(ptr,4), "address not properly aligned for Mac OS atomics");
  89. int32_t* address = (int32_t*)ptr;
  90. while( !OSAtomicCompareAndSwap32Barrier(comparand, value, address) ){
  91. int32_t snapshot = *address;
  92. if( snapshot!=comparand ) return snapshot;
  93. }
  94. return comparand;
  95. }
  96. static inline int32_t __TBB_machine_fetchadd4(volatile void *ptr, int32_t addend)
  97. {
  98. __TBB_ASSERT( tbb::internal::is_aligned(ptr,4), "address not properly aligned for Mac OS atomics");
  99. return OSAtomicAdd32Barrier(addend, (int32_t*)ptr) - addend;
  100. }
  101. static inline int64_t __TBB_machine_fetchadd8(volatile void *ptr, int64_t addend)
  102. {
  103. __TBB_ASSERT( tbb::internal::is_aligned(ptr,8), "address not properly aligned for Mac OS atomics");
  104. return OSAtomicAdd64Barrier(addend, (int64_t*)ptr) - addend;
  105. }
  106. #define __TBB_USE_GENERIC_PART_WORD_CAS 1
  107. #define __TBB_USE_GENERIC_PART_WORD_FETCH_ADD 1
  108. #define __TBB_USE_GENERIC_FETCH_STORE 1
  109. #define __TBB_USE_GENERIC_HALF_FENCED_LOAD_STORE 1
  110. #define __TBB_USE_GENERIC_RELAXED_LOAD_STORE 1
  111. #if __TBB_WORDSIZE == 4
  112. #define __TBB_USE_GENERIC_DWORD_LOAD_STORE 1
  113. #endif
  114. #define __TBB_USE_GENERIC_SEQUENTIAL_CONSISTENCY_LOAD_STORE 1
  115. #endif /* __TBB_UnknownArchitecture */