Compiler.h 4.45 KB
Newer Older
1
/*
Max Kellermann's avatar
Max Kellermann committed
2
 * Copyright 2003-2021 The Music Player Daemon Project
3
 * http://www.musicpd.org
4 5 6 7 8 9 10 11 12 13
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program 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 General Public License for more details.
14 15 16 17
 *
 * You should have received a copy of the GNU General Public License along
 * with this program; if not, write to the Free Software Foundation, Inc.,
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 19
 */

20 21
#ifndef COMPILER_H
#define COMPILER_H
22

23 24
#define GCC_MAKE_VERSION(major, minor, patchlevel) ((major) * 10000 + (minor) * 100 + patchlevel)

Max Kellermann's avatar
Max Kellermann committed
25
#ifdef __GNUC__
26
#define GCC_VERSION GCC_MAKE_VERSION(__GNUC__, __GNUC_MINOR__, __GNUC_PATCHLEVEL__)
Max Kellermann's avatar
Max Kellermann committed
27 28 29 30
#else
#define GCC_VERSION 0
#endif

31 32 33 34 35 36
#ifdef __clang__
#  define CLANG_VERSION GCC_MAKE_VERSION(__clang_major__, __clang_minor__, __clang_patchlevel__)
#elif defined(__GNUC__)
#  define CLANG_VERSION 0
#endif

37 38 39 40
/**
 * Are we building with the specified version of gcc (not clang or any
 * other compiler) or newer?
 */
41
#define GCC_CHECK_VERSION(major, minor) \
42
	(CLANG_VERSION == 0 && \
43
	 GCC_VERSION >= GCC_MAKE_VERSION(major, minor, 0))
44

45 46 47 48 49
/**
 * Are we building with clang (any version) or at least the specified
 * gcc version?
 */
#define CLANG_OR_GCC_VERSION(major, minor) \
50
	(CLANG_VERSION > 0 || GCC_CHECK_VERSION(major, minor))
51

52 53 54 55 56
/**
 * Are we building with gcc (not clang or any other compiler) and a
 * version older than the specified one?
 */
#define GCC_OLDER_THAN(major, minor) \
57
	(GCC_VERSION > 0 && CLANG_VERSION == 0 && \
58 59
	 GCC_VERSION < GCC_MAKE_VERSION(major, minor, 0))

60 61 62 63
/**
 * Are we building with the specified version of clang or newer?
 */
#define CLANG_CHECK_VERSION(major, minor) \
64
	(CLANG_VERSION >= GCC_MAKE_VERSION(major, minor, 0))
65

66
#if CLANG_OR_GCC_VERSION(4,0)
Max Kellermann's avatar
Max Kellermann committed
67 68 69 70 71 72 73 74 75 76 77 78 79

/* GCC 4.x */

#define gcc_const __attribute__((const))
#define gcc_may_alias __attribute__((may_alias))
#define gcc_malloc __attribute__((malloc))
#define gcc_packed __attribute__((packed))
#define gcc_printf(a,b) __attribute__((format(printf, a, b)))
#define gcc_pure __attribute__((pure))
#define gcc_sentinel __attribute__((sentinel))

#define gcc_nonnull(...) __attribute__((nonnull(__VA_ARGS__)))
#define gcc_nonnull_all __attribute__((nonnull))
80 81
#define gcc_returns_nonnull __attribute__((returns_nonnull))
#define gcc_returns_twice __attribute__((returns_twice))
Max Kellermann's avatar
Max Kellermann committed
82 83 84

#define gcc_likely(x) __builtin_expect (!!(x), 1)
#define gcc_unlikely(x) __builtin_expect (!!(x), 0)
85

Max Kellermann's avatar
Max Kellermann committed
86 87 88
#define gcc_visibility_hidden __attribute__((visibility("hidden")))
#define gcc_visibility_default __attribute__((visibility("default")))

89
#define gcc_noinline __attribute__((noinline))
Max Kellermann's avatar
Max Kellermann committed
90
#define gcc_always_inline __attribute__((always_inline))
91

92
#else
Max Kellermann's avatar
Max Kellermann committed
93 94 95 96 97 98 99 100 101 102 103 104 105

/* generic C compiler */

#define gcc_const
#define gcc_may_alias
#define gcc_malloc
#define gcc_packed
#define gcc_printf(a,b)
#define gcc_pure
#define gcc_sentinel

#define gcc_nonnull(...)
#define gcc_nonnull_all
106 107
#define gcc_returns_nonnull
#define gcc_returns_twice
Max Kellermann's avatar
Max Kellermann committed
108 109 110 111 112 113 114

#define gcc_likely(x) (x)
#define gcc_unlikely(x) (x)

#define gcc_visibility_hidden
#define gcc_visibility_default

115
#define gcc_noinline
Max Kellermann's avatar
Max Kellermann committed
116
#define gcc_always_inline inline
117

118 119
#endif

120
#if CLANG_OR_GCC_VERSION(4,3)
Max Kellermann's avatar
Max Kellermann committed
121 122 123 124 125 126 127 128 129 130 131

#define gcc_hot __attribute__((hot))
#define gcc_cold __attribute__((cold))

#else /* ! GCC_UNUSED >= 40300 */

#define gcc_hot
#define gcc_cold

#endif /* ! GCC_UNUSED >= 40300 */

132
#if GCC_CHECK_VERSION(4,6)
Max Kellermann's avatar
Max Kellermann committed
133
#define gcc_flatten __attribute__((flatten))
134
#else
Max Kellermann's avatar
Max Kellermann committed
135
#define gcc_flatten
136 137
#endif

138
#if GCC_CHECK_VERSION(7,0)
139
#define gcc_fallthrough __attribute__((fallthrough))
140
#elif CLANG_CHECK_VERSION(10,0) && defined(__cplusplus)
141
#define gcc_fallthrough [[fallthrough]]
142 143 144 145
#else
#define gcc_fallthrough
#endif

Max Kellermann's avatar
Max Kellermann committed
146 147 148
#ifndef __cplusplus
/* plain C99 has "restrict" */
#define gcc_restrict restrict
149
#elif CLANG_OR_GCC_VERSION(4,0)
150
/* "__restrict__" is a GCC extension for C++ */
Max Kellermann's avatar
Max Kellermann committed
151
#define gcc_restrict __restrict__
152 153
#else
/* disable it on other compilers */
Max Kellermann's avatar
Max Kellermann committed
154
#define gcc_restrict
155 156
#endif

Max Kellermann's avatar
Max Kellermann committed
157 158 159 160 161 162 163 164 165 166 167 168
#ifndef __has_feature
  // define dummy macro for non-clang compilers
  #define __has_feature(x) 0
#endif

#if defined(__GNUC__) || defined(__clang__)
#define gcc_unreachable() __builtin_unreachable()
#else
#define gcc_unreachable()
#endif

#endif