linux_intel64.h 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  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_intel64_H)
  24. #error Do not #include this internal file directly; use public TBB headers instead.
  25. #endif
  26. #define __TBB_machine_linux_intel64_H
  27. #include <stdint.h>
  28. #include "gcc_ia32_common.h"
  29. #define __TBB_WORDSIZE 8
  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. #ifndef __TBB_full_memory_fence
  36. #define __TBB_full_memory_fence() __asm__ __volatile__("mfence": : :"memory")
  37. #endif
  38. #define __TBB_MACHINE_DEFINE_ATOMICS(S,T,X) \
  39. static inline T __TBB_machine_cmpswp##S (volatile void *ptr, T value, T comparand ) \
  40. { \
  41. T result; \
  42. \
  43. __asm__ __volatile__("lock\ncmpxchg" X " %2,%1" \
  44. : "=a"(result), "=m"(*(volatile T*)ptr) \
  45. : "q"(value), "0"(comparand), "m"(*(volatile T*)ptr) \
  46. : "memory"); \
  47. return result; \
  48. } \
  49. \
  50. static inline T __TBB_machine_fetchadd##S(volatile void *ptr, T addend) \
  51. { \
  52. T result; \
  53. __asm__ __volatile__("lock\nxadd" X " %0,%1" \
  54. : "=r"(result),"=m"(*(volatile T*)ptr) \
  55. : "0"(addend), "m"(*(volatile T*)ptr) \
  56. : "memory"); \
  57. return result; \
  58. } \
  59. \
  60. static inline T __TBB_machine_fetchstore##S(volatile void *ptr, T value) \
  61. { \
  62. T result; \
  63. __asm__ __volatile__("lock\nxchg" X " %0,%1" \
  64. : "=r"(result),"=m"(*(volatile T*)ptr) \
  65. : "0"(value), "m"(*(volatile T*)ptr) \
  66. : "memory"); \
  67. return result; \
  68. } \
  69. __TBB_MACHINE_DEFINE_ATOMICS(1,int8_t,"")
  70. __TBB_MACHINE_DEFINE_ATOMICS(2,int16_t,"")
  71. __TBB_MACHINE_DEFINE_ATOMICS(4,int32_t,"")
  72. __TBB_MACHINE_DEFINE_ATOMICS(8,int64_t,"q")
  73. #undef __TBB_MACHINE_DEFINE_ATOMICS
  74. static inline void __TBB_machine_or( volatile void *ptr, uint64_t value ) {
  75. __asm__ __volatile__("lock\norq %1,%0" : "=m"(*(volatile uint64_t*)ptr) : "r"(value), "m"(*(volatile uint64_t*)ptr) : "memory");
  76. }
  77. static inline void __TBB_machine_and( volatile void *ptr, uint64_t value ) {
  78. __asm__ __volatile__("lock\nandq %1,%0" : "=m"(*(volatile uint64_t*)ptr) : "r"(value), "m"(*(volatile uint64_t*)ptr) : "memory");
  79. }
  80. #define __TBB_AtomicOR(P,V) __TBB_machine_or(P,V)
  81. #define __TBB_AtomicAND(P,V) __TBB_machine_and(P,V)
  82. #define __TBB_USE_FETCHSTORE_AS_FULL_FENCED_STORE 1
  83. #define __TBB_USE_GENERIC_HALF_FENCED_LOAD_STORE 1
  84. #define __TBB_USE_GENERIC_RELAXED_LOAD_STORE 1
  85. #define __TBB_USE_GENERIC_SEQUENTIAL_CONSISTENCY_LOAD_STORE 1