3803f9ee96a97685b11380a97a6420233b8fa83e
[libside.git] / include / side / macros.h
1 // SPDX-License-Identifier: MIT
2 /*
3 * Copyright 2022 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
4 */
5
6 #ifndef _SIDE_MACROS_H
7 #define _SIDE_MACROS_H
8
9 #include <stddef.h>
10 #include <limits.h>
11 #include <stdint.h>
12 #include <side/endian.h>
13
14 /* Helper macros */
15
16 #define SIDE_ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]))
17
18 /*
19 * Compound literals with static storage are needed by SIDE
20 * instrumentation.
21 * Compound literals are part of the C99 and C11 standards, but not
22 * part of the C++ standards. They are supported by most C++ compilers
23 * though.
24 *
25 * Example use:
26 * static struct mystruct *var = LTTNG_UST_COMPOUND_LITERAL(struct mystruct, { 1, 2, 3 });
27 */
28 #define SIDE_COMPOUND_LITERAL(type, ...) (type[]) { __VA_ARGS__ }
29
30 #define side_likely(x) __builtin_expect(!!(x), 1)
31 #define side_unlikely(x) __builtin_expect(!!(x), 0)
32
33 #define SIDE_PARAM(...) __VA_ARGS__
34
35 #define side_offsetofend(type, member) \
36 (offsetof(type, member) + sizeof(((type *)0)->member))
37
38 /*
39 * SIDE_PARAM_SELECT_ARG1
40 *
41 * Select second argument. Use inside macros to implement optional last
42 * macro argument, such as:
43 *
44 * #define macro(_a, _b, _c, _optional...) \
45 * SIDE_PARAM_SELECT_ARG1(_, ##_optional, do_default_macro())
46 *
47 * This macro is far from pretty, but attempts to create a cleaner layer
48 * on top fails for various reasons:
49 *
50 * - The libside API needs to use the default argument selection as an
51 * argument to itself (recursively), e.g. for fields and for types, so
52 * using the argument selection within an extra layer of macro fails
53 * because the extra layer cannot expand recursively.
54 * - Attempts to make the extra layer of macro support recursion through
55 * another layer of macros which expands all arguments failed because
56 * the optional argument may contain commas, and is therefore expanded
57 * into multiple arguments before argument selection, which fails to
58 * select the optional argument content after its first comma.
59 */
60 #define SIDE_PARAM_SELECT_ARG1(_arg0, _arg1, ...) _arg1
61
62 /*
63 * Compile time assertion.
64 * - predicate: boolean expression to evaluate,
65 * - msg: string to print to the user on failure when `static_assert()` is
66 * supported,
67 * - c_identifier_msg: message to be included in the typedef to emulate a
68 * static assertion. This parameter must be a valid C identifier as it will
69 * be used as a typedef name.
70 */
71 #ifdef __cplusplus
72 #define side_static_assert(predicate, msg, c_identifier_msg) \
73 static_assert(predicate, msg)
74 #elif defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 201112L)
75 #define side_static_assert(predicate, msg, c_identifier_msg) \
76 _Static_assert(predicate, msg)
77 #else
78 /*
79 * Evaluates the predicate and emit a compilation error on failure.
80 *
81 * If the predicate evaluates to true, this macro emits a function
82 * prototype with an argument type which is an array of size 0.
83 *
84 * If the predicate evaluates to false, this macro emits a function
85 * prototype with an argument type which is an array of negative size
86 * which is invalid in C and forces a compiler error. The
87 * c_identifier_msg parameter is used as the argument identifier so it
88 * is printed to the user when the error is reported.
89 */
90 #define side_static_assert(predicate, msg, c_identifier_msg) \
91 void side_static_assert_proto(char c_identifier_msg[2*!!(predicate)-1])
92 #endif
93
94 /*
95 * side_container_of - Get the address of an object containing a field.
96 *
97 * @ptr: pointer to the field.
98 * @type: type of the object.
99 * @member: name of the field within the object.
100 */
101 #define side_container_of(ptr, type, member) \
102 __extension__ \
103 ({ \
104 const __typeof__(((type *) NULL)->member) * __ptr = (ptr); \
105 (type *)((char *)__ptr - offsetof(type, member)); \
106 })
107
108 #define side_struct_field_sizeof(_struct, _field) \
109 sizeof(((_struct * )NULL)->_field)
110
111 #define SIDE_PACKED __attribute__((packed))
112
113 #define side_padding(bytes) char padding[bytes]
114
115 #define side_check_size(_type, _len) \
116 side_static_assert(sizeof(_type) == (_len), \
117 "Unexpected size for type: `" #_type "`", \
118 unexpected_size_for_type_##_type)
119
120 /*
121 * The side_ptr macros allow defining a pointer type which is suitable
122 * for use by 32-bit, 64-bit and 128-bit kernels without compatibility
123 * code, while preserving information about the pointer type.
124 *
125 * Those pointers are stored as 128-bit integers, and the type of the
126 * actual pointer is kept alongside with the 128-bit pointer value in a
127 * 0-len array within a union.
128 */
129
130 #if (SIDE_BYTE_ORDER == SIDE_LITTLE_ENDIAN)
131 # define SIDE_U128_PTR_IDX(n) (n)
132 #else
133 # define SIDE_U128_PTR_IDX(n) ((16 / __SIZEOF_POINTER__) - (n) - 1)
134 #endif
135
136 #define side_raw_ptr_t(_type) \
137 union { \
138 _type v[16 / __SIZEOF_POINTER__]; \
139 }
140
141 #define side_ptr_get(_field) (_field).v[SIDE_U128_PTR_IDX(0)]
142
143 #if (__SIZEOF_POINTER__ == 4)
144 # define side_ptr_set(_field, _ptr) \
145 do { \
146 (_field).v[SIDE_U128_PTR_IDX(0)] = (_ptr); \
147 (_field).v[SIDE_U128_PTR_IDX(1)] = 0; \
148 (_field).v[SIDE_U128_PTR_IDX(2)] = 0; \
149 (_field).v[SIDE_U128_PTR_IDX(3)] = 0; \
150 } while (0)
151
152 /* Keep the correct field init order to make old g++ happy. */
153 # if (SIDE_BYTE_ORDER == SIDE_LITTLE_ENDIAN)
154 # define SIDE_PTR_INIT(...) \
155 { \
156 .v = { \
157 [0] = (__VA_ARGS__), \
158 [1] = 0, \
159 [2] = 0, \
160 [3] = 0, \
161 }, \
162 }
163 # else
164 # define SIDE_PTR_INIT(...) \
165 { \
166 .v = { \
167 [0] = 0, \
168 [1] = 0, \
169 [2] = 0, \
170 [3] = (__VA_ARGS__), \
171 }, \
172 }
173 # endif
174 #elif (__SIZEOF_POINTER__ == 8)
175 # define side_ptr_set(_field, _ptr) \
176 do { \
177 (_field).v[SIDE_U128_PTR_IDX(0)] = (_ptr); \
178 (_field).v[SIDE_U128_PTR_IDX(1)] = 0; \
179 } while (0)
180
181 /* Keep the correct field init order to make old g++ happy. */
182 # if (SIDE_BYTE_ORDER == SIDE_LITTLE_ENDIAN)
183 # define SIDE_PTR_INIT(...) \
184 { \
185 .v = { \
186 [0] = (__VA_ARGS__), \
187 [1] = 0, \
188 }, \
189 }
190 # else
191 # define SIDE_PTR_INIT(...) \
192 { \
193 .v = { \
194 [0] = 0, \
195 [1] = (__VA_ARGS__), \
196 }, \
197 }
198 # endif
199 #elif (__SIZEOF_POINTER__ == 16)
200 # define side_ptr_set(_field, _ptr) \
201 do { \
202 (_field).v[SIDE_U128_PTR_IDX(0)] = (_ptr); \
203 } while (0)
204
205 # define SIDE_PTR_INIT(...) \
206 { \
207 .v = { \
208 [0] = (__VA_ARGS__), \
209 }, \
210 }
211 #else
212 # error "Unsupported pointer size"
213 #endif
214
215 #define side_ptr_t(_type) side_raw_ptr_t(_type *)
216 #define side_func_ptr_t(_type) side_raw_ptr_t(_type)
217
218 side_static_assert(sizeof(side_ptr_t(int)) == 16,
219 "Unexpected size for side_ptr_t",
220 unexpected_size_side_ptr_t);
221
222 /*
223 * side_enum_t allows defining fixed-sized enumerations while preserving
224 * typing information.
225 */
226 #define side_enum_t(_enum_type, _size_type) \
227 union { \
228 _size_type v; \
229 struct { \
230 _enum_type t[0]; \
231 } SIDE_PACKED s; \
232 }
233
234 #define side_enum_get(_field) \
235 ((__typeof__((_field).s.t[0]))(_field).v)
236
237 #define side_enum_set(_field, _v) \
238 do { \
239 (_field).v = (_v); \
240 } while (0)
241
242 #define SIDE_ENUM_INIT(...) { .v = (__VA_ARGS__) }
243
244 #endif /* _SIDE_MACROS_H */
This page took 0.035543 seconds and 3 git commands to generate.