linux_ia32.h 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231
  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_linux_ia32_H)
  24. #error Do not #include this internal file directly; use public TBB headers instead.
  25. #endif
  26. #define __TBB_machine_linux_ia32_H
  27. #include <stdint.h>
  28. #include "gcc_ia32_common.h"
  29. #define __TBB_WORDSIZE 4
  30. #define __TBB_BIG_ENDIAN 0
  31. #define __TBB_compiler_fence() __asm__ __volatile__("": : :"memory")
  32. #define __TBB_control_consistency_helper() __TBB_compiler_fence()
  33. #define __TBB_acquire_consistency_helper() __TBB_compiler_fence()
  34. #define __TBB_release_consistency_helper() __TBB_compiler_fence()
  35. #define __TBB_full_memory_fence() __asm__ __volatile__("mfence": : :"memory")
  36. #if __TBB_ICC_ASM_VOLATILE_BROKEN
  37. #define __TBB_VOLATILE
  38. #else
  39. #define __TBB_VOLATILE volatile
  40. #endif
  41. #define __TBB_MACHINE_DEFINE_ATOMICS(S,T,X,R) \
  42. static inline T __TBB_machine_cmpswp##S (volatile void *ptr, T value, T comparand ) \
  43. { \
  44. T result; \
  45. \
  46. __asm__ __volatile__("lock\ncmpxchg" X " %2,%1" \
  47. : "=a"(result), "=m"(*(__TBB_VOLATILE T*)ptr) \
  48. : "q"(value), "0"(comparand), "m"(*(__TBB_VOLATILE T*)ptr) \
  49. : "memory"); \
  50. return result; \
  51. } \
  52. \
  53. static inline T __TBB_machine_fetchadd##S(volatile void *ptr, T addend) \
  54. { \
  55. T result; \
  56. __asm__ __volatile__("lock\nxadd" X " %0,%1" \
  57. : R (result), "=m"(*(__TBB_VOLATILE T*)ptr) \
  58. : "0"(addend), "m"(*(__TBB_VOLATILE T*)ptr) \
  59. : "memory"); \
  60. return result; \
  61. } \
  62. \
  63. static inline T __TBB_machine_fetchstore##S(volatile void *ptr, T value) \
  64. { \
  65. T result; \
  66. __asm__ __volatile__("lock\nxchg" X " %0,%1" \
  67. : R (result), "=m"(*(__TBB_VOLATILE T*)ptr) \
  68. : "0"(value), "m"(*(__TBB_VOLATILE T*)ptr) \
  69. : "memory"); \
  70. return result; \
  71. } \
  72. __TBB_MACHINE_DEFINE_ATOMICS(1,int8_t,"","=q")
  73. __TBB_MACHINE_DEFINE_ATOMICS(2,int16_t,"","=r")
  74. __TBB_MACHINE_DEFINE_ATOMICS(4,int32_t,"l","=r")
  75. #if __INTEL_COMPILER
  76. #pragma warning( push )
  77. // reference to EBX in a function requiring stack alignment
  78. #pragma warning( disable: 998 )
  79. #endif
  80. static inline int64_t __TBB_machine_cmpswp8 (volatile void *ptr, int64_t value, int64_t comparand ) {
  81. #if __TBB_GCC_BUILTIN_ATOMICS_PRESENT
  82. return __sync_val_compare_and_swap( reinterpret_cast<volatile int64_t*>(ptr), comparand, value );
  83. #else /* !__TBB_GCC_BUILTIN_ATOMICS_PRESENT */
  84. //TODO: look like ICC 13.0 has some issues with this code, investigate it more deeply
  85. int64_t result;
  86. union {
  87. int64_t i64;
  88. int32_t i32[2];
  89. };
  90. i64 = value;
  91. #if __PIC__
  92. /* compiling position-independent code */
  93. // EBX register preserved for compliance with position-independent code rules on IA32
  94. int32_t tmp;
  95. __asm__ __volatile__ (
  96. "movl %%ebx,%2\n\t"
  97. "movl %5,%%ebx\n\t"
  98. #if __GNUC__==3
  99. "lock\n\t cmpxchg8b %1\n\t"
  100. #else
  101. "lock\n\t cmpxchg8b (%3)\n\t"
  102. #endif
  103. "movl %2,%%ebx"
  104. : "=A"(result)
  105. , "=m"(*(__TBB_VOLATILE int64_t *)ptr)
  106. , "=m"(tmp)
  107. #if __GNUC__==3
  108. : "m"(*(__TBB_VOLATILE int64_t *)ptr)
  109. #else
  110. : "SD"(ptr)
  111. #endif
  112. , "0"(comparand)
  113. , "m"(i32[0]), "c"(i32[1])
  114. : "memory"
  115. #if __INTEL_COMPILER
  116. ,"ebx"
  117. #endif
  118. );
  119. #else /* !__PIC__ */
  120. __asm__ __volatile__ (
  121. "lock\n\t cmpxchg8b %1\n\t"
  122. : "=A"(result), "=m"(*(__TBB_VOLATILE int64_t *)ptr)
  123. : "m"(*(__TBB_VOLATILE int64_t *)ptr)
  124. , "0"(comparand)
  125. , "b"(i32[0]), "c"(i32[1])
  126. : "memory"
  127. );
  128. #endif /* __PIC__ */
  129. return result;
  130. #endif /* !__TBB_GCC_BUILTIN_ATOMICS_PRESENT */
  131. }
  132. #if __INTEL_COMPILER
  133. #pragma warning( pop )
  134. #endif // warning 998 is back
  135. static inline void __TBB_machine_or( volatile void *ptr, uint32_t addend ) {
  136. __asm__ __volatile__("lock\norl %1,%0" : "=m"(*(__TBB_VOLATILE uint32_t *)ptr) : "r"(addend), "m"(*(__TBB_VOLATILE uint32_t *)ptr) : "memory");
  137. }
  138. static inline void __TBB_machine_and( volatile void *ptr, uint32_t addend ) {
  139. __asm__ __volatile__("lock\nandl %1,%0" : "=m"(*(__TBB_VOLATILE uint32_t *)ptr) : "r"(addend), "m"(*(__TBB_VOLATILE uint32_t *)ptr) : "memory");
  140. }
  141. //TODO: Check if it possible and profitable for IA-32 on (Linux and Windows)
  142. //to use of 64-bit load/store via floating point registers together with full fence
  143. //for sequentially consistent load/store, instead of CAS.
  144. #if __clang__
  145. #define __TBB_fildq "fildll"
  146. #define __TBB_fistpq "fistpll"
  147. #else
  148. #define __TBB_fildq "fildq"
  149. #define __TBB_fistpq "fistpq"
  150. #endif
  151. static inline int64_t __TBB_machine_aligned_load8 (const volatile void *ptr) {
  152. __TBB_ASSERT(tbb::internal::is_aligned(ptr,8),"__TBB_machine_aligned_load8 should be used with 8 byte aligned locations only \n");
  153. int64_t result;
  154. __asm__ __volatile__ ( __TBB_fildq " %1\n\t"
  155. __TBB_fistpq " %0" : "=m"(result) : "m"(*(const __TBB_VOLATILE uint64_t*)ptr) : "memory" );
  156. return result;
  157. }
  158. static inline void __TBB_machine_aligned_store8 (volatile void *ptr, int64_t value ) {
  159. __TBB_ASSERT(tbb::internal::is_aligned(ptr,8),"__TBB_machine_aligned_store8 should be used with 8 byte aligned locations only \n");
  160. // Aligned store
  161. __asm__ __volatile__ ( __TBB_fildq " %1\n\t"
  162. __TBB_fistpq " %0" : "=m"(*(__TBB_VOLATILE int64_t*)ptr) : "m"(value) : "memory" );
  163. }
  164. static inline int64_t __TBB_machine_load8 (const volatile void *ptr) {
  165. #if __TBB_FORCE_64BIT_ALIGNMENT_BROKEN
  166. if( tbb::internal::is_aligned(ptr,8)) {
  167. #endif
  168. return __TBB_machine_aligned_load8(ptr);
  169. #if __TBB_FORCE_64BIT_ALIGNMENT_BROKEN
  170. } else {
  171. // Unaligned load
  172. return __TBB_machine_cmpswp8(const_cast<void*>(ptr),0,0);
  173. }
  174. #endif
  175. }
  176. //! Handles misaligned 8-byte store
  177. /** Defined in tbb_misc.cpp */
  178. extern "C" void __TBB_machine_store8_slow( volatile void *ptr, int64_t value );
  179. extern "C" void __TBB_machine_store8_slow_perf_warning( volatile void *ptr );
  180. static inline void __TBB_machine_store8(volatile void *ptr, int64_t value) {
  181. #if __TBB_FORCE_64BIT_ALIGNMENT_BROKEN
  182. if( tbb::internal::is_aligned(ptr,8)) {
  183. #endif
  184. __TBB_machine_aligned_store8(ptr,value);
  185. #if __TBB_FORCE_64BIT_ALIGNMENT_BROKEN
  186. } else {
  187. // Unaligned store
  188. #if TBB_USE_PERFORMANCE_WARNINGS
  189. __TBB_machine_store8_slow_perf_warning(ptr);
  190. #endif /* TBB_USE_PERFORMANCE_WARNINGS */
  191. __TBB_machine_store8_slow(ptr,value);
  192. }
  193. #endif
  194. }
  195. // Machine specific atomic operations
  196. #define __TBB_AtomicOR(P,V) __TBB_machine_or(P,V)
  197. #define __TBB_AtomicAND(P,V) __TBB_machine_and(P,V)
  198. #define __TBB_USE_GENERIC_DWORD_FETCH_ADD 1
  199. #define __TBB_USE_GENERIC_DWORD_FETCH_STORE 1
  200. #define __TBB_USE_FETCHSTORE_AS_FULL_FENCED_STORE 1
  201. #define __TBB_USE_GENERIC_HALF_FENCED_LOAD_STORE 1
  202. #define __TBB_USE_GENERIC_RELAXED_LOAD_STORE 1
  203. #define __TBB_USE_GENERIC_SEQUENTIAL_CONSISTENCY_LOAD_STORE 1