caps_arch_gcc_x86.hpp 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. /*
  2. * Distributed under the Boost Software License, Version 1.0.
  3. * (See accompanying file LICENSE_1_0.txt or copy at
  4. * http://www.boost.org/LICENSE_1_0.txt)
  5. *
  6. * Copyright (c) 2009 Helge Bahmann
  7. * Copyright (c) 2012 Tim Blechmann
  8. * Copyright (c) 2013 - 2014 Andrey Semashev
  9. */
  10. /*!
  11. * \file atomic/detail/caps_arch_gcc_x86.hpp
  12. *
  13. * This header defines feature capabilities macros
  14. */
  15. #ifndef BOOST_ATOMIC_DETAIL_CAPS_ARCH_GCC_X86_HPP_INCLUDED_
  16. #define BOOST_ATOMIC_DETAIL_CAPS_ARCH_GCC_X86_HPP_INCLUDED_
  17. #include <boost/atomic/detail/config.hpp>
  18. #ifdef BOOST_HAS_PRAGMA_ONCE
  19. #pragma once
  20. #endif
  21. #if defined(__GNUC__)
  22. #if defined(__i386__) &&\
  23. (\
  24. defined(__GCC_HAVE_SYNC_COMPARE_AND_SWAP_8) ||\
  25. defined(__i586__) || defined(__i686__) || defined(__SSE__)\
  26. )
  27. #define BOOST_ATOMIC_DETAIL_X86_HAS_CMPXCHG8B 1
  28. #endif
  29. #if defined(__x86_64__) && defined(__GCC_HAVE_SYNC_COMPARE_AND_SWAP_16)
  30. #define BOOST_ATOMIC_DETAIL_X86_HAS_CMPXCHG16B 1
  31. #endif
  32. #if defined(__x86_64__) || defined(__SSE2__)
  33. // Use mfence only if SSE2 is available
  34. #define BOOST_ATOMIC_DETAIL_X86_HAS_MFENCE 1
  35. #endif
  36. #else // defined(__GNUC__)
  37. #if defined(__i386__) && !defined(BOOST_ATOMIC_NO_CMPXCHG8B)
  38. #define BOOST_ATOMIC_DETAIL_X86_HAS_CMPXCHG8B 1
  39. #endif
  40. #if defined(__x86_64__) && !defined(BOOST_ATOMIC_NO_CMPXCHG16B)
  41. #define BOOST_ATOMIC_DETAIL_X86_HAS_CMPXCHG16B 1
  42. #endif
  43. #if !defined(BOOST_ATOMIC_NO_MFENCE)
  44. #define BOOST_ATOMIC_DETAIL_X86_HAS_MFENCE 1
  45. #endif
  46. #endif // defined(__GNUC__)
  47. #define BOOST_ATOMIC_INT8_LOCK_FREE 2
  48. #define BOOST_ATOMIC_INT16_LOCK_FREE 2
  49. #define BOOST_ATOMIC_INT32_LOCK_FREE 2
  50. #if defined(__x86_64__) || defined(BOOST_ATOMIC_DETAIL_X86_HAS_CMPXCHG8B)
  51. #define BOOST_ATOMIC_INT64_LOCK_FREE 2
  52. #endif
  53. #if defined(BOOST_ATOMIC_DETAIL_X86_HAS_CMPXCHG16B)
  54. #define BOOST_ATOMIC_INT128_LOCK_FREE 2
  55. #endif
  56. #define BOOST_ATOMIC_POINTER_LOCK_FREE 2
  57. #define BOOST_ATOMIC_THREAD_FENCE 2
  58. #define BOOST_ATOMIC_SIGNAL_FENCE 2
  59. #endif // BOOST_ATOMIC_DETAIL_CAPS_ARCH_GCC_X86_HPP_INCLUDED_