Merge branch 'next' of git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc
[deliverable/linux.git] / include / linux / compiler-gcc4.h
CommitLineData
94f582f8
RD
1#ifndef __LINUX_COMPILER_H
2#error "Please don't include <linux/compiler-gcc4.h> directly, include <linux/compiler.h> instead."
3#endif
1da177e4 4
f9d14250 5/* GCC 4.1.[01] miscompiles __weak */
8cd2c29d
PA
6#ifdef __KERNEL__
7# if __GNUC_MINOR__ == 1 && __GNUC_PATCHLEVEL__ <= 1
8# error Your version of gcc miscompiles the __weak directive
9# endif
f9d14250
LT
10#endif
11
0d7ebbbc 12#define __used __attribute__((__used__))
1da177e4
LT
13#define __must_check __attribute__((warn_unused_result))
14#define __compiler_offsetof(a,b) __builtin_offsetof(a,b)
a586df06 15
f153b821 16#if __GNUC_MINOR__ >= 3
a586df06
AK
17/* Mark functions as cold. gcc will assume any path leading to a call
18 to them will be unlikely. This means a lot of manual unlikely()s
19 are unnecessary now for any paths leading to the usual suspects
20 like BUG(), printk(), panic() etc. [but let's keep them for now for
21 older compilers]
22
23 Early snapshots of gcc 4.3 don't support this and we can't detect this
24 in the preprocessor, but we can live with this because they're unreleased.
25 Maketime probing would be overkill here.
26
27 gcc also has a __attribute__((__hot__)) to move hot functions into
28 a special section, but I don't see any sense in this right now in
29 the kernel context */
30#define __cold __attribute__((__cold__))
31
1399ff86 32#define __linktime_error(message) __attribute__((__error__(message)))
38938c87
DD
33
34#if __GNUC_MINOR__ >= 5
35/*
36 * Mark a position in code as unreachable. This can be used to
37 * suppress control flow warnings after asm blocks that transfer
38 * control elsewhere.
39 *
40 * Early snapshots of gcc 4.5 don't support this and we can't detect
41 * this in the preprocessor, but we can live with this because they're
42 * unreleased. Really, we need to have autoconf for the kernel.
43 */
44#define unreachable() __builtin_unreachable()
9c695203
MP
45
46/* Mark a function definition as prohibited from being cloned. */
47#define __noclone __attribute__((__noclone__))
48
38938c87 49#endif
a586df06 50#endif
9f0cf4ad 51
9a858dc7
AK
52#if __GNUC_MINOR__ >= 6
53/*
54 * Tell the optimizer that something else uses this function or variable.
55 */
56#define __visible __attribute__((externally_visible))
57#endif
58
7cff7ce9 59#if __GNUC_MINOR__ > 0
9f0cf4ad 60#define __compiletime_object_size(obj) __builtin_object_size(obj, 0)
7cff7ce9 61#endif
746a2a83 62#if __GNUC_MINOR__ >= 4 && !defined(__CHECKER__)
4a312769 63#define __compiletime_warning(message) __attribute__((warning(message)))
63312b6a 64#define __compiletime_error(message) __attribute__((error(message)))
4a312769 65#endif
This page took 0.717627 seconds and 5 git commands to generate.