attributes.h 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. /*
  2. * copyright (c) 2006 Michael Niedermayer <michaelni@gmx.at>
  3. *
  4. * This file is part of FFmpeg.
  5. *
  6. * FFmpeg is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 2.1 of the License, or (at your option) any later version.
  10. *
  11. * FFmpeg is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with FFmpeg; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  19. */
  20. /**
  21. * @file
  22. * Macro definitions for various function/variable attributes
  23. */
  24. #ifndef AVUTIL_ATTRIBUTES_H
  25. #define AVUTIL_ATTRIBUTES_H
  26. #ifdef __GNUC__
  27. # define AV_GCC_VERSION_AT_LEAST(x,y) (__GNUC__ > x || __GNUC__ == x && __GNUC_MINOR__ >= y)
  28. #else
  29. # define AV_GCC_VERSION_AT_LEAST(x,y) 0
  30. #endif
  31. #ifndef av_always_inline
  32. #if AV_GCC_VERSION_AT_LEAST(3,1)
  33. # define av_always_inline __attribute__((always_inline)) inline
  34. #else
  35. # define av_always_inline inline
  36. #endif
  37. #endif
  38. #ifndef av_noreturn
  39. #if AV_GCC_VERSION_AT_LEAST(2,5)
  40. # define av_noreturn __attribute__((noreturn))
  41. #else
  42. # define av_noreturn
  43. #endif
  44. #endif
  45. #ifndef av_noinline
  46. #if AV_GCC_VERSION_AT_LEAST(3,1)
  47. # define av_noinline __attribute__((noinline))
  48. #else
  49. # define av_noinline
  50. #endif
  51. #endif
  52. #ifndef av_pure
  53. #if AV_GCC_VERSION_AT_LEAST(3,1)
  54. # define av_pure __attribute__((pure))
  55. #else
  56. # define av_pure
  57. #endif
  58. #endif
  59. #ifndef av_const
  60. #if AV_GCC_VERSION_AT_LEAST(2,6)
  61. # define av_const __attribute__((const))
  62. #else
  63. # define av_const
  64. #endif
  65. #endif
  66. #ifndef av_cold
  67. #if AV_GCC_VERSION_AT_LEAST(4,3)
  68. # define av_cold __attribute__((cold))
  69. #else
  70. # define av_cold
  71. #endif
  72. #endif
  73. #ifndef av_flatten
  74. #if AV_GCC_VERSION_AT_LEAST(4,1)
  75. # define av_flatten __attribute__((flatten))
  76. #else
  77. # define av_flatten
  78. #endif
  79. #endif
  80. #ifndef attribute_deprecated
  81. #if AV_GCC_VERSION_AT_LEAST(3,1)
  82. # define attribute_deprecated __attribute__((deprecated))
  83. #else
  84. # define attribute_deprecated
  85. #endif
  86. #endif
  87. /**
  88. * Disable warnings about deprecated features
  89. * This is useful for sections of code kept for backward compatibility and
  90. * scheduled for removal.
  91. */
  92. #ifndef AV_NOWARN_DEPRECATED
  93. #if AV_GCC_VERSION_AT_LEAST(4,6)
  94. # define AV_NOWARN_DEPRECATED(code) \
  95. _Pragma("GCC diagnostic push") \
  96. _Pragma("GCC diagnostic ignored \"-Wdeprecated-declarations\"") \
  97. code \
  98. _Pragma("GCC diagnostic pop")
  99. #else
  100. # define AV_NOWARN_DEPRECATED(code) code
  101. #endif
  102. #endif
  103. #ifndef av_unused
  104. #if defined(__GNUC__)
  105. # define av_unused __attribute__((unused))
  106. #else
  107. # define av_unused
  108. #endif
  109. #endif
  110. /**
  111. * Mark a variable as used and prevent the compiler from optimizing it
  112. * away. This is useful for variables accessed only from inline
  113. * assembler without the compiler being aware.
  114. */
  115. #ifndef av_used
  116. #if AV_GCC_VERSION_AT_LEAST(3,1)
  117. # define av_used __attribute__((used))
  118. #else
  119. # define av_used
  120. #endif
  121. #endif
  122. #ifndef av_alias
  123. #if AV_GCC_VERSION_AT_LEAST(3,3)
  124. # define av_alias __attribute__((may_alias))
  125. #else
  126. # define av_alias
  127. #endif
  128. #endif
  129. #ifndef av_uninit
  130. #if defined(__GNUC__) && !defined(__INTEL_COMPILER)
  131. # define av_uninit(x) x=x
  132. #else
  133. # define av_uninit(x) x
  134. #endif
  135. #endif
  136. #ifdef __GNUC__
  137. # define av_builtin_constant_p __builtin_constant_p
  138. # define av_printf_format(fmtpos, attrpos) __attribute__((__format__(__printf__, fmtpos, attrpos)))
  139. #else
  140. # define av_builtin_constant_p(x) 0
  141. # define av_printf_format(fmtpos, attrpos)
  142. #endif
  143. #endif /* AVUTIL_ATTRIBUTES_H */