config.hpp 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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) 2012 Hartmut Kaiser
  7. * Copyright (c) 2014 Andrey Semashev
  8. */
  9. /*!
  10. * \file atomic/detail/config.hpp
  11. *
  12. * This header defines configuraion macros for Boost.Atomic
  13. */
  14. #ifndef BOOST_ATOMIC_DETAIL_CONFIG_HPP_INCLUDED_
  15. #define BOOST_ATOMIC_DETAIL_CONFIG_HPP_INCLUDED_
  16. #include <boost/config.hpp>
  17. #ifdef BOOST_HAS_PRAGMA_ONCE
  18. #pragma once
  19. #endif
  20. #if defined(__has_builtin)
  21. #if __has_builtin(__builtin_memcpy)
  22. #define BOOST_ATOMIC_DETAIL_HAS_BUILTIN_MEMCPY
  23. #endif
  24. #if __has_builtin(__builtin_memcmp)
  25. #define BOOST_ATOMIC_DETAIL_HAS_BUILTIN_MEMCMP
  26. #endif
  27. #elif defined(BOOST_GCC)
  28. #define BOOST_ATOMIC_DETAIL_HAS_BUILTIN_MEMCPY
  29. #define BOOST_ATOMIC_DETAIL_HAS_BUILTIN_MEMCMP
  30. #endif
  31. #if defined(BOOST_ATOMIC_DETAIL_HAS_BUILTIN_MEMCPY)
  32. #define BOOST_ATOMIC_DETAIL_MEMCPY __builtin_memcpy
  33. #else
  34. #define BOOST_ATOMIC_DETAIL_MEMCPY std::memcpy
  35. #endif
  36. #if defined(BOOST_ATOMIC_DETAIL_HAS_BUILTIN_MEMCMP)
  37. #define BOOST_ATOMIC_DETAIL_MEMCMP __builtin_memcmp
  38. #else
  39. #define BOOST_ATOMIC_DETAIL_MEMCMP std::memcmp
  40. #endif
  41. #if defined(__CUDACC__)
  42. // nvcc does not support alternatives in asm statement constraints
  43. #define BOOST_ATOMIC_DETAIL_NO_ASM_CONSTRAINT_ALTERNATIVES
  44. // nvcc does not support condition code register ("cc") clobber in asm statements
  45. #define BOOST_ATOMIC_DETAIL_NO_ASM_CLOBBER_CC
  46. #endif
  47. #if !defined(BOOST_ATOMIC_DETAIL_NO_ASM_CLOBBER_CC)
  48. #define BOOST_ATOMIC_DETAIL_ASM_CLOBBER_CC "cc"
  49. #define BOOST_ATOMIC_DETAIL_ASM_CLOBBER_CC_COMMA "cc",
  50. #else
  51. #define BOOST_ATOMIC_DETAIL_ASM_CLOBBER_CC
  52. #define BOOST_ATOMIC_DETAIL_ASM_CLOBBER_CC_COMMA
  53. #endif
  54. #if (defined(macintosh) || defined(__APPLE__) || defined(__APPLE_CC__)) && (defined(__GNUC__) && (__GNUC__ * 100 + __GNUC_MINOR__) < 403)
  55. // This macro indicates we're using older binutils that don't support implied zero displacements for memory opereands,
  56. // making code like this invalid:
  57. // movl 4+(%%edx), %%eax
  58. #define BOOST_ATOMIC_DETAIL_NO_ASM_IMPLIED_ZERO_DISPLACEMENTS
  59. #endif
  60. #if defined(__clang__) || (defined(BOOST_GCC) && (BOOST_GCC+0) < 40500)
  61. // This macro indicates that the compiler does not support allocating rax:rdx register pairs ("A") in asm blocks
  62. #define BOOST_ATOMIC_DETAIL_NO_ASM_RAX_RDX_PAIRS
  63. #endif
  64. #endif // BOOST_ATOMIC_DETAIL_CONFIG_HPP_INCLUDED_