You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

compiler.h 3.0KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. /*
  2. * Copyright (c) 2016-present, Yann Collet, Facebook, Inc.
  3. * All rights reserved.
  4. *
  5. * This source code is licensed under both the BSD-style license (found in the
  6. * LICENSE file in the root directory of this source tree) and the GPLv2 (found
  7. * in the COPYING file in the root directory of this source tree).
  8. * You may select, at your option, one of the above-listed licenses.
  9. */
  10. #ifndef ZSTD_COMPILER_H
  11. #define ZSTD_COMPILER_H
  12. /*-*******************************************************
  13. * Compiler specifics
  14. *********************************************************/
  15. /* force inlining */
  16. #if defined (__GNUC__) || defined(__cplusplus) || defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L /* C99 */
  17. # define INLINE_KEYWORD inline
  18. #else
  19. # define INLINE_KEYWORD
  20. #endif
  21. #if defined(__GNUC__)
  22. # define FORCE_INLINE_ATTR __attribute__((always_inline))
  23. #elif defined(_MSC_VER)
  24. # define FORCE_INLINE_ATTR __forceinline
  25. #else
  26. # define FORCE_INLINE_ATTR
  27. #endif
  28. /**
  29. * FORCE_INLINE_TEMPLATE is used to define C "templates", which take constant
  30. * parameters. They must be inlined for the compiler to elimininate the constant
  31. * branches.
  32. */
  33. #define FORCE_INLINE_TEMPLATE static INLINE_KEYWORD FORCE_INLINE_ATTR
  34. /**
  35. * HINT_INLINE is used to help the compiler generate better code. It is *not*
  36. * used for "templates", so it can be tweaked based on the compilers
  37. * performance.
  38. *
  39. * gcc-4.8 and gcc-4.9 have been shown to benefit from leaving off the
  40. * always_inline attribute.
  41. *
  42. * clang up to 5.0.0 (trunk) benefit tremendously from the always_inline
  43. * attribute.
  44. */
  45. #if !defined(__clang__) && defined(__GNUC__) && __GNUC__ >= 4 && __GNUC_MINOR__ >= 8 && __GNUC__ < 5
  46. # define HINT_INLINE static INLINE_KEYWORD
  47. #else
  48. # define HINT_INLINE static INLINE_KEYWORD FORCE_INLINE_ATTR
  49. #endif
  50. /* force no inlining */
  51. #ifdef _MSC_VER
  52. # define FORCE_NOINLINE static __declspec(noinline)
  53. #else
  54. # ifdef __GNUC__
  55. # define FORCE_NOINLINE static __attribute__((__noinline__))
  56. # else
  57. # define FORCE_NOINLINE static
  58. # endif
  59. #endif
  60. /* prefetch */
  61. #if defined(_MSC_VER) && (defined(_M_X64) || defined(_M_I86)) /* _mm_prefetch() is not defined outside of x86/x64 */
  62. # include <mmintrin.h> /* https://msdn.microsoft.com/fr-fr/library/84szxsww(v=vs.90).aspx */
  63. # define PREFETCH(ptr) _mm_prefetch((const char*)ptr, _MM_HINT_T0)
  64. #elif defined(__GNUC__)
  65. # define PREFETCH(ptr) __builtin_prefetch(ptr, 0, 0)
  66. #else
  67. # define PREFETCH(ptr) /* disabled */
  68. #endif
  69. /* disable warnings */
  70. #ifdef _MSC_VER /* Visual Studio */
  71. # include <intrin.h> /* For Visual 2005 */
  72. # pragma warning(disable : 4100) /* disable: C4100: unreferenced formal parameter */
  73. # pragma warning(disable : 4127) /* disable: C4127: conditional expression is constant */
  74. # pragma warning(disable : 4204) /* disable: C4204: non-constant aggregate initializer */
  75. # pragma warning(disable : 4214) /* disable: C4214: non-int bitfields */
  76. # pragma warning(disable : 4324) /* disable: C4324: padded structure */
  77. #endif
  78. #endif /* ZSTD_COMPILER_H */