Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1/* SPDX-License-Identifier: GPL-2.0 */
2#ifndef _LINUX_BUILD_BUG_H
3#define _LINUX_BUILD_BUG_H
4
5#include <linux/compiler.h>
6
7/*
8 * Force a compilation error if condition is true, but also produce a
9 * result (of value 0 and type int), so the expression can be used
10 * e.g. in a structure initializer (or where-ever else comma expressions
11 * aren't permitted).
12 *
13 * Take an error message as an optional second argument. If omitted,
14 * default to the stringification of the tested expression.
15 */
16#define BUILD_BUG_ON_ZERO(e, ...) \
17 __BUILD_BUG_ON_ZERO_MSG(e, ##__VA_ARGS__, #e " is true")
18
19/* Force a compilation error if a constant expression is not a power of 2 */
20#define __BUILD_BUG_ON_NOT_POWER_OF_2(n) \
21 BUILD_BUG_ON(((n) & ((n) - 1)) != 0)
22#define BUILD_BUG_ON_NOT_POWER_OF_2(n) \
23 BUILD_BUG_ON((n) == 0 || (((n) & ((n) - 1)) != 0))
24
25/*
26 * BUILD_BUG_ON_INVALID() permits the compiler to check the validity of the
27 * expression but avoids the generation of any code, even if that expression
28 * has side-effects.
29 */
30#define BUILD_BUG_ON_INVALID(e) ((void)(sizeof((__force long)(e))))
31
32/**
33 * BUILD_BUG_ON_MSG - break compile if a condition is true & emit supplied
34 * error message.
35 * @cond: the condition which the compiler should know is false.
36 * @msg: build-time error message
37 *
38 * See BUILD_BUG_ON for description.
39 */
40#define BUILD_BUG_ON_MSG(cond, msg) compiletime_assert(!(cond), msg)
41
42/**
43 * BUILD_BUG_ON - break compile if a condition is true.
44 * @condition: the condition which the compiler should know is false.
45 *
46 * If you have some code which relies on certain constants being equal, or
47 * some other compile-time-evaluated condition, you should use BUILD_BUG_ON to
48 * detect if someone changes it.
49 */
50#define BUILD_BUG_ON(condition) \
51 BUILD_BUG_ON_MSG(condition, "BUILD_BUG_ON failed: " #condition)
52
53/**
54 * BUILD_BUG - break compile if used.
55 *
56 * If you have some code that you expect the compiler to eliminate at
57 * build time, you should use BUILD_BUG to detect if it is
58 * unexpectedly used.
59 */
60#define BUILD_BUG() BUILD_BUG_ON_MSG(1, "BUILD_BUG failed")
61
62/**
63 * static_assert - check integer constant expression at build time
64 * @expr: expression to be checked
65 *
66 * static_assert() is a wrapper for the C11 _Static_assert, with a
67 * little macro magic to make the message optional (defaulting to the
68 * stringification of the tested expression).
69 *
70 * Contrary to BUILD_BUG_ON(), static_assert() can be used at global
71 * scope, but requires the expression to be an integer constant
72 * expression (i.e., it is not enough that __builtin_constant_p() is
73 * true for expr).
74 *
75 * Also note that BUILD_BUG_ON() fails the build if the condition is
76 * true, while static_assert() fails the build if the expression is
77 * false.
78 */
79#define static_assert(expr, ...) __static_assert(expr, ##__VA_ARGS__, #expr)
80#define __static_assert(expr, msg, ...) _Static_assert(expr, msg)
81
82
83/*
84 * Compile time check that field has an expected offset
85 */
86#define ASSERT_STRUCT_OFFSET(type, field, expected_offset) \
87 BUILD_BUG_ON_MSG(offsetof(type, field) != (expected_offset), \
88 "Offset of " #field " in " #type " has changed.")
89
90
91#endif /* _LINUX_BUILD_BUG_H */