attributes.h 4.6 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
/*
 * copyright (c) 2006 Michael Niedermayer <michaelni@gmx.at>
 *
 * This file is part of FFmpeg.
 *
 * FFmpeg is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * FFmpeg is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with FFmpeg; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 */

/**
22
 * @file
23 24 25 26 27 28 29
 * Macro definitions for various function/variable attributes
 */

#ifndef AVUTIL_ATTRIBUTES_H
#define AVUTIL_ATTRIBUTES_H

#ifdef __GNUC__
30
#    define AV_GCC_VERSION_AT_LEAST(x,y) (__GNUC__ > (x) || __GNUC__ == (x) && __GNUC_MINOR__ >= (y))
31
#    define AV_GCC_VERSION_AT_MOST(x,y)  (__GNUC__ < (x) || __GNUC__ == (x) && __GNUC_MINOR__ <= (y))
32 33
#else
#    define AV_GCC_VERSION_AT_LEAST(x,y) 0
34
#    define AV_GCC_VERSION_AT_MOST(x,y)  0
35 36 37 38 39
#endif

#ifndef av_always_inline
#if AV_GCC_VERSION_AT_LEAST(3,1)
#    define av_always_inline __attribute__((always_inline)) inline
40 41
#elif defined(_MSC_VER)
#    define av_always_inline __forceinline
42 43 44 45 46
#else
#    define av_always_inline inline
#endif
#endif

47
#ifndef av_extern_inline
48 49 50
#if defined(__ICL) && __ICL >= 1210 || defined(__GNUC_STDC_INLINE__)
#    define av_extern_inline extern inline
#else
51 52
#    define av_extern_inline inline
#endif
53
#endif
54

55 56 57 58 59 60
#if AV_GCC_VERSION_AT_LEAST(3,4)
#    define av_warn_unused_result __attribute__((warn_unused_result))
#else
#    define av_warn_unused_result
#endif

61 62
#if AV_GCC_VERSION_AT_LEAST(3,1)
#    define av_noinline __attribute__((noinline))
63 64
#elif defined(_MSC_VER)
#    define av_noinline __declspec(noinline)
65 66 67 68
#else
#    define av_noinline
#endif

69
#if AV_GCC_VERSION_AT_LEAST(3,1) || defined(__clang__)
70 71 72 73 74
#    define av_pure __attribute__((pure))
#else
#    define av_pure
#endif

75
#if AV_GCC_VERSION_AT_LEAST(2,6) || defined(__clang__)
76 77 78 79 80
#    define av_const __attribute__((const))
#else
#    define av_const
#endif

81
#if AV_GCC_VERSION_AT_LEAST(4,3) || defined(__clang__)
82 83 84 85 86
#    define av_cold __attribute__((cold))
#else
#    define av_cold
#endif

87
#if AV_GCC_VERSION_AT_LEAST(4,1) && !defined(__llvm__)
88 89 90 91 92 93 94
#    define av_flatten __attribute__((flatten))
#else
#    define av_flatten
#endif

#if AV_GCC_VERSION_AT_LEAST(3,1)
#    define attribute_deprecated __attribute__((deprecated))
95 96
#elif defined(_MSC_VER)
#    define attribute_deprecated __declspec(deprecated)
97 98 99 100
#else
#    define attribute_deprecated
#endif

101 102 103 104 105 106 107 108 109 110 111 112
/**
 * Disable warnings about deprecated features
 * This is useful for sections of code kept for backward compatibility and
 * scheduled for removal.
 */
#ifndef AV_NOWARN_DEPRECATED
#if AV_GCC_VERSION_AT_LEAST(4,6)
#    define AV_NOWARN_DEPRECATED(code) \
        _Pragma("GCC diagnostic push") \
        _Pragma("GCC diagnostic ignored \"-Wdeprecated-declarations\"") \
        code \
        _Pragma("GCC diagnostic pop")
113 114 115 116 117 118
#elif defined(_MSC_VER)
#    define AV_NOWARN_DEPRECATED(code) \
        __pragma(warning(push)) \
        __pragma(warning(disable : 4996)) \
        code; \
        __pragma(warning(pop))
119 120 121 122 123
#else
#    define AV_NOWARN_DEPRECATED(code) code
#endif
#endif

124
#if defined(__GNUC__) || defined(__clang__)
125 126 127 128 129
#    define av_unused __attribute__((unused))
#else
#    define av_unused
#endif

130 131 132 133 134
/**
 * Mark a variable as used and prevent the compiler from optimizing it
 * away.  This is useful for variables accessed only from inline
 * assembler without the compiler being aware.
 */
135
#if AV_GCC_VERSION_AT_LEAST(3,1) || defined(__clang__)
136 137 138 139 140
#    define av_used __attribute__((used))
#else
#    define av_used
#endif

141
#if AV_GCC_VERSION_AT_LEAST(3,3) || defined(__clang__)
142 143 144 145 146
#   define av_alias __attribute__((may_alias))
#else
#   define av_alias
#endif

James Almer's avatar
James Almer committed
147
#if (defined(__GNUC__) || defined(__clang__)) && !defined(__INTEL_COMPILER)
148 149 150 151 152
#    define av_uninit(x) x=x
#else
#    define av_uninit(x) x
#endif

153
#if defined(__GNUC__) || defined(__clang__)
154
#    define av_builtin_constant_p __builtin_constant_p
155
#    define av_printf_format(fmtpos, attrpos) __attribute__((__format__(__printf__, fmtpos, attrpos)))
156 157
#else
#    define av_builtin_constant_p(x) 0
158
#    define av_printf_format(fmtpos, attrpos)
159 160
#endif

161
#if AV_GCC_VERSION_AT_LEAST(2,5) || defined(__clang__)
162 163 164 165 166
#    define av_noreturn __attribute__((noreturn))
#else
#    define av_noreturn
#endif

167
#endif /* AVUTIL_ATTRIBUTES_H */