sunos_sparc.h 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  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_sunos_sparc_H)
  24. #error Do not #include this internal file directly; use public TBB headers instead.
  25. #endif
  26. #define __TBB_machine_sunos_sparc_H
  27. #include <stdint.h>
  28. #include <unistd.h>
  29. #define __TBB_WORDSIZE 8
  30. #define __TBB_BIG_ENDIAN 1 // assumption (hardware may support page-specific bi-endianness)
  31. /** To those working on SPARC hardware. Consider relaxing acquire and release
  32. consistency helpers to no-op (as this port covers TSO mode only). **/
  33. #define __TBB_compiler_fence() __asm__ __volatile__ ("": : :"memory")
  34. #define __TBB_control_consistency_helper() __TBB_compiler_fence()
  35. #define __TBB_acquire_consistency_helper() __TBB_compiler_fence()
  36. #define __TBB_release_consistency_helper() __TBB_compiler_fence()
  37. #define __TBB_full_memory_fence() __asm__ __volatile__("membar #LoadLoad|#LoadStore|#StoreStore|#StoreLoad": : : "memory")
  38. //--------------------------------------------------
  39. // Compare and swap
  40. //--------------------------------------------------
  41. /**
  42. * Atomic CAS for 32 bit values, if *ptr==comparand, then *ptr=value, returns *ptr
  43. * @param ptr pointer to value in memory to be swapped with value if *ptr==comparand
  44. * @param value value to assign *ptr to if *ptr==comparand
  45. * @param comparand value to compare with *ptr
  46. ( @return value originally in memory at ptr, regardless of success
  47. */
  48. static inline int32_t __TBB_machine_cmpswp4(volatile void *ptr, int32_t value, int32_t comparand ){
  49. int32_t result;
  50. __asm__ __volatile__(
  51. "cas\t[%5],%4,%1"
  52. : "=m"(*(int32_t *)ptr), "=r"(result)
  53. : "m"(*(int32_t *)ptr), "1"(value), "r"(comparand), "r"(ptr)
  54. : "memory");
  55. return result;
  56. }
  57. /**
  58. * Atomic CAS for 64 bit values, if *ptr==comparand, then *ptr=value, returns *ptr
  59. * @param ptr pointer to value in memory to be swapped with value if *ptr==comparand
  60. * @param value value to assign *ptr to if *ptr==comparand
  61. * @param comparand value to compare with *ptr
  62. ( @return value originally in memory at ptr, regardless of success
  63. */
  64. static inline int64_t __TBB_machine_cmpswp8(volatile void *ptr, int64_t value, int64_t comparand ){
  65. int64_t result;
  66. __asm__ __volatile__(
  67. "casx\t[%5],%4,%1"
  68. : "=m"(*(int64_t *)ptr), "=r"(result)
  69. : "m"(*(int64_t *)ptr), "1"(value), "r"(comparand), "r"(ptr)
  70. : "memory");
  71. return result;
  72. }
  73. //---------------------------------------------------
  74. // Fetch and add
  75. //---------------------------------------------------
  76. /**
  77. * Atomic fetch and add for 32 bit values, in this case implemented by continuously checking success of atomicity
  78. * @param ptr pointer to value to add addend to
  79. * @param addened value to add to *ptr
  80. * @return value at ptr before addened was added
  81. */
  82. static inline int32_t __TBB_machine_fetchadd4(volatile void *ptr, int32_t addend){
  83. int32_t result;
  84. __asm__ __volatile__ (
  85. "0:\t add\t %3, %4, %0\n" // do addition
  86. "\t cas\t [%2], %3, %0\n" // cas to store result in memory
  87. "\t cmp\t %3, %0\n" // check if value from memory is original
  88. "\t bne,a,pn\t %%icc, 0b\n" // if not try again
  89. "\t mov %0, %3\n" // use branch delay slot to move new value in memory to be added
  90. : "=&r"(result), "=m"(*(int32_t *)ptr)
  91. : "r"(ptr), "r"(*(int32_t *)ptr), "r"(addend), "m"(*(int32_t *)ptr)
  92. : "ccr", "memory");
  93. return result;
  94. }
  95. /**
  96. * Atomic fetch and add for 64 bit values, in this case implemented by continuously checking success of atomicity
  97. * @param ptr pointer to value to add addend to
  98. * @param addened value to add to *ptr
  99. * @return value at ptr before addened was added
  100. */
  101. static inline int64_t __TBB_machine_fetchadd8(volatile void *ptr, int64_t addend){
  102. int64_t result;
  103. __asm__ __volatile__ (
  104. "0:\t add\t %3, %4, %0\n" // do addition
  105. "\t casx\t [%2], %3, %0\n" // cas to store result in memory
  106. "\t cmp\t %3, %0\n" // check if value from memory is original
  107. "\t bne,a,pn\t %%xcc, 0b\n" // if not try again
  108. "\t mov %0, %3\n" // use branch delay slot to move new value in memory to be added
  109. : "=&r"(result), "=m"(*(int64_t *)ptr)
  110. : "r"(ptr), "r"(*(int64_t *)ptr), "r"(addend), "m"(*(int64_t *)ptr)
  111. : "ccr", "memory");
  112. return result;
  113. }
  114. //--------------------------------------------------------
  115. // Logarithm (base two, integer)
  116. //--------------------------------------------------------
  117. static inline int64_t __TBB_machine_lg( uint64_t x ) {
  118. __TBB_ASSERT(x, "__TBB_Log2(0) undefined");
  119. uint64_t count;
  120. // one hot encode
  121. x |= (x >> 1);
  122. x |= (x >> 2);
  123. x |= (x >> 4);
  124. x |= (x >> 8);
  125. x |= (x >> 16);
  126. x |= (x >> 32);
  127. // count 1's
  128. __asm__ ("popc %1, %0" : "=r"(count) : "r"(x) );
  129. return count-1;
  130. }
  131. //--------------------------------------------------------
  132. static inline void __TBB_machine_or( volatile void *ptr, uint64_t value ) {
  133. __asm__ __volatile__ (
  134. "0:\t or\t %2, %3, %%g1\n" // do operation
  135. "\t casx\t [%1], %2, %%g1\n" // cas to store result in memory
  136. "\t cmp\t %2, %%g1\n" // check if value from memory is original
  137. "\t bne,a,pn\t %%xcc, 0b\n" // if not try again
  138. "\t mov %%g1, %2\n" // use branch delay slot to move new value in memory to be added
  139. : "=m"(*(int64_t *)ptr)
  140. : "r"(ptr), "r"(*(int64_t *)ptr), "r"(value), "m"(*(int64_t *)ptr)
  141. : "ccr", "g1", "memory");
  142. }
  143. static inline void __TBB_machine_and( volatile void *ptr, uint64_t value ) {
  144. __asm__ __volatile__ (
  145. "0:\t and\t %2, %3, %%g1\n" // do operation
  146. "\t casx\t [%1], %2, %%g1\n" // cas to store result in memory
  147. "\t cmp\t %2, %%g1\n" // check if value from memory is original
  148. "\t bne,a,pn\t %%xcc, 0b\n" // if not try again
  149. "\t mov %%g1, %2\n" // use branch delay slot to move new value in memory to be added
  150. : "=m"(*(int64_t *)ptr)
  151. : "r"(ptr), "r"(*(int64_t *)ptr), "r"(value), "m"(*(int64_t *)ptr)
  152. : "ccr", "g1", "memory");
  153. }
  154. static inline void __TBB_machine_pause( int32_t delay ) {
  155. // do nothing, inlined, doesn't matter
  156. }
  157. // put 0xff in memory location, return memory value,
  158. // generic trylockbyte puts 0x01, however this is fine
  159. // because all that matters is that 0 is unlocked
  160. static inline bool __TBB_machine_trylockbyte(unsigned char &flag){
  161. unsigned char result;
  162. __asm__ __volatile__ (
  163. "ldstub\t [%2], %0\n"
  164. : "=r"(result), "=m"(flag)
  165. : "r"(&flag), "m"(flag)
  166. : "memory");
  167. return result == 0;
  168. }
  169. #define __TBB_USE_GENERIC_PART_WORD_CAS 1
  170. #define __TBB_USE_GENERIC_PART_WORD_FETCH_ADD 1
  171. #define __TBB_USE_GENERIC_FETCH_STORE 1
  172. #define __TBB_USE_GENERIC_HALF_FENCED_LOAD_STORE 1
  173. #define __TBB_USE_GENERIC_RELAXED_LOAD_STORE 1
  174. #define __TBB_USE_GENERIC_SEQUENTIAL_CONSISTENCY_LOAD_STORE 1
  175. #define __TBB_AtomicOR(P,V) __TBB_machine_or(P,V)
  176. #define __TBB_AtomicAND(P,V) __TBB_machine_and(P,V)
  177. // Definition of other functions
  178. #define __TBB_Pause(V) __TBB_machine_pause(V)
  179. #define __TBB_Log2(V) __TBB_machine_lg(V)
  180. #define __TBB_TryLockByte(P) __TBB_machine_trylockbyte(P)