Support utf 16/32 for enum labels
[libside.git] / include / side / trace.h
1 // SPDX-License-Identifier: MIT
2 /*
3 * Copyright 2022 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
4 */
5
6 #ifndef _SIDE_TRACE_H
7 #define _SIDE_TRACE_H
8
9 #include <stdint.h>
10 #include <inttypes.h>
11 #include <stdlib.h>
12 #include <stdio.h>
13 #include <math.h>
14 #include <side/macros.h>
15 #include <side/endian.h>
16
17 /*
18 * SIDE stands for "Static Instrumentation Dynamically Enabled"
19 *
20 * This is an instrumentation API for Linux user-space, which exposes an
21 * instrumentation type system and facilities allowing a kernel or
22 * user-space tracer to consume user-space instrumentation.
23 *
24 * This instrumentation API exposes 3 type systems:
25 *
26 * * Stack-copy type system: This is the core type system which can
27 * represent all supported types and into which all other type systems
28 * can be nested. This type system requires that every type is
29 * statically or dynamically declared and then registered, thus giving
30 * tracers a complete description of the events and their associated
31 * fields before the associated instrumentation is invoked. The
32 * application needs to copy each argument (side_arg_...()) onto the
33 * stack when calling the instrumentation.
34 *
35 * This is the most expressive of the 3 type systems, althrough not the
36 * fastest due to the extra copy of the arguments.
37 *
38 * * Data-gathering type system: This type system requires every type to
39 * be statically or dynamically declared and registered, but does not
40 * require the application to copy its arguments onto the stack.
41 * Instead, the type description contains all the required information
42 * to fetch the data from the application memory. The only argument
43 * required from the instrumentation is the base pointer from which
44 * the data should be fetched.
45 *
46 * This type system can be used as an event field, or nested within
47 * the stack-copy type system. Nesting of gather-vla within
48 * gather-array and gather-vla types is not allowed.
49 *
50 * This type system is has the least overhead of the 3 type systems.
51 *
52 * * Dynamic type system: This type system receives both type
53 * description and actual data onto the stack at runtime. It has more
54 * overhead that the 2 other type systems, but does not require a
55 * prior registration of event field description. This makes it useful
56 * for seldom used types which are not performance critical, but for
57 * which registering each individual events would needlessly grow the
58 * number of events to declare and register.
59 *
60 * Another use-case for this type system is for use by dynamically
61 * typed language runtimes, where the field type is only known when
62 * the instrumentation is called.
63 *
64 * Those dynamic types can be either used as arguments to a variadic
65 * field list, or as on-stack instrumentation argument for a static
66 * type SIDE_TYPE_DYNAMIC place holder in the stack-copy type system.
67 */
68
69 //TODO: as those structures will be ABI, we need to either consider them
70 //fixed forever, or think of a scheme that would allow their binary
71 //representation to be extended if need be.
72
73 struct side_arg;
74 struct side_arg_vec;
75 struct side_arg_dynamic;
76 struct side_arg_dynamic_field;
77 struct side_arg_dynamic_vla;
78 struct side_type;
79 struct side_event_field;
80 struct side_tracer_visitor_ctx;
81 struct side_tracer_dynamic_struct_visitor_ctx;
82 struct side_event_description;
83 struct side_arg_dynamic_struct;
84 struct side_events_register_handle;
85
86 enum side_type_label {
87 /* Stack-copy basic types */
88 SIDE_TYPE_NULL,
89 SIDE_TYPE_BOOL,
90 SIDE_TYPE_U8,
91 SIDE_TYPE_U16,
92 SIDE_TYPE_U32,
93 SIDE_TYPE_U64,
94 SIDE_TYPE_S8,
95 SIDE_TYPE_S16,
96 SIDE_TYPE_S32,
97 SIDE_TYPE_S64,
98 SIDE_TYPE_BYTE,
99 SIDE_TYPE_POINTER,
100 SIDE_TYPE_FLOAT_BINARY16,
101 SIDE_TYPE_FLOAT_BINARY32,
102 SIDE_TYPE_FLOAT_BINARY64,
103 SIDE_TYPE_FLOAT_BINARY128,
104 SIDE_TYPE_STRING_UTF8,
105 SIDE_TYPE_STRING_UTF16,
106 SIDE_TYPE_STRING_UTF32,
107
108 /* Stack-copy compound types */
109 SIDE_TYPE_STRUCT,
110 SIDE_TYPE_ARRAY,
111 SIDE_TYPE_VLA,
112 SIDE_TYPE_VLA_VISITOR,
113
114 /* Stack-copy enumeration types */
115 SIDE_TYPE_ENUM,
116 SIDE_TYPE_ENUM_BITMAP,
117
118 /* Stack-copy place holder for dynamic types */
119 SIDE_TYPE_DYNAMIC,
120
121 /* Gather basic types */
122 SIDE_TYPE_GATHER_BOOL,
123 SIDE_TYPE_GATHER_INTEGER,
124 SIDE_TYPE_GATHER_BYTE,
125 SIDE_TYPE_GATHER_POINTER,
126 SIDE_TYPE_GATHER_FLOAT,
127 SIDE_TYPE_GATHER_STRING,
128
129 /* Gather compound types */
130 SIDE_TYPE_GATHER_STRUCT,
131 SIDE_TYPE_GATHER_ARRAY,
132 SIDE_TYPE_GATHER_VLA,
133
134 /* Gather enumeration types */
135 SIDE_TYPE_GATHER_ENUM,
136
137 /* Dynamic basic types */
138 SIDE_TYPE_DYNAMIC_NULL,
139 SIDE_TYPE_DYNAMIC_BOOL,
140 SIDE_TYPE_DYNAMIC_INTEGER,
141 SIDE_TYPE_DYNAMIC_BYTE,
142 SIDE_TYPE_DYNAMIC_POINTER,
143 SIDE_TYPE_DYNAMIC_FLOAT,
144 SIDE_TYPE_DYNAMIC_STRING,
145
146 /* Dynamic compound types */
147 SIDE_TYPE_DYNAMIC_STRUCT,
148 SIDE_TYPE_DYNAMIC_STRUCT_VISITOR,
149 SIDE_TYPE_DYNAMIC_VLA,
150 SIDE_TYPE_DYNAMIC_VLA_VISITOR,
151 };
152
153 enum side_attr_type {
154 SIDE_ATTR_TYPE_NULL,
155 SIDE_ATTR_TYPE_BOOL,
156 SIDE_ATTR_TYPE_U8,
157 SIDE_ATTR_TYPE_U16,
158 SIDE_ATTR_TYPE_U32,
159 SIDE_ATTR_TYPE_U64,
160 SIDE_ATTR_TYPE_S8,
161 SIDE_ATTR_TYPE_S16,
162 SIDE_ATTR_TYPE_S32,
163 SIDE_ATTR_TYPE_S64,
164 SIDE_ATTR_TYPE_FLOAT_BINARY16,
165 SIDE_ATTR_TYPE_FLOAT_BINARY32,
166 SIDE_ATTR_TYPE_FLOAT_BINARY64,
167 SIDE_ATTR_TYPE_FLOAT_BINARY128,
168 SIDE_ATTR_TYPE_STRING_UTF8,
169 SIDE_ATTR_TYPE_STRING_UTF16,
170 SIDE_ATTR_TYPE_STRING_UTF32,
171 };
172
173 enum side_loglevel {
174 SIDE_LOGLEVEL_EMERG = 0,
175 SIDE_LOGLEVEL_ALERT = 1,
176 SIDE_LOGLEVEL_CRIT = 2,
177 SIDE_LOGLEVEL_ERR = 3,
178 SIDE_LOGLEVEL_WARNING = 4,
179 SIDE_LOGLEVEL_NOTICE = 5,
180 SIDE_LOGLEVEL_INFO = 6,
181 SIDE_LOGLEVEL_DEBUG = 7,
182 };
183
184 enum side_visitor_status {
185 SIDE_VISITOR_STATUS_OK = 0,
186 SIDE_VISITOR_STATUS_ERROR = -1,
187 };
188
189 enum side_error {
190 SIDE_ERROR_OK = 0,
191 SIDE_ERROR_INVAL = 1,
192 SIDE_ERROR_EXIST = 2,
193 SIDE_ERROR_NOMEM = 3,
194 SIDE_ERROR_NOENT = 4,
195 SIDE_ERROR_EXITING = 5,
196 };
197
198 enum side_type_label_byte_order {
199 SIDE_TYPE_BYTE_ORDER_LE = 0,
200 SIDE_TYPE_BYTE_ORDER_BE = 1,
201 };
202
203 #if (SIDE_BYTE_ORDER == SIDE_LITTLE_ENDIAN)
204 # define SIDE_TYPE_BYTE_ORDER_HOST SIDE_TYPE_BYTE_ORDER_LE
205 #else
206 # define SIDE_TYPE_BYTE_ORDER_HOST SIDE_TYPE_BYTE_ORDER_BE
207 #endif
208
209 #if (SIDE_FLOAT_WORD_ORDER == SIDE_LITTLE_ENDIAN)
210 # define SIDE_TYPE_FLOAT_WORD_ORDER_HOST SIDE_TYPE_BYTE_ORDER_LE
211 #else
212 # define SIDE_TYPE_FLOAT_WORD_ORDER_HOST SIDE_TYPE_BYTE_ORDER_BE
213 #endif
214
215 enum side_type_gather_access_mode {
216 SIDE_TYPE_GATHER_ACCESS_DIRECT,
217 SIDE_TYPE_GATHER_ACCESS_POINTER, /* Pointer dereference */
218 };
219
220 typedef enum side_visitor_status (*side_visitor_func)(
221 const struct side_tracer_visitor_ctx *tracer_ctx,
222 void *app_ctx);
223 typedef enum side_visitor_status (*side_dynamic_struct_visitor_func)(
224 const struct side_tracer_dynamic_struct_visitor_ctx *tracer_ctx,
225 void *app_ctx);
226
227 union side_integer_value {
228 uint8_t side_u8;
229 uint16_t side_u16;
230 uint32_t side_u32;
231 uint64_t side_u64;
232 int8_t side_s8;
233 int16_t side_s16;
234 int32_t side_s32;
235 int64_t side_s64;
236 uintptr_t side_uptr;
237 } SIDE_PACKED;
238
239 union side_bool_value {
240 uint8_t side_bool8;
241 uint16_t side_bool16;
242 uint32_t side_bool32;
243 uint64_t side_bool64;
244 } SIDE_PACKED;
245
246 union side_float_value {
247 #if __HAVE_FLOAT16
248 _Float16 side_float_binary16;
249 #endif
250 #if __HAVE_FLOAT32
251 _Float32 side_float_binary32;
252 #endif
253 #if __HAVE_FLOAT64
254 _Float64 side_float_binary64;
255 #endif
256 #if __HAVE_FLOAT128
257 _Float128 side_float_binary128;
258 #endif
259 } SIDE_PACKED;
260
261 struct side_attr_value {
262 uint32_t type; /* enum side_attr_type */
263 union {
264 uint8_t bool_value;
265 uint64_t string_value; /* const { uint8_t, uint16_t, uint32_t } * */
266 union side_integer_value integer_value;
267 union side_float_value float_value;
268 } SIDE_PACKED u;
269 };
270
271 struct side_type_raw_string {
272 const void *p; /* pointer to string */
273 uint8_t unit_size; /* 1, 2, or 4 bytes */
274 uint8_t byte_order; /* enum side_type_label_byte_order */
275 } SIDE_PACKED;
276
277 /* User attributes. */
278 struct side_attr {
279 const struct side_type_raw_string key;
280 const struct side_attr_value value;
281 } SIDE_PACKED;
282
283 /* Type descriptions */
284 struct side_type_null {
285 const struct side_attr *attr;
286 uint32_t nr_attr;
287 } SIDE_PACKED;
288
289 struct side_type_bool {
290 const struct side_attr *attr;
291 uint32_t nr_attr;
292 uint16_t bool_size; /* bytes */
293 uint16_t len_bits; /* bits. 0 for (bool_size * CHAR_BITS) */
294 uint8_t byte_order; /* enum side_type_label_byte_order */
295 } SIDE_PACKED;
296
297 struct side_type_byte {
298 const struct side_attr *attr;
299 uint32_t nr_attr;
300 } SIDE_PACKED;
301
302 struct side_type_string {
303 const struct side_attr *attr;
304 uint32_t nr_attr;
305 uint8_t unit_size; /* 1, 2, or 4 bytes */
306 uint8_t byte_order; /* enum side_type_label_byte_order */
307 } SIDE_PACKED;
308
309 struct side_type_integer {
310 const struct side_attr *attr;
311 uint32_t nr_attr;
312 uint16_t integer_size; /* bytes */
313 uint16_t len_bits; /* bits. 0 for (integer_size * CHAR_BITS) */
314 uint8_t signedness; /* true/false */
315 uint8_t byte_order; /* enum side_type_label_byte_order */
316 } SIDE_PACKED;
317
318 struct side_type_float {
319 const struct side_attr *attr;
320 uint32_t nr_attr;
321 uint16_t float_size; /* bytes */
322 uint8_t byte_order; /* enum side_type_label_byte_order */
323 } SIDE_PACKED;
324
325 struct side_enum_mapping {
326 int64_t range_begin;
327 int64_t range_end;
328 struct side_type_raw_string label;
329 } SIDE_PACKED;
330
331 struct side_enum_mappings {
332 const struct side_enum_mapping *mappings;
333 const struct side_attr *attr;
334 uint32_t nr_mappings;
335 uint32_t nr_attr;
336 } SIDE_PACKED;
337
338 struct side_enum_bitmap_mapping {
339 uint64_t range_begin;
340 uint64_t range_end;
341 struct side_type_raw_string label;
342 } SIDE_PACKED;
343
344 struct side_enum_bitmap_mappings {
345 const struct side_enum_bitmap_mapping *mappings;
346 const struct side_attr *attr;
347 uint32_t nr_mappings;
348 uint32_t nr_attr;
349 } SIDE_PACKED;
350
351 struct side_type_struct {
352 const struct side_event_field *fields;
353 const struct side_attr *attr;
354 uint32_t nr_fields;
355 uint32_t nr_attr;
356 } SIDE_PACKED;
357
358 struct side_type_array {
359 const struct side_type *elem_type;
360 const struct side_attr *attr;
361 uint32_t length;
362 uint32_t nr_attr;
363 } SIDE_PACKED;
364
365 struct side_type_vla {
366 const struct side_type *elem_type;
367 const struct side_attr *attr;
368 uint32_t nr_attr;
369 } SIDE_PACKED;
370
371 struct side_type_vla_visitor {
372 const struct side_type *elem_type;
373 side_visitor_func visitor;
374 const struct side_attr *attr;
375 uint32_t nr_attr;
376 } SIDE_PACKED;
377
378 struct side_type_enum {
379 const struct side_enum_mappings *mappings;
380 const struct side_type *elem_type;
381 } SIDE_PACKED;
382
383 struct side_type_enum_bitmap {
384 const struct side_enum_bitmap_mappings *mappings;
385 const struct side_type *elem_type;
386 } SIDE_PACKED;
387
388 struct side_type_gather_bool {
389 uint64_t offset; /* bytes */
390 uint8_t access_mode; /* enum side_type_gather_access_mode */
391 struct side_type_bool type;
392 uint16_t offset_bits; /* bits */
393 } SIDE_PACKED;
394
395 struct side_type_gather_byte {
396 uint64_t offset; /* bytes */
397 uint8_t access_mode; /* enum side_type_gather_access_mode */
398 struct side_type_byte type;
399 } SIDE_PACKED;
400
401 struct side_type_gather_integer {
402 uint64_t offset; /* bytes */
403 uint8_t access_mode; /* enum side_type_gather_access_mode */
404 struct side_type_integer type;
405 uint16_t offset_bits; /* bits */
406 } SIDE_PACKED;
407
408 struct side_type_gather_float {
409 uint64_t offset; /* bytes */
410 uint8_t access_mode; /* enum side_type_gather_access_mode */
411 struct side_type_float type;
412 } SIDE_PACKED;
413
414 struct side_type_gather_string {
415 uint64_t offset; /* bytes */
416 uint8_t access_mode; /* enum side_type_gather_access_mode */
417 struct side_type_string type;
418 } SIDE_PACKED;
419
420 struct side_type_gather_enum {
421 const struct side_enum_mappings *mappings;
422 const struct side_type *elem_type;
423 } SIDE_PACKED;
424
425 struct side_type_gather_struct {
426 uint64_t offset; /* bytes */
427 uint8_t access_mode; /* enum side_type_gather_access_mode */
428 const struct side_type_struct *type;
429 uint32_t size; /* bytes */
430 } SIDE_PACKED;
431
432 struct side_type_gather_array {
433 uint64_t offset; /* bytes */
434 uint8_t access_mode; /* enum side_type_gather_access_mode */
435 struct side_type_array type;
436 } SIDE_PACKED;
437
438 struct side_type_gather_vla {
439 const struct side_type *length_type; /* side_length() */
440
441 uint64_t offset; /* bytes */
442 uint8_t access_mode; /* enum side_type_gather_access_mode */
443 struct side_type_vla type;
444 } SIDE_PACKED;
445
446 struct side_type_gather {
447 union {
448 struct side_type_gather_bool side_bool;
449 struct side_type_gather_byte side_byte;
450 struct side_type_gather_integer side_integer;
451 struct side_type_gather_float side_float;
452 struct side_type_gather_string side_string;
453 struct side_type_gather_enum side_enum;
454 struct side_type_gather_array side_array;
455 struct side_type_gather_vla side_vla;
456 struct side_type_gather_struct side_struct;
457 } SIDE_PACKED u;
458 } SIDE_PACKED;
459
460 struct side_type {
461 uint32_t type; /* enum side_type_label */
462 union {
463 /* Stack-copy basic types */
464 struct side_type_null side_null;
465 struct side_type_bool side_bool;
466 struct side_type_byte side_byte;
467 struct side_type_string side_string;
468 struct side_type_integer side_integer;
469 struct side_type_float side_float;
470
471 /* Stack-copy compound types */
472 struct side_type_array side_array;
473 struct side_type_vla side_vla;
474 struct side_type_vla_visitor side_vla_visitor;
475 const struct side_type_struct *side_struct;
476
477 /* Stack-copy enumeration types */
478 struct side_type_enum side_enum;
479 struct side_type_enum_bitmap side_enum_bitmap;
480
481 /* Gather types */
482 struct side_type_gather side_gather;
483 } SIDE_PACKED u;
484 } SIDE_PACKED;
485
486 struct side_event_field {
487 const char *field_name;
488 struct side_type side_type;
489 } SIDE_PACKED;
490
491 enum side_event_flags {
492 SIDE_EVENT_FLAG_VARIADIC = (1 << 0),
493 };
494
495 struct side_callback {
496 union {
497 void (*call)(const struct side_event_description *desc,
498 const struct side_arg_vec *side_arg_vec,
499 void *priv);
500 void (*call_variadic)(const struct side_event_description *desc,
501 const struct side_arg_vec *side_arg_vec,
502 const struct side_arg_dynamic_struct *var_struct,
503 void *priv);
504 } SIDE_PACKED u;
505 void *priv;
506 } SIDE_PACKED;
507
508 struct side_arg_static {
509 /* Stack-copy basic types */
510 union side_bool_value bool_value;
511 uint8_t byte_value;
512 uint64_t string_value; /* const {uint8_t, uint16_t, uint32_t} * */
513 union side_integer_value integer_value;
514 union side_float_value float_value;
515
516 /* Stack-copy compound types */
517 const struct side_arg_vec *side_struct;
518 const struct side_arg_vec *side_array;
519 const struct side_arg_vec *side_vla;
520 void *side_vla_app_visitor_ctx;
521
522 /* Gather basic types */
523 void *side_bool_gather_ptr;
524 void *side_byte_gather_ptr;
525 void *side_integer_gather_ptr;
526 void *side_float_gather_ptr;
527 void *side_string_gather_ptr;
528
529 /* Gather compound types */
530 void *side_array_gather_ptr;
531 void *side_struct_gather_ptr;
532 struct {
533 void *ptr;
534 void *length_ptr;
535 } SIDE_PACKED side_vla_gather;
536 } SIDE_PACKED;
537
538 struct side_arg_dynamic_vla {
539 const struct side_arg *sav;
540 const struct side_attr *attr;
541 uint32_t len;
542 uint32_t nr_attr;
543 } SIDE_PACKED;
544
545 struct side_arg_dynamic_struct {
546 const struct side_arg_dynamic_field *fields;
547 const struct side_attr *attr;
548 uint32_t len;
549 uint32_t nr_attr;
550 } SIDE_PACKED;
551
552 struct side_dynamic_struct_visitor {
553 void *app_ctx;
554 side_dynamic_struct_visitor_func visitor;
555 const struct side_attr *attr;
556 uint32_t nr_attr;
557 } SIDE_PACKED;
558
559 struct side_dynamic_vla_visitor {
560 void *app_ctx;
561 side_visitor_func visitor;
562 const struct side_attr *attr;
563 uint32_t nr_attr;
564 } SIDE_PACKED;
565
566 struct side_arg_dynamic {
567 /* Dynamic basic types */
568 struct side_type_null side_null;
569 struct {
570 struct side_type_bool type;
571 union side_bool_value value;
572 } SIDE_PACKED side_bool;
573 struct {
574 struct side_type_byte type;
575 uint8_t value;
576 } SIDE_PACKED side_byte;
577 struct {
578 struct side_type_string type;
579 uint64_t value; /* const char * */
580 } SIDE_PACKED side_string;
581 struct {
582 struct side_type_integer type;
583 union side_integer_value value;
584 } SIDE_PACKED side_integer;
585 struct {
586 struct side_type_float type;
587 union side_float_value value;
588 } SIDE_PACKED side_float;
589
590 /* Dynamic compound types */
591 const struct side_arg_dynamic_struct *side_dynamic_struct;
592 const struct side_arg_dynamic_vla *side_dynamic_vla;
593
594 struct side_dynamic_struct_visitor side_dynamic_struct_visitor;
595 struct side_dynamic_vla_visitor side_dynamic_vla_visitor;
596 } SIDE_PACKED;
597
598 struct side_arg {
599 uint32_t type; /* enum side_type_label */
600 union {
601 struct side_arg_static side_static;
602 struct side_arg_dynamic side_dynamic;
603 } SIDE_PACKED u;
604 } SIDE_PACKED;
605
606 struct side_arg_vec {
607 const struct side_arg *sav;
608 uint32_t len;
609 } SIDE_PACKED;
610
611 struct side_arg_dynamic_field {
612 const char *field_name;
613 const struct side_arg elem;
614 } SIDE_PACKED;
615
616 /* The visitor pattern is a double-dispatch visitor. */
617 struct side_tracer_visitor_ctx {
618 enum side_visitor_status (*write_elem)(
619 const struct side_tracer_visitor_ctx *tracer_ctx,
620 const struct side_arg *elem);
621 void *priv; /* Private tracer context. */
622 } SIDE_PACKED;
623
624 struct side_tracer_dynamic_struct_visitor_ctx {
625 enum side_visitor_status (*write_field)(
626 const struct side_tracer_dynamic_struct_visitor_ctx *tracer_ctx,
627 const struct side_arg_dynamic_field *dynamic_field);
628 void *priv; /* Private tracer context. */
629 } SIDE_PACKED;
630
631 struct side_event_description {
632 uintptr_t *enabled;
633 const char *provider_name;
634 const char *event_name;
635 const struct side_event_field *fields;
636 const struct side_attr *attr;
637 const struct side_callback *callbacks;
638 uint64_t flags;
639 uint32_t version;
640 uint32_t loglevel; /* enum side_loglevel */
641 uint32_t nr_fields;
642 uint32_t nr_attr;
643 uint32_t nr_callbacks;
644 } SIDE_PACKED;
645
646 /* Event and type attributes */
647
648 #define side_attr(_key, _value) \
649 { \
650 .key = { \
651 .p = (_key), \
652 .unit_size = sizeof(uint8_t), \
653 .byte_order = SIDE_TYPE_BYTE_ORDER_HOST, \
654 }, \
655 .value = SIDE_PARAM(_value), \
656 }
657
658 #define side_attr_list(...) \
659 SIDE_COMPOUND_LITERAL(const struct side_attr, __VA_ARGS__)
660
661 #define side_attr_null(_val) { .type = SIDE_ATTR_TYPE_NULL }
662 #define side_attr_bool(_val) { .type = SIDE_ATTR_TYPE_BOOL, .u = { .bool_value = !!(_val) } }
663 #define side_attr_u8(_val) { .type = SIDE_ATTR_TYPE_U8, .u = { .integer_value = { .side_u8 = (_val) } } }
664 #define side_attr_u16(_val) { .type = SIDE_ATTR_TYPE_U16, .u = { .integer_value = { .side_u16 = (_val) } } }
665 #define side_attr_u32(_val) { .type = SIDE_ATTR_TYPE_U32, .u = { .integer_value = { .side_u32 = (_val) } } }
666 #define side_attr_u64(_val) { .type = SIDE_ATTR_TYPE_U64, .u = { .integer_value = { .side_u64 = (_val) } } }
667 #define side_attr_s8(_val) { .type = SIDE_ATTR_TYPE_S8, .u = { .integer_value = { .side_s8 = (_val) } } }
668 #define side_attr_s16(_val) { .type = SIDE_ATTR_TYPE_S16, .u = { .integer_value = { .side_s16 = (_val) } } }
669 #define side_attr_s32(_val) { .type = SIDE_ATTR_TYPE_S32, .u = { .integer_value = { .side_s32 = (_val) } } }
670 #define side_attr_s64(_val) { .type = SIDE_ATTR_TYPE_S64, .u = { .integer_value = { .side_s64 = (_val) } } }
671 #define side_attr_float_binary16(_val) { .type = SIDE_ATTR_TYPE_FLOAT_BINARY16, .u = { .float_value = { .side_float_binary16 = (_val) } } }
672 #define side_attr_float_binary32(_val) { .type = SIDE_ATTR_TYPE_FLOAT_BINARY32, .u = { .float_value = { .side_float_binary32 = (_val) } } }
673 #define side_attr_float_binary64(_val) { .type = SIDE_ATTR_TYPE_FLOAT_BINARY64, .u = { .float_value = { .side_float_binary64 = (_val) } } }
674 #define side_attr_float_binary128(_val) { .type = SIDE_ATTR_TYPE_FLOAT_BINARY128, .u = { .float_value = { .side_float_binary128 = (_val) } } }
675 #define side_attr_string(_val) { .type = SIDE_ATTR_TYPE_STRING_UTF8, .u = { .string_value = (uintptr_t) (_val) } }
676 #define side_attr_string16(_val) { .type = SIDE_ATTR_TYPE_STRING_UTF16, .u = { .string_value = (uintptr_t) (_val) } }
677 #define side_attr_string32(_val) { .type = SIDE_ATTR_TYPE_STRING_UTF32, .u = { .string_value = (uintptr_t) (_val) } }
678
679 /* Stack-copy enumeration type definitions */
680
681 #define side_define_enum(_identifier, _mappings, _attr) \
682 const struct side_enum_mappings _identifier = { \
683 .mappings = _mappings, \
684 .attr = _attr, \
685 .nr_mappings = SIDE_ARRAY_SIZE(SIDE_PARAM(_mappings)), \
686 .nr_attr = SIDE_ARRAY_SIZE(SIDE_PARAM(_attr)), \
687 }
688
689 #define side_enum_mapping_list(...) \
690 SIDE_COMPOUND_LITERAL(const struct side_enum_mapping, __VA_ARGS__)
691
692 #define side_enum_mapping_range(_label, _begin, _end) \
693 { \
694 .range_begin = _begin, \
695 .range_end = _end, \
696 .label = { \
697 .p = (_label), \
698 .unit_size = sizeof(uint8_t), \
699 .byte_order = SIDE_TYPE_BYTE_ORDER_HOST, \
700 }, \
701 }
702
703 #define side_enum_mapping_value(_label, _value) \
704 { \
705 .range_begin = _value, \
706 .range_end = _value, \
707 .label = { \
708 .p = (_label), \
709 .unit_size = sizeof(uint8_t), \
710 .byte_order = SIDE_TYPE_BYTE_ORDER_HOST, \
711 }, \
712 }
713
714 #define side_define_enum_bitmap(_identifier, _mappings, _attr) \
715 const struct side_enum_bitmap_mappings _identifier = { \
716 .mappings = _mappings, \
717 .attr = _attr, \
718 .nr_mappings = SIDE_ARRAY_SIZE(SIDE_PARAM(_mappings)), \
719 .nr_attr = SIDE_ARRAY_SIZE(SIDE_PARAM(_attr)), \
720 }
721
722 #define side_enum_bitmap_mapping_list(...) \
723 SIDE_COMPOUND_LITERAL(const struct side_enum_bitmap_mapping, __VA_ARGS__)
724
725 #define side_enum_bitmap_mapping_range(_label, _begin, _end) \
726 { \
727 .range_begin = _begin, \
728 .range_end = _end, \
729 .label = { \
730 .p = (_label), \
731 .unit_size = sizeof(uint8_t), \
732 .byte_order = SIDE_TYPE_BYTE_ORDER_HOST, \
733 }, \
734 }
735
736 #define side_enum_bitmap_mapping_value(_label, _value) \
737 { \
738 .range_begin = _value, \
739 .range_end = _value, \
740 .label = { \
741 .p = (_label), \
742 .unit_size = sizeof(uint8_t), \
743 .byte_order = SIDE_TYPE_BYTE_ORDER_HOST, \
744 }, \
745 }
746
747 /* Stack-copy field and type definitions */
748
749 #define side_type_null(_attr) \
750 { \
751 .type = SIDE_TYPE_NULL, \
752 .u = { \
753 .side_null = { \
754 .attr = _attr, \
755 .nr_attr = SIDE_ARRAY_SIZE(SIDE_PARAM(_attr)), \
756 }, \
757 }, \
758 }
759
760 #define side_type_bool(_attr) \
761 { \
762 .type = SIDE_TYPE_BOOL, \
763 .u = { \
764 .side_bool = { \
765 .attr = _attr, \
766 .nr_attr = SIDE_ARRAY_SIZE(SIDE_PARAM(_attr)), \
767 .bool_size = sizeof(uint8_t), \
768 .len_bits = 0, \
769 .byte_order = SIDE_TYPE_BYTE_ORDER_HOST, \
770 }, \
771 }, \
772 }
773
774 #define side_type_byte(_attr) \
775 { \
776 .type = SIDE_TYPE_BYTE, \
777 .u = { \
778 .side_byte = { \
779 .attr = _attr, \
780 .nr_attr = SIDE_ARRAY_SIZE(SIDE_PARAM(_attr)), \
781 }, \
782 }, \
783 }
784
785 #define _side_type_string(_type, _byte_order, _unit_size, _attr) \
786 { \
787 .type = _type, \
788 .u = { \
789 .side_string = { \
790 .attr = _attr, \
791 .nr_attr = SIDE_ARRAY_SIZE(SIDE_PARAM(_attr)), \
792 .unit_size = _unit_size, \
793 .byte_order = _byte_order, \
794 }, \
795 }, \
796 }
797
798 #define side_type_dynamic() \
799 { \
800 .type = SIDE_TYPE_DYNAMIC, \
801 }
802
803 #define _side_type_integer(_type, _signedness, _byte_order, _integer_size, _len_bits, _attr) \
804 { \
805 .type = _type, \
806 .u = { \
807 .side_integer = { \
808 .attr = _attr, \
809 .nr_attr = SIDE_ARRAY_SIZE(SIDE_PARAM(_attr)), \
810 .integer_size = _integer_size, \
811 .len_bits = _len_bits, \
812 .signedness = _signedness, \
813 .byte_order = _byte_order, \
814 }, \
815 }, \
816 }
817
818 #define _side_type_float(_type, _byte_order, _float_size, _attr) \
819 { \
820 .type = _type, \
821 .u = { \
822 .side_float = { \
823 .attr = _attr, \
824 .nr_attr = SIDE_ARRAY_SIZE(SIDE_PARAM(_attr)), \
825 .float_size = _float_size, \
826 .byte_order = _byte_order, \
827 }, \
828 }, \
829 }
830
831 #define _side_field(_name, _type) \
832 { \
833 .field_name = _name, \
834 .side_type = _type, \
835 }
836
837 /* Host endian */
838 #define side_type_u8(_attr) _side_type_integer(SIDE_TYPE_U8, false, SIDE_TYPE_BYTE_ORDER_HOST, sizeof(uint8_t), 0, SIDE_PARAM(_attr))
839 #define side_type_u16(_attr) _side_type_integer(SIDE_TYPE_U16, false, SIDE_TYPE_BYTE_ORDER_HOST, sizeof(uint16_t), 0, SIDE_PARAM(_attr))
840 #define side_type_u32(_attr) _side_type_integer(SIDE_TYPE_U32, false, SIDE_TYPE_BYTE_ORDER_HOST, sizeof(uint32_t), 0, SIDE_PARAM(_attr))
841 #define side_type_u64(_attr) _side_type_integer(SIDE_TYPE_U64, false, SIDE_TYPE_BYTE_ORDER_HOST, sizeof(uint64_t), 0, SIDE_PARAM(_attr))
842 #define side_type_s8(_attr) _side_type_integer(SIDE_TYPE_S8, true, SIDE_TYPE_BYTE_ORDER_HOST, sizeof(int8_t), 0, SIDE_PARAM(_attr))
843 #define side_type_s16(_attr) _side_type_integer(SIDE_TYPE_S16, true, SIDE_TYPE_BYTE_ORDER_HOST, sizeof(int16_t), 0, SIDE_PARAM(_attr))
844 #define side_type_s32(_attr) _side_type_integer(SIDE_TYPE_S32, true, SIDE_TYPE_BYTE_ORDER_HOST, sizeof(int32_t), 0, SIDE_PARAM(_attr))
845 #define side_type_s64(_attr) _side_type_integer(SIDE_TYPE_S64, true, SIDE_TYPE_BYTE_ORDER_HOST, sizeof(int64_t), 0, SIDE_PARAM(_attr))
846 #define side_type_pointer(_attr) _side_type_integer(SIDE_TYPE_POINTER, false, SIDE_TYPE_BYTE_ORDER_HOST, sizeof(uintptr_t), 0, SIDE_PARAM(_attr))
847 #define side_type_float_binary16(_attr) _side_type_float(SIDE_TYPE_FLOAT_BINARY16, SIDE_TYPE_FLOAT_WORD_ORDER_HOST, sizeof(_Float16), SIDE_PARAM(_attr))
848 #define side_type_float_binary32(_attr) _side_type_float(SIDE_TYPE_FLOAT_BINARY32, SIDE_TYPE_FLOAT_WORD_ORDER_HOST, sizeof(_Float32), SIDE_PARAM(_attr))
849 #define side_type_float_binary64(_attr) _side_type_float(SIDE_TYPE_FLOAT_BINARY64, SIDE_TYPE_FLOAT_WORD_ORDER_HOST, sizeof(_Float64), SIDE_PARAM(_attr))
850 #define side_type_float_binary128(_attr) _side_type_float(SIDE_TYPE_FLOAT_BINARY128, SIDE_TYPE_FLOAT_WORD_ORDER_HOST, sizeof(_Float128), SIDE_PARAM(_attr))
851 #define side_type_string(_attr) _side_type_string(SIDE_TYPE_STRING_UTF8, SIDE_TYPE_BYTE_ORDER_HOST, sizeof(uint8_t), SIDE_PARAM(_attr))
852 #define side_type_string16(_attr) _side_type_string(SIDE_TYPE_STRING_UTF16, SIDE_TYPE_BYTE_ORDER_HOST, sizeof(uint16_t), SIDE_PARAM(_attr))
853 #define side_type_string32(_attr) _side_type_string(SIDE_TYPE_STRING_UTF32, SIDE_TYPE_BYTE_ORDER_HOST, sizeof(uint32_t), SIDE_PARAM(_attr))
854
855 #define side_field_null(_name, _attr) _side_field(_name, side_type_null(SIDE_PARAM(_attr)))
856 #define side_field_bool(_name, _attr) _side_field(_name, side_type_bool(SIDE_PARAM(_attr)))
857 #define side_field_u8(_name, _attr) _side_field(_name, side_type_u8(SIDE_PARAM(_attr)))
858 #define side_field_u16(_name, _attr) _side_field(_name, side_type_u16(SIDE_PARAM(_attr)))
859 #define side_field_u32(_name, _attr) _side_field(_name, side_type_u32(SIDE_PARAM(_attr)))
860 #define side_field_u64(_name, _attr) _side_field(_name, side_type_u64(SIDE_PARAM(_attr)))
861 #define side_field_s8(_name, _attr) _side_field(_name, side_type_s8(SIDE_PARAM(_attr)))
862 #define side_field_s16(_name, _attr) _side_field(_name, side_type_s16(SIDE_PARAM(_attr)))
863 #define side_field_s32(_name, _attr) _side_field(_name, side_type_s32(SIDE_PARAM(_attr)))
864 #define side_field_s64(_name, _attr) _side_field(_name, side_type_s64(SIDE_PARAM(_attr)))
865 #define side_field_byte(_name, _attr) _side_field(_name, side_type_byte(SIDE_PARAM(_attr)))
866 #define side_field_pointer(_name, _attr) _side_field(_name, side_type_pointer(SIDE_PARAM(_attr)))
867 #define side_field_float_binary16(_name, _attr) _side_field(_name, side_type_float_binary16(SIDE_PARAM(_attr)))
868 #define side_field_float_binary32(_name, _attr) _side_field(_name, side_type_float_binary32(SIDE_PARAM(_attr)))
869 #define side_field_float_binary64(_name, _attr) _side_field(_name, side_type_float_binary64(SIDE_PARAM(_attr)))
870 #define side_field_float_binary128(_name, _attr) _side_field(_name, side_type_float_binary128(SIDE_PARAM(_attr)))
871 #define side_field_string(_name, _attr) _side_field(_name, side_type_string(SIDE_PARAM(_attr)))
872 #define side_field_string16(_name, _attr) _side_field(_name, side_type_string16(SIDE_PARAM(_attr)))
873 #define side_field_string32(_name, _attr) _side_field(_name, side_type_string32(SIDE_PARAM(_attr)))
874 #define side_field_dynamic(_name) _side_field(_name, side_type_dynamic())
875
876 /* Little endian */
877 #define side_type_u16_le(_attr) _side_type_integer(SIDE_TYPE_U16, false, SIDE_TYPE_BYTE_ORDER_LE, sizeof(uint16_t), 0, SIDE_PARAM(_attr))
878 #define side_type_u32_le(_attr) _side_type_integer(SIDE_TYPE_U32, false, SIDE_TYPE_BYTE_ORDER_LE, sizeof(uint32_t), 0, SIDE_PARAM(_attr))
879 #define side_type_u64_le(_attr) _side_type_integer(SIDE_TYPE_U64, false, SIDE_TYPE_BYTE_ORDER_LE, sizeof(uint64_t), 0, SIDE_PARAM(_attr))
880 #define side_type_s16_le(_attr) _side_type_integer(SIDE_TYPE_S16, true, SIDE_TYPE_BYTE_ORDER_LE, sizeof(int16_t), 0, SIDE_PARAM(_attr))
881 #define side_type_s32_le(_attr) _side_type_integer(SIDE_TYPE_S32, true, SIDE_TYPE_BYTE_ORDER_LE, sizeof(int32_t), 0, SIDE_PARAM(_attr))
882 #define side_type_s64_le(_attr) _side_type_integer(SIDE_TYPE_S64, true, SIDE_TYPE_BYTE_ORDER_LE, sizeof(int64_t), 0, SIDE_PARAM(_attr))
883 #define side_type_pointer_le(_attr) _side_type_integer(SIDE_TYPE_POINTER, false, SIDE_TYPE_BYTE_ORDER_LE, sizeof(uintptr_t), 0, SIDE_PARAM(_attr))
884 #define side_type_float_binary16_le(_attr) _side_type_float(SIDE_TYPE_FLOAT_BINARY16, SIDE_TYPE_BYTE_ORDER_LE, sizeof(_Float16), SIDE_PARAM(_attr))
885 #define side_type_float_binary32_le(_attr) _side_type_float(SIDE_TYPE_FLOAT_BINARY32, SIDE_TYPE_BYTE_ORDER_LE, sizeof(_Float32), SIDE_PARAM(_attr))
886 #define side_type_float_binary64_le(_attr) _side_type_float(SIDE_TYPE_FLOAT_BINARY64, SIDE_TYPE_BYTE_ORDER_LE, sizeof(_Float64), SIDE_PARAM(_attr))
887 #define side_type_float_binary128_le(_attr) _side_type_float(SIDE_TYPE_FLOAT_BINARY128, SIDE_TYPE_BYTE_ORDER_LE, sizeof(_Float128), SIDE_PARAM(_attr))
888 #define side_type_string16_le(_attr) _side_type_string(SIDE_TYPE_STRING_UTF16, SIDE_TYPE_BYTE_ORDER_LE, sizeof(uint16_t), SIDE_PARAM(_attr))
889 #define side_type_string32_le(_attr) _side_type_string(SIDE_TYPE_STRING_UTF32, SIDE_TYPE_BYTE_ORDER_LE, sizeof(uint32_t), SIDE_PARAM(_attr))
890
891 #define side_field_u16_le(_name, _attr) _side_field(_name, side_type_u16_le(SIDE_PARAM(_attr)))
892 #define side_field_u32_le(_name, _attr) _side_field(_name, side_type_u32_le(SIDE_PARAM(_attr)))
893 #define side_field_u64_le(_name, _attr) _side_field(_name, side_type_u64_le(SIDE_PARAM(_attr)))
894 #define side_field_s16_le(_name, _attr) _side_field(_name, side_type_s16_le(SIDE_PARAM(_attr)))
895 #define side_field_s32_le(_name, _attr) _side_field(_name, side_type_s32_le(SIDE_PARAM(_attr)))
896 #define side_field_s64_le(_name, _attr) _side_field(_name, side_type_s64_le(SIDE_PARAM(_attr)))
897 #define side_field_pointer_le(_name, _attr) _side_field(_name, side_type_pointer_le(SIDE_PARAM(_attr)))
898 #define side_field_float_binary16_le(_name, _attr) _side_field(_name, side_type_float_binary16_le(SIDE_PARAM(_attr)))
899 #define side_field_float_binary32_le(_name, _attr) _side_field(_name, side_type_float_binary32_le(SIDE_PARAM(_attr)))
900 #define side_field_float_binary64_le(_name, _attr) _side_field(_name, side_type_float_binary64_le(SIDE_PARAM(_attr)))
901 #define side_field_float_binary128_le(_name, _attr) _side_field(_name, side_type_float_binary128_le(SIDE_PARAM(_attr)))
902 #define side_field_string16_le(_name, _attr) _side_field(_name, side_type_string16_le(SIDE_PARAM(_attr)))
903 #define side_field_string32_le(_name, _attr) _side_field(_name, side_type_string32_le(SIDE_PARAM(_attr)))
904
905 /* Big endian */
906 #define side_type_u16_be(_attr) _side_type_integer(SIDE_TYPE_U16, false, SIDE_TYPE_BYTE_ORDER_BE, sizeof(uint16_t), 0, SIDE_PARAM(_attr))
907 #define side_type_u32_be(_attr) _side_type_integer(SIDE_TYPE_U32, false, SIDE_TYPE_BYTE_ORDER_BE, sizeof(uint32_t), 0, SIDE_PARAM(_attr))
908 #define side_type_u64_be(_attr) _side_type_integer(SIDE_TYPE_U64, false, SIDE_TYPE_BYTE_ORDER_BE, sizeof(uint64_t), 0, SIDE_PARAM(_attr))
909 #define side_type_s16_be(_attr) _side_type_integer(SIDE_TYPE_S16, false, SIDE_TYPE_BYTE_ORDER_BE, sizeof(int16_t), 0, SIDE_PARAM(_attr))
910 #define side_type_s32_be(_attr) _side_type_integer(SIDE_TYPE_S32, false, SIDE_TYPE_BYTE_ORDER_BE, sizeof(int32_t), 0, SIDE_PARAM(_attr))
911 #define side_type_s64_be(_attr) _side_type_integer(SIDE_TYPE_S64, false, SIDE_TYPE_BYTE_ORDER_BE, sizeof(int64_t), 0, SIDE_PARAM(_attr))
912 #define side_type_pointer_be(_attr) _side_type_integer(SIDE_TYPE_POINTER, false, SIDE_TYPE_BYTE_ORDER_BE, sizeof(uintptr_t), 0, SIDE_PARAM(_attr))
913 #define side_type_float_binary16_be(_attr) _side_type_float(SIDE_TYPE_FLOAT_BINARY16, SIDE_TYPE_BYTE_ORDER_BE, sizeof(_Float16), SIDE_PARAM(_attr))
914 #define side_type_float_binary32_be(_attr) _side_type_float(SIDE_TYPE_FLOAT_BINARY32, SIDE_TYPE_BYTE_ORDER_BE, sizeof(_Float32), SIDE_PARAM(_attr))
915 #define side_type_float_binary64_be(_attr) _side_type_float(SIDE_TYPE_FLOAT_BINARY64, SIDE_TYPE_BYTE_ORDER_BE, sizeof(_Float64), SIDE_PARAM(_attr))
916 #define side_type_float_binary128_be(_attr) _side_type_float(SIDE_TYPE_FLOAT_BINARY128, SIDE_TYPE_BYTE_ORDER_BE, sizeof(_Float128), SIDE_PARAM(_attr))
917 #define side_type_string16_be(_attr) _side_type_string(SIDE_TYPE_STRING_UTF16, SIDE_TYPE_BYTE_ORDER_BE, sizeof(uint16_t), SIDE_PARAM(_attr))
918 #define side_type_string32_be(_attr) _side_type_string(SIDE_TYPE_STRING_UTF32, SIDE_TYPE_BYTE_ORDER_BE, sizeof(uint32_t), SIDE_PARAM(_attr))
919
920 #define side_field_u16_be(_name, _attr) _side_field(_name, side_type_u16_be(SIDE_PARAM(_attr)))
921 #define side_field_u32_be(_name, _attr) _side_field(_name, side_type_u32_be(SIDE_PARAM(_attr)))
922 #define side_field_u64_be(_name, _attr) _side_field(_name, side_type_u64_be(SIDE_PARAM(_attr)))
923 #define side_field_s16_be(_name, _attr) _side_field(_name, side_type_s16_be(SIDE_PARAM(_attr)))
924 #define side_field_s32_be(_name, _attr) _side_field(_name, side_type_s32_be(SIDE_PARAM(_attr)))
925 #define side_field_s64_be(_name, _attr) _side_field(_name, side_type_s64_be(SIDE_PARAM(_attr)))
926 #define side_field_pointer_be(_name, _attr) _side_field(_name, side_type_pointer_be(SIDE_PARAM(_attr)))
927 #define side_field_float_binary16_be(_name, _attr) _side_field(_name, side_type_float_binary16_be(SIDE_PARAM(_attr)))
928 #define side_field_float_binary32_be(_name, _attr) _side_field(_name, side_type_float_binary32_be(SIDE_PARAM(_attr)))
929 #define side_field_float_binary64_be(_name, _attr) _side_field(_name, side_type_float_binary64_be(SIDE_PARAM(_attr)))
930 #define side_field_float_binary128_be(_name, _attr) _side_field(_name, side_type_float_binary128_be(SIDE_PARAM(_attr)))
931 #define side_field_string16_be(_name, _attr) _side_field(_name, side_type_string16_be(SIDE_PARAM(_attr)))
932 #define side_field_string32_be(_name, _attr) _side_field(_name, side_type_string32_be(SIDE_PARAM(_attr)))
933
934 #define side_type_enum(_mappings, _elem_type) \
935 { \
936 .type = SIDE_TYPE_ENUM, \
937 .u = { \
938 .side_enum = { \
939 .mappings = _mappings, \
940 .elem_type = _elem_type, \
941 }, \
942 }, \
943 }
944 #define side_field_enum(_name, _mappings, _elem_type) \
945 _side_field(_name, side_type_enum(SIDE_PARAM(_mappings), SIDE_PARAM(_elem_type)))
946
947 #define side_type_enum_bitmap(_mappings, _elem_type) \
948 { \
949 .type = SIDE_TYPE_ENUM_BITMAP, \
950 .u = { \
951 .side_enum_bitmap = { \
952 .mappings = _mappings, \
953 .elem_type = _elem_type, \
954 }, \
955 }, \
956 }
957 #define side_field_enum_bitmap(_name, _mappings, _elem_type) \
958 _side_field(_name, side_type_enum_bitmap(SIDE_PARAM(_mappings), SIDE_PARAM(_elem_type)))
959
960 #define side_type_struct(_struct) \
961 { \
962 .type = SIDE_TYPE_STRUCT, \
963 .u = { \
964 .side_struct = _struct, \
965 }, \
966 }
967 #define side_field_struct(_name, _struct) \
968 _side_field(_name, side_type_struct(SIDE_PARAM(_struct)))
969
970 #define _side_type_struct_define(_fields, _attr) \
971 { \
972 .fields = _fields, \
973 .attr = _attr, \
974 .nr_fields = SIDE_ARRAY_SIZE(SIDE_PARAM(_fields)), \
975 .nr_attr = SIDE_ARRAY_SIZE(SIDE_PARAM(_attr)), \
976 }
977
978 #define side_define_struct(_identifier, _fields, _attr) \
979 const struct side_type_struct _identifier = _side_type_struct_define(SIDE_PARAM(_fields), SIDE_PARAM(_attr))
980
981 #define side_struct_literal(_fields, _attr) \
982 SIDE_COMPOUND_LITERAL(const struct side_type_struct, \
983 _side_type_struct_define(SIDE_PARAM(_fields), SIDE_PARAM(_attr)))
984
985 #define side_type_array(_elem_type, _length, _attr) \
986 { \
987 .type = SIDE_TYPE_ARRAY, \
988 .u = { \
989 .side_array = { \
990 .elem_type = _elem_type, \
991 .attr = _attr, \
992 .length = _length, \
993 .nr_attr = SIDE_ARRAY_SIZE(SIDE_PARAM(_attr)), \
994 }, \
995 }, \
996 }
997 #define side_field_array(_name, _elem_type, _length, _attr) \
998 _side_field(_name, side_type_array(SIDE_PARAM(_elem_type), _length, SIDE_PARAM(_attr)))
999
1000 #define side_type_vla(_elem_type, _attr) \
1001 { \
1002 .type = SIDE_TYPE_VLA, \
1003 .u = { \
1004 .side_vla = { \
1005 .elem_type = _elem_type, \
1006 .attr = _attr, \
1007 .nr_attr = SIDE_ARRAY_SIZE(SIDE_PARAM(_attr)), \
1008 }, \
1009 }, \
1010 }
1011 #define side_field_vla(_name, _elem_type, _attr) \
1012 _side_field(_name, side_type_vla(SIDE_PARAM(_elem_type), SIDE_PARAM(_attr)))
1013
1014 #define side_type_vla_visitor(_elem_type, _visitor, _attr) \
1015 { \
1016 .type = SIDE_TYPE_VLA_VISITOR, \
1017 .u = { \
1018 .side_vla_visitor = { \
1019 .elem_type = SIDE_PARAM(_elem_type), \
1020 .visitor = _visitor, \
1021 .attr = _attr, \
1022 .nr_attr = SIDE_ARRAY_SIZE(SIDE_PARAM(_attr)), \
1023 }, \
1024 }, \
1025 }
1026 #define side_field_vla_visitor(_name, _elem_type, _visitor, _attr) \
1027 _side_field(_name, side_type_vla_visitor(SIDE_PARAM(_elem_type), _visitor, SIDE_PARAM(_attr)))
1028
1029 /* Gather field and type definitions */
1030
1031 #define side_type_gather_byte(_offset, _access_mode, _attr) \
1032 { \
1033 .type = SIDE_TYPE_GATHER_BYTE, \
1034 .u = { \
1035 .side_gather = { \
1036 .u = { \
1037 .side_byte = { \
1038 .offset = _offset, \
1039 .access_mode = _access_mode, \
1040 .type = { \
1041 .attr = _attr, \
1042 .nr_attr = SIDE_ARRAY_SIZE(SIDE_PARAM(_attr)), \
1043 }, \
1044 }, \
1045 }, \
1046 }, \
1047 }, \
1048 }
1049 #define side_field_gather_byte(_name, _offset, _access_mode, _attr) \
1050 _side_field(_name, side_type_gather_byte(_offset, _access_mode, SIDE_PARAM(_attr)))
1051
1052 #define _side_type_gather_bool(_byte_order, _offset, _bool_size, _offset_bits, _len_bits, _access_mode, _attr) \
1053 { \
1054 .type = SIDE_TYPE_GATHER_BOOL, \
1055 .u = { \
1056 .side_gather = { \
1057 .u = { \
1058 .side_bool = { \
1059 .offset = _offset, \
1060 .access_mode = _access_mode, \
1061 .type = { \
1062 .attr = _attr, \
1063 .nr_attr = SIDE_ARRAY_SIZE(SIDE_PARAM(_attr)), \
1064 .bool_size = _bool_size, \
1065 .len_bits = _len_bits, \
1066 .byte_order = _byte_order, \
1067 }, \
1068 .offset_bits = _offset_bits, \
1069 }, \
1070 }, \
1071 }, \
1072 }, \
1073 }
1074 #define side_type_gather_bool(_offset, _bool_size, _offset_bits, _len_bits, _access_mode, _attr) \
1075 _side_type_gather_bool(SIDE_TYPE_BYTE_ORDER_HOST, _offset, _bool_size, _offset_bits, _len_bits, _access_mode, _attr)
1076 #define side_type_gather_bool_le(_offset, _bool_size, _offset_bits, _len_bits, _access_mode, _attr) \
1077 _side_type_gather_bool(SIDE_TYPE_BYTE_ORDER_LE, _offset, _bool_size, _offset_bits, _len_bits, _access_mode, _attr)
1078 #define side_type_gather_bool_be(_offset, _bool_size, _offset_bits, _len_bits, _access_mode, _attr) \
1079 _side_type_gather_bool(SIDE_TYPE_BYTE_ORDER_BE, _offset, _bool_size, _offset_bits, _len_bits, _access_mode, _attr)
1080
1081 #define side_field_gather_bool(_name, _offset, _bool_size, _offset_bits, _len_bits, _access_mode, _attr) \
1082 _side_field(_name, side_type_gather_bool(_offset, _bool_size, _offset_bits, _len_bits, _access_mode, SIDE_PARAM(_attr)))
1083 #define side_field_gather_bool_le(_name, _offset, _bool_size, _offset_bits, _len_bits, _access_mode, _attr) \
1084 _side_field(_name, side_type_gather_bool_le(_offset, _bool_size, _offset_bits, _len_bits, _access_mode, SIDE_PARAM(_attr)))
1085 #define side_field_gather_bool_be(_name, _offset, _bool_size, _offset_bits, _len_bits, _access_mode, _attr) \
1086 _side_field(_name, side_type_gather_bool_be(_offset, _bool_size, _offset_bits, _len_bits, _access_mode, SIDE_PARAM(_attr)))
1087
1088 #define _side_type_gather_integer(_type, _signedness, _byte_order, _offset, \
1089 _integer_size, _offset_bits, _len_bits, _access_mode, _attr) \
1090 { \
1091 .type = _type, \
1092 .u = { \
1093 .side_gather = { \
1094 .u = { \
1095 .side_integer = { \
1096 .offset = _offset, \
1097 .access_mode = _access_mode, \
1098 .type = { \
1099 .attr = _attr, \
1100 .nr_attr = SIDE_ARRAY_SIZE(SIDE_PARAM(_attr)), \
1101 .integer_size = _integer_size, \
1102 .len_bits = _len_bits, \
1103 .signedness = _signedness, \
1104 .byte_order = _byte_order, \
1105 }, \
1106 .offset_bits = _offset_bits, \
1107 }, \
1108 }, \
1109 }, \
1110 }, \
1111 }
1112
1113 #define side_type_gather_unsigned_integer(_integer_offset, _integer_size, _offset_bits, _len_bits, _access_mode, _attr) \
1114 _side_type_gather_integer(SIDE_TYPE_GATHER_INTEGER, false, SIDE_TYPE_BYTE_ORDER_HOST, \
1115 _integer_offset, _integer_size, _offset_bits, _len_bits, _access_mode, SIDE_PARAM(_attr))
1116 #define side_type_gather_signed_integer(_integer_offset, _integer_size, _offset_bits, _len_bits, _access_mode, _attr) \
1117 _side_type_gather_integer(SIDE_TYPE_GATHER_INTEGER, true, SIDE_TYPE_BYTE_ORDER_HOST, \
1118 _integer_offset, _integer_size, _offset_bits, _len_bits, _access_mode, SIDE_PARAM(_attr))
1119
1120 #define side_type_gather_unsigned_integer_le(_integer_offset, _integer_size, _offset_bits, _len_bits, _access_mode, _attr) \
1121 _side_type_gather_integer(SIDE_TYPE_GATHER_INTEGER, false, SIDE_TYPE_BYTE_ORDER_LE, \
1122 _integer_offset, _integer_size, _offset_bits, _len_bits, _access_mode, SIDE_PARAM(_attr))
1123 #define side_type_gather_signed_integer_le(_integer_offset, _integer_size, _offset_bits, _len_bits, _access_mode, _attr) \
1124 _side_type_gather_integer(SIDE_TYPE_GATHER_INTEGER, true, SIDE_TYPE_BYTE_ORDER_LE, \
1125 _integer_offset, _integer_size, _offset_bits, _len_bits, _access_mode, SIDE_PARAM(_attr))
1126
1127 #define side_type_gather_unsigned_integer_be(_integer_offset, _integer_size, _offset_bits, _len_bits, _access_mode, _attr) \
1128 _side_type_gather_integer(SIDE_TYPE_GATHER_INTEGER, false, SIDE_TYPE_BYTE_ORDER_BE, \
1129 _integer_offset, _integer_size, _offset_bits, _len_bits, _access_mode, SIDE_PARAM(_attr))
1130 #define side_type_gather_signed_integer_be(_integer_offset, _integer_size, _offset_bits, _len_bits, _access_mode, _attr) \
1131 _side_type_gather_integer(SIDE_TYPE_GATHER_INTEGER, true, SIDE_TYPE_BYTE_ORDER_BE, \
1132 _integer_offset, _integer_size, _offset_bits, _len_bits, _access_mode, SIDE_PARAM(_attr))
1133
1134 #define side_field_gather_unsigned_integer(_name, _integer_offset, _integer_size, _offset_bits, _len_bits, _access_mode, _attr) \
1135 _side_field(_name, side_type_gather_unsigned_integer(_integer_offset, _integer_size, _offset_bits, _len_bits, _access_mode, SIDE_PARAM(_attr)))
1136 #define side_field_gather_signed_integer(_name, _integer_offset, _integer_size, _offset_bits, _len_bits, _access_mode, _attr) \
1137 _side_field(_name, side_type_gather_signed_integer(_integer_offset, _integer_size, _offset_bits, _len_bits, _access_mode, SIDE_PARAM(_attr)))
1138
1139 #define side_field_gather_unsigned_integer_le(_name, _integer_offset, _integer_size, _offset_bits, _len_bits, _access_mode, _attr) \
1140 _side_field(_name, side_type_gather_unsigned_integer_le(_integer_offset, _integer_size, _offset_bits, _len_bits, _access_mode, SIDE_PARAM(_attr)))
1141 #define side_field_gather_signed_integer_le(_name, _integer_offset, _integer_size, _offset_bits, _len_bits, _access_mode, _attr) \
1142 _side_field(_name, side_type_gather_signed_integer_le(_integer_offset, _integer_size, _offset_bits, _len_bits, _access_mode, SIDE_PARAM(_attr)))
1143
1144 #define side_field_gather_unsigned_integer_be(_name, _integer_offset, _integer_size, _offset_bits, _len_bits, _access_mode, _attr) \
1145 _side_field(_name, side_type_gather_unsigned_integer_be(_integer_offset, _integer_size, _offset_bits, _len_bits, _access_mode, SIDE_PARAM(_attr)))
1146 #define side_field_gather_signed_integer_be(_name, _integer_offset, _integer_size, _offset_bits, _len_bits, _access_mode, _attr) \
1147 _side_field(_name, side_type_gather_signed_integer_be(_integer_offset, _integer_size, _offset_bits, _len_bits, _access_mode, SIDE_PARAM(_attr)))
1148
1149 #define side_type_gather_pointer(_offset, _access_mode, _attr) \
1150 _side_type_gather_integer(SIDE_TYPE_GATHER_POINTER, false, SIDE_TYPE_BYTE_ORDER_HOST, \
1151 _offset, sizeof(uintptr_t), 0, 0, _access_mode, SIDE_PARAM(_attr))
1152 #define side_field_gather_pointer(_name, _offset, _access_mode, _attr) \
1153 _side_field(_name, side_type_gather_pointer(_offset, _access_mode, SIDE_PARAM(_attr)))
1154
1155 #define side_type_gather_pointer_le(_offset, _access_mode, _attr) \
1156 _side_type_gather_integer(SIDE_TYPE_GATHER_POINTER, false, SIDE_TYPE_BYTE_ORDER_LE, \
1157 _offset, sizeof(uintptr_t), 0, 0, _access_mode, SIDE_PARAM(_attr))
1158 #define side_field_gather_pointer_le(_name, _offset, _access_mode, _attr) \
1159 _side_field(_name, side_type_gather_pointer_le(_offset, _access_mode, SIDE_PARAM(_attr)))
1160
1161 #define side_type_gather_pointer_be(_offset, _access_mode, _attr) \
1162 _side_type_gather_integer(SIDE_TYPE_GATHER_POINTER, false, SIDE_TYPE_BYTE_ORDER_BE, \
1163 _offset, sizeof(uintptr_t), 0, 0, _access_mode, SIDE_PARAM(_attr))
1164 #define side_field_gather_pointer_be(_name, _offset, _access_mode, _attr) \
1165 _side_field(_name, side_type_gather_pointer_be(_offset, _access_mode, SIDE_PARAM(_attr)))
1166
1167 #define _side_type_gather_float(_byte_order, _offset, _float_size, _access_mode, _attr) \
1168 { \
1169 .type = SIDE_TYPE_GATHER_FLOAT, \
1170 .u = { \
1171 .side_gather = { \
1172 .u = { \
1173 .side_float = { \
1174 .offset = _offset, \
1175 .access_mode = _access_mode, \
1176 .type = { \
1177 .attr = _attr, \
1178 .nr_attr = SIDE_ARRAY_SIZE(SIDE_PARAM(_attr)), \
1179 .float_size = _float_size, \
1180 .byte_order = _byte_order, \
1181 }, \
1182 }, \
1183 }, \
1184 }, \
1185 }, \
1186 }
1187
1188 #define side_type_gather_float(_offset, _float_size, _access_mode, _attr) \
1189 _side_type_gather_float(SIDE_TYPE_FLOAT_WORD_ORDER_HOST, _offset, _float_size, _access_mode, _attr)
1190 #define side_type_gather_float_le(_offset, _float_size, _access_mode, _attr) \
1191 _side_type_gather_float(SIDE_TYPE_BYTE_ORDER_LE, _offset, _float_size, _access_mode, _attr)
1192 #define side_type_gather_float_be(_offset, _float_size, _access_mode, _attr) \
1193 _side_type_gather_float(SIDE_TYPE_BYTE_ORDER_BE, _offset, _float_size, _access_mode, _attr)
1194
1195 #define side_field_gather_float(_name, _offset, _float_size, _access_mode, _attr) \
1196 _side_field(_name, side_type_gather_float(_offset, _float_size, _access_mode, _attr))
1197 #define side_field_gather_float_le(_name, _offset, _float_size, _access_mode, _attr) \
1198 _side_field(_name, side_type_gather_float_le(_offset, _float_size, _access_mode, _attr))
1199 #define side_field_gather_float_be(_name, _offset, _float_size, _access_mode, _attr) \
1200 _side_field(_name, side_type_gather_float_be(_offset, _float_size, _access_mode, _attr))
1201
1202 #define _side_type_gather_string(_offset, _byte_order, _unit_size, _access_mode, _attr) \
1203 { \
1204 .type = SIDE_TYPE_GATHER_STRING, \
1205 .u = { \
1206 .side_gather = { \
1207 .u = { \
1208 .side_string = { \
1209 .offset = _offset, \
1210 .access_mode = _access_mode, \
1211 .type = { \
1212 .attr = _attr, \
1213 .nr_attr = SIDE_ARRAY_SIZE(SIDE_PARAM(_attr)), \
1214 .unit_size = _unit_size, \
1215 .byte_order = _byte_order, \
1216 }, \
1217 }, \
1218 }, \
1219 }, \
1220 }, \
1221 }
1222 #define side_type_gather_string(_offset, _access_mode, _attr) \
1223 _side_type_gather_string(_offset, SIDE_TYPE_BYTE_ORDER_HOST, sizeof(uint8_t), _access_mode, SIDE_PARAM(_attr))
1224 #define side_field_gather_string(_name, _offset, _access_mode, _attr) \
1225 _side_field(_name, side_type_gather_string(_offset, _access_mode, SIDE_PARAM(_attr)))
1226
1227 #define side_type_gather_string16(_offset, _access_mode, _attr) \
1228 _side_type_gather_string(_offset, SIDE_TYPE_BYTE_ORDER_HOST, sizeof(uint16_t), _access_mode, SIDE_PARAM(_attr))
1229 #define side_type_gather_string16_le(_offset, _access_mode, _attr) \
1230 _side_type_gather_string(_offset, SIDE_TYPE_BYTE_ORDER_LE, sizeof(uint16_t), _access_mode, SIDE_PARAM(_attr))
1231 #define side_type_gather_string16_be(_offset, _access_mode, _attr) \
1232 _side_type_gather_string(_offset, SIDE_TYPE_BYTE_ORDER_BE, sizeof(uint16_t), _access_mode, SIDE_PARAM(_attr))
1233
1234 #define side_field_gather_string16(_name, _offset, _access_mode, _attr) \
1235 _side_field(_name, side_type_gather_string16(_offset, _access_mode, SIDE_PARAM(_attr)))
1236 #define side_field_gather_string16_le(_name, _offset, _access_mode, _attr) \
1237 _side_field(_name, side_type_gather_string16_le(_offset, _access_mode, SIDE_PARAM(_attr)))
1238 #define side_field_gather_string16_be(_name, _offset, _access_mode, _attr) \
1239 _side_field(_name, side_type_gather_string16_be(_offset, _access_mode, SIDE_PARAM(_attr)))
1240
1241 #define side_type_gather_string32(_offset, _access_mode, _attr) \
1242 _side_type_gather_string(_offset, SIDE_TYPE_BYTE_ORDER_HOST, sizeof(uint32_t), _access_mode, SIDE_PARAM(_attr))
1243 #define side_type_gather_string32_le(_offset, _access_mode, _attr) \
1244 _side_type_gather_string(_offset, SIDE_TYPE_BYTE_ORDER_LE, sizeof(uint32_t), _access_mode, SIDE_PARAM(_attr))
1245 #define side_type_gather_string32_be(_offset, _access_mode, _attr) \
1246 _side_type_gather_string(_offset, SIDE_TYPE_BYTE_ORDER_BE, sizeof(uint32_t), _access_mode, SIDE_PARAM(_attr))
1247
1248 #define side_field_gather_string32(_name, _offset, _access_mode, _attr) \
1249 _side_field(_name, side_type_gather_string32(_offset, _access_mode, SIDE_PARAM(_attr)))
1250 #define side_field_gather_string32_le(_name, _offset, _access_mode, _attr) \
1251 _side_field(_name, side_type_gather_string32_le(_offset, _access_mode, SIDE_PARAM(_attr)))
1252 #define side_field_gather_string32_be(_name, _offset, _access_mode, _attr) \
1253 _side_field(_name, side_type_gather_string32_be(_offset, _access_mode, SIDE_PARAM(_attr)))
1254
1255 #define side_type_gather_enum(_mappings, _elem_type) \
1256 { \
1257 .type = SIDE_TYPE_GATHER_ENUM, \
1258 .u = { \
1259 .side_enum = { \
1260 .mappings = _mappings, \
1261 .elem_type = _elem_type, \
1262 }, \
1263 }, \
1264 }
1265 #define side_field_gather_enum(_name, _mappings, _elem_type) \
1266 _side_field(_name, side_type_gather_enum(SIDE_PARAM(_mappings), SIDE_PARAM(_elem_type)))
1267
1268 #define side_type_gather_struct(_struct_gather, _offset, _size, _access_mode) \
1269 { \
1270 .type = SIDE_TYPE_GATHER_STRUCT, \
1271 .u = { \
1272 .side_gather = { \
1273 .u = { \
1274 .side_struct = { \
1275 .offset = _offset, \
1276 .access_mode = _access_mode, \
1277 .type = _struct_gather, \
1278 .size = _size, \
1279 }, \
1280 }, \
1281 }, \
1282 }, \
1283 }
1284 #define side_field_gather_struct(_name, _struct_gather, _offset, _size, _access_mode) \
1285 _side_field(_name, side_type_gather_struct(SIDE_PARAM(_struct_gather), _offset, _size, _access_mode))
1286
1287 #define side_type_gather_array(_elem_type_gather, _length, _offset, _access_mode, _attr) \
1288 { \
1289 .type = SIDE_TYPE_GATHER_ARRAY, \
1290 .u = { \
1291 .side_gather = { \
1292 .u = { \
1293 .side_array = { \
1294 .offset = _offset, \
1295 .access_mode = _access_mode, \
1296 .type = { \
1297 .elem_type = _elem_type_gather, \
1298 .attr = _attr, \
1299 .length = _length, \
1300 .nr_attr = SIDE_ARRAY_SIZE(SIDE_PARAM(_attr)), \
1301 }, \
1302 }, \
1303 }, \
1304 }, \
1305 }, \
1306 }
1307 #define side_field_gather_array(_name, _elem_type, _length, _offset, _access_mode, _attr) \
1308 _side_field(_name, side_type_gather_array(SIDE_PARAM(_elem_type), _length, _offset, _access_mode, SIDE_PARAM(_attr)))
1309
1310 #define side_type_gather_vla(_elem_type_gather, _offset, _access_mode, _length_type_gather, _attr) \
1311 { \
1312 .type = SIDE_TYPE_GATHER_VLA, \
1313 .u = { \
1314 .side_gather = { \
1315 .u = { \
1316 .side_vla = { \
1317 .length_type = _length_type_gather, \
1318 .offset = _offset, \
1319 .access_mode = _access_mode, \
1320 .type = { \
1321 .elem_type = _elem_type_gather, \
1322 .attr = _attr, \
1323 .nr_attr = SIDE_ARRAY_SIZE(SIDE_PARAM(_attr)), \
1324 }, \
1325 }, \
1326 }, \
1327 }, \
1328 }, \
1329 }
1330 #define side_field_gather_vla(_name, _elem_type_gather, _offset, _access_mode, _length_type_gather, _attr) \
1331 _side_field(_name, side_type_gather_vla(SIDE_PARAM(_elem_type_gather), _offset, _access_mode, SIDE_PARAM(_length_type_gather), SIDE_PARAM(_attr)))
1332
1333 #define side_elem(...) \
1334 SIDE_COMPOUND_LITERAL(const struct side_type, __VA_ARGS__)
1335
1336 #define side_length(...) \
1337 SIDE_COMPOUND_LITERAL(const struct side_type, __VA_ARGS__)
1338
1339 #define side_field_list(...) \
1340 SIDE_COMPOUND_LITERAL(const struct side_event_field, __VA_ARGS__)
1341
1342 /* Stack-copy field arguments */
1343
1344 #define side_arg_null(_val) { .type = SIDE_TYPE_NULL }
1345 #define side_arg_bool(_val) { .type = SIDE_TYPE_BOOL, .u = { .side_static = { .bool_value = { .side_bool8 = !!(_val) } } } }
1346 #define side_arg_byte(_val) { .type = SIDE_TYPE_BYTE, .u = { .side_static = { .byte_value = (_val) } } }
1347 #define side_arg_string(_val) { .type = SIDE_TYPE_STRING_UTF8, .u = { .side_static = { .string_value = (uintptr_t) (_val) } } }
1348 #define side_arg_string16(_val) { .type = SIDE_TYPE_STRING_UTF16, .u = { .side_static = { .string_value = (uintptr_t) (_val) } } }
1349 #define side_arg_string32(_val) { .type = SIDE_TYPE_STRING_UTF32, .u = { .side_static = { .string_value = (uintptr_t) (_val) } } }
1350
1351 #define side_arg_u8(_val) { .type = SIDE_TYPE_U8, .u = { .side_static = { .integer_value = { .side_u8 = (_val) } } } }
1352 #define side_arg_u16(_val) { .type = SIDE_TYPE_U16, .u = { .side_static = { .integer_value = { .side_u16 = (_val) } } } }
1353 #define side_arg_u32(_val) { .type = SIDE_TYPE_U32, .u = { .side_static = { .integer_value = { .side_u32 = (_val) } } } }
1354 #define side_arg_u64(_val) { .type = SIDE_TYPE_U64, .u = { .side_static = { .integer_value = { .side_u64 = (_val) } } } }
1355 #define side_arg_s8(_val) { .type = SIDE_TYPE_S8, .u = { .side_static = { .integer_value = { .side_s8 = (_val) } } } }
1356 #define side_arg_s16(_val) { .type = SIDE_TYPE_S16, .u = { .side_static = { .integer_value = { .side_s16 = (_val) } } } }
1357 #define side_arg_s32(_val) { .type = SIDE_TYPE_S32, .u = { .side_static = { .integer_value = { .side_s32 = (_val) } } } }
1358 #define side_arg_s64(_val) { .type = SIDE_TYPE_S64, .u = { .side_static = { .integer_value = { .side_s64 = (_val) } } } }
1359 #define side_arg_pointer(_val) { .type = SIDE_TYPE_POINTER, .u = { .side_static = { .integer_value = { .side_uptr = (uintptr_t) (_val) } } } }
1360 #define side_arg_float_binary16(_val) { .type = SIDE_TYPE_FLOAT_BINARY16, .u = { .side_static = { .float_value = { .side_float_binary16 = (_val) } } } }
1361 #define side_arg_float_binary32(_val) { .type = SIDE_TYPE_FLOAT_BINARY32, .u = { .side_static = { .float_value = { .side_float_binary32 = (_val) } } } }
1362 #define side_arg_float_binary64(_val) { .type = SIDE_TYPE_FLOAT_BINARY64, .u = { .side_static = { .float_value = { .side_float_binary64 = (_val) } } } }
1363 #define side_arg_float_binary128(_val) { .type = SIDE_TYPE_FLOAT_BINARY128, .u = { .side_static = { .float_value = { .side_float_binary128 = (_val) } } } }
1364
1365 #define side_arg_struct(_side_type) { .type = SIDE_TYPE_STRUCT, .u = { .side_static = { .side_struct = (_side_type) } } }
1366 #define side_arg_array(_side_type) { .type = SIDE_TYPE_ARRAY, .u = { .side_static = { .side_array = (_side_type) } } }
1367 #define side_arg_vla(_side_type) { .type = SIDE_TYPE_VLA, .u = { .side_static = { .side_vla = (_side_type) } } }
1368 #define side_arg_vla_visitor(_ctx) { .type = SIDE_TYPE_VLA_VISITOR, .u = { .side_static = { .side_vla_app_visitor_ctx = (_ctx) } } }
1369
1370 /* Gather field arguments */
1371
1372 #define side_arg_gather_bool(_ptr) { .type = SIDE_TYPE_GATHER_BOOL, .u = { .side_static = { .side_bool_gather_ptr = (_ptr) } } }
1373 #define side_arg_gather_byte(_ptr) { .type = SIDE_TYPE_GATHER_BYTE, .u = { .side_static = { .side_byte_gather_ptr = (_ptr) } } }
1374 #define side_arg_gather_pointer(_ptr) { .type = SIDE_TYPE_GATHER_POINTER, .u = { .side_static = { .side_integer_gather_ptr = (_ptr) } } }
1375 #define side_arg_gather_integer(_ptr) { .type = SIDE_TYPE_GATHER_INTEGER, .u = { .side_static = { .side_integer_gather_ptr = (_ptr) } } }
1376 #define side_arg_gather_float(_ptr) { .type = SIDE_TYPE_GATHER_FLOAT, .u = { .side_static = { .side_float_gather_ptr = (_ptr) } } }
1377 #define side_arg_gather_string(_ptr) { .type = SIDE_TYPE_GATHER_STRING, .u = { .side_static = { .side_string_gather_ptr = (_ptr) } } }
1378 #define side_arg_gather_struct(_ptr) { .type = SIDE_TYPE_GATHER_STRUCT, .u = { .side_static = { .side_struct_gather_ptr = (_ptr) } } }
1379 #define side_arg_gather_array(_ptr) { .type = SIDE_TYPE_GATHER_ARRAY, .u = { .side_static = { .side_array_gather_ptr = (_ptr) } } }
1380 #define side_arg_gather_vla(_ptr, _length_ptr) { .type = SIDE_TYPE_GATHER_VLA, .u = { .side_static = { .side_vla_gather = { .ptr = (_ptr), .length_ptr = (_length_ptr) } } } }
1381
1382 /* Dynamic field arguments */
1383
1384 #define side_arg_dynamic_null(_attr) \
1385 { \
1386 .type = SIDE_TYPE_DYNAMIC_NULL, \
1387 .u = { \
1388 .side_dynamic = { \
1389 .side_null = { \
1390 .attr = _attr, \
1391 .nr_attr = SIDE_ARRAY_SIZE(SIDE_PARAM(_attr)), \
1392 }, \
1393 }, \
1394 }, \
1395 }
1396
1397 #define side_arg_dynamic_bool(_val, _attr) \
1398 { \
1399 .type = SIDE_TYPE_DYNAMIC_BOOL, \
1400 .u = { \
1401 .side_dynamic = { \
1402 .side_bool = { \
1403 .type = { \
1404 .attr = _attr, \
1405 .nr_attr = SIDE_ARRAY_SIZE(SIDE_PARAM(_attr)), \
1406 .bool_size = sizeof(uint8_t), \
1407 .len_bits = 0, \
1408 .byte_order = SIDE_TYPE_BYTE_ORDER_HOST, \
1409 }, \
1410 .value = { \
1411 .side_bool8 = !!(_val), \
1412 }, \
1413 }, \
1414 }, \
1415 }, \
1416 }
1417
1418 #define side_arg_dynamic_byte(_val, _attr) \
1419 { \
1420 .type = SIDE_TYPE_DYNAMIC_BYTE, \
1421 .u = { \
1422 .side_dynamic = { \
1423 .side_byte = { \
1424 .type = { \
1425 .attr = _attr, \
1426 .nr_attr = SIDE_ARRAY_SIZE(SIDE_PARAM(_attr)), \
1427 }, \
1428 .value = (_val), \
1429 }, \
1430 }, \
1431 }, \
1432 }
1433 #define _side_arg_dynamic_string(_val, _byte_order, _unit_size, _attr) \
1434 { \
1435 .type = SIDE_TYPE_DYNAMIC_STRING, \
1436 .u = { \
1437 .side_dynamic = { \
1438 .side_string = { \
1439 .type = { \
1440 .attr = _attr, \
1441 .nr_attr = SIDE_ARRAY_SIZE(SIDE_PARAM(_attr)), \
1442 .unit_size = _unit_size, \
1443 .byte_order = _byte_order, \
1444 }, \
1445 .value = (uintptr_t) (_val), \
1446 }, \
1447 }, \
1448 }, \
1449 }
1450 #define side_arg_dynamic_string(_val, _attr) \
1451 _side_arg_dynamic_string(_val, SIDE_TYPE_BYTE_ORDER_HOST, sizeof(uint8_t), SIDE_PARAM(_attr))
1452 #define side_arg_dynamic_string16(_val, _attr) \
1453 _side_arg_dynamic_string(_val, SIDE_TYPE_BYTE_ORDER_HOST, sizeof(uint16_t), SIDE_PARAM(_attr))
1454 #define side_arg_dynamic_string16_le(_val, _attr) \
1455 _side_arg_dynamic_string(_val, SIDE_TYPE_BYTE_ORDER_LE, sizeof(uint16_t), SIDE_PARAM(_attr))
1456 #define side_arg_dynamic_string16_be(_val, _attr) \
1457 _side_arg_dynamic_string(_val, SIDE_TYPE_BYTE_ORDER_BE, sizeof(uint16_t), SIDE_PARAM(_attr))
1458 #define side_arg_dynamic_string32(_val, _attr) \
1459 _side_arg_dynamic_string(_val, SIDE_TYPE_BYTE_ORDER_HOST, sizeof(uint32_t), SIDE_PARAM(_attr))
1460 #define side_arg_dynamic_string32_le(_val, _attr) \
1461 _side_arg_dynamic_string(_val, SIDE_TYPE_BYTE_ORDER_LE, sizeof(uint32_t), SIDE_PARAM(_attr))
1462 #define side_arg_dynamic_string32_be(_val, _attr) \
1463 _side_arg_dynamic_string(_val, SIDE_TYPE_BYTE_ORDER_BE, sizeof(uint32_t), SIDE_PARAM(_attr))
1464
1465 #define _side_arg_dynamic_integer(_field, _val, _type, _signedness, _byte_order, _integer_size, _len_bits, _attr) \
1466 { \
1467 .type = _type, \
1468 .u = { \
1469 .side_dynamic = { \
1470 .side_integer = { \
1471 .type = { \
1472 .attr = _attr, \
1473 .nr_attr = SIDE_ARRAY_SIZE(SIDE_PARAM(_attr)), \
1474 .integer_size = _integer_size, \
1475 .len_bits = _len_bits, \
1476 .signedness = _signedness, \
1477 .byte_order = _byte_order, \
1478 }, \
1479 .value = { \
1480 _field = (_val), \
1481 }, \
1482 }, \
1483 }, \
1484 }, \
1485 }
1486
1487 #define side_arg_dynamic_u8(_val, _attr) \
1488 _side_arg_dynamic_integer(.side_u8, _val, SIDE_TYPE_DYNAMIC_INTEGER, false, SIDE_TYPE_BYTE_ORDER_HOST, sizeof(uint8_t), 0, SIDE_PARAM(_attr))
1489 #define side_arg_dynamic_s8(_val, _attr) \
1490 _side_arg_dynamic_integer(.side_s8, _val, SIDE_TYPE_DYNAMIC_INTEGER, true, SIDE_TYPE_BYTE_ORDER_HOST, sizeof(int8_t), 0, SIDE_PARAM(_attr))
1491
1492 #define _side_arg_dynamic_u16(_val, _byte_order, _attr) \
1493 _side_arg_dynamic_integer(.side_u16, _val, SIDE_TYPE_DYNAMIC_INTEGER, false, _byte_order, sizeof(uint16_t), 0, SIDE_PARAM(_attr))
1494 #define _side_arg_dynamic_u32(_val, _byte_order, _attr) \
1495 _side_arg_dynamic_integer(.side_u32, _val, SIDE_TYPE_DYNAMIC_INTEGER, false, _byte_order, sizeof(uint32_t), 0, SIDE_PARAM(_attr))
1496 #define _side_arg_dynamic_u64(_val, _byte_order, _attr) \
1497 _side_arg_dynamic_integer(.side_u64, _val, SIDE_TYPE_DYNAMIC_INTEGER, false, _byte_order, sizeof(uint64_t), 0, SIDE_PARAM(_attr))
1498
1499 #define _side_arg_dynamic_s16(_val, _byte_order, _attr) \
1500 _side_arg_dynamic_integer(.side_s16, _val, SIDE_TYPE_DYNAMIC_INTEGER, true, _byte_order, sizeof(int16_t), 0, SIDE_PARAM(_attr))
1501 #define _side_arg_dynamic_s32(_val, _byte_order, _attr) \
1502 _side_arg_dynamic_integer(.side_s32, _val, SIDE_TYPE_DYNAMIC_INTEGER, true, _byte_order, sizeof(int32_t), 0, SIDE_PARAM(_attr))
1503 #define _side_arg_dynamic_s64(_val, _byte_order, _attr) \
1504 _side_arg_dynamic_integer(.side_s64, _val, SIDE_TYPE_DYNAMIC_INTEGER, true, _byte_order, sizeof(int64_t), 0, SIDE_PARAM(_attr))
1505
1506 #define _side_arg_dynamic_pointer(_val, _byte_order, _attr) \
1507 _side_arg_dynamic_integer(.side_uptr, (uintptr_t) (_val), SIDE_TYPE_DYNAMIC_POINTER, false, _byte_order, \
1508 sizeof(uintptr_t), 0, SIDE_PARAM(_attr))
1509
1510 #define _side_arg_dynamic_float(_field, _val, _type, _byte_order, _float_size, _attr) \
1511 { \
1512 .type = _type, \
1513 .u = { \
1514 .side_dynamic = { \
1515 .side_float = { \
1516 .type = { \
1517 .attr = _attr, \
1518 .nr_attr = SIDE_ARRAY_SIZE(SIDE_PARAM(_attr)), \
1519 .float_size = _float_size, \
1520 .byte_order = _byte_order, \
1521 }, \
1522 .value = { \
1523 _field = (_val), \
1524 }, \
1525 }, \
1526 }, \
1527 }, \
1528 }
1529
1530 #define _side_arg_dynamic_float_binary16(_val, _byte_order, _attr) \
1531 _side_arg_dynamic_float(.side_float_binary16, _val, SIDE_TYPE_DYNAMIC_FLOAT, _byte_order, sizeof(_Float16), SIDE_PARAM(_attr))
1532 #define _side_arg_dynamic_float_binary32(_val, _byte_order, _attr) \
1533 _side_arg_dynamic_float(.side_float_binary32, _val, SIDE_TYPE_DYNAMIC_FLOAT, _byte_order, sizeof(_Float32), SIDE_PARAM(_attr))
1534 #define _side_arg_dynamic_float_binary64(_val, _byte_order, _attr) \
1535 _side_arg_dynamic_float(.side_float_binary64, _val, SIDE_TYPE_DYNAMIC_FLOAT, _byte_order, sizeof(_Float64), SIDE_PARAM(_attr))
1536 #define _side_arg_dynamic_float_binary128(_val, _byte_order, _attr) \
1537 _side_arg_dynamic_float(.side_float_binary128, _val, SIDE_TYPE_DYNAMIC_FLOAT, _byte_order, sizeof(_Float128), SIDE_PARAM(_attr))
1538
1539 /* Host endian */
1540 #define side_arg_dynamic_u16(_val, _attr) _side_arg_dynamic_u16(_val, SIDE_TYPE_BYTE_ORDER_HOST, SIDE_PARAM(_attr))
1541 #define side_arg_dynamic_u32(_val, _attr) _side_arg_dynamic_u32(_val, SIDE_TYPE_BYTE_ORDER_HOST, SIDE_PARAM(_attr))
1542 #define side_arg_dynamic_u64(_val, _attr) _side_arg_dynamic_u64(_val, SIDE_TYPE_BYTE_ORDER_HOST, SIDE_PARAM(_attr))
1543 #define side_arg_dynamic_s16(_val, _attr) _side_arg_dynamic_s16(_val, SIDE_TYPE_BYTE_ORDER_HOST, SIDE_PARAM(_attr))
1544 #define side_arg_dynamic_s32(_val, _attr) _side_arg_dynamic_s32(_val, SIDE_TYPE_BYTE_ORDER_HOST, SIDE_PARAM(_attr))
1545 #define side_arg_dynamic_s64(_val, _attr) _side_arg_dynamic_s64(_val, SIDE_TYPE_BYTE_ORDER_HOST, SIDE_PARAM(_attr))
1546 #define side_arg_dynamic_pointer(_val, _attr) _side_arg_dynamic_pointer(_val, SIDE_TYPE_BYTE_ORDER_HOST, SIDE_PARAM(_attr))
1547 #define side_arg_dynamic_float_binary16(_val, _attr) _side_arg_dynamic_float_binary16(_val, SIDE_TYPE_FLOAT_WORD_ORDER_HOST, SIDE_PARAM(_attr))
1548 #define side_arg_dynamic_float_binary32(_val, _attr) _side_arg_dynamic_float_binary32(_val, SIDE_TYPE_FLOAT_WORD_ORDER_HOST, SIDE_PARAM(_attr))
1549 #define side_arg_dynamic_float_binary64(_val, _attr) _side_arg_dynamic_float_binary64(_val, SIDE_TYPE_FLOAT_WORD_ORDER_HOST, SIDE_PARAM(_attr))
1550 #define side_arg_dynamic_float_binary128(_val, _attr) _side_arg_dynamic_float_binary128(_val, SIDE_TYPE_FLOAT_WORD_ORDER_HOST, SIDE_PARAM(_attr))
1551
1552 /* Little endian */
1553 #define side_arg_dynamic_u16_le(_val, _attr) _side_arg_dynamic_u16(_val, SIDE_TYPE_BYTE_ORDER_LE, SIDE_PARAM(_attr))
1554 #define side_arg_dynamic_u32_le(_val, _attr) _side_arg_dynamic_u32(_val, SIDE_TYPE_BYTE_ORDER_LE, SIDE_PARAM(_attr))
1555 #define side_arg_dynamic_u64_le(_val, _attr) _side_arg_dynamic_u64(_val, SIDE_TYPE_BYTE_ORDER_LE, SIDE_PARAM(_attr))
1556 #define side_arg_dynamic_s16_le(_val, _attr) _side_arg_dynamic_s16(_val, SIDE_TYPE_BYTE_ORDER_LE, SIDE_PARAM(_attr))
1557 #define side_arg_dynamic_s32_le(_val, _attr) _side_arg_dynamic_s32(_val, SIDE_TYPE_BYTE_ORDER_LE, SIDE_PARAM(_attr))
1558 #define side_arg_dynamic_s64_le(_val, _attr) _side_arg_dynamic_s64(_val, SIDE_TYPE_BYTE_ORDER_LE, SIDE_PARAM(_attr))
1559 #define side_arg_dynamic_pointer_le(_val, _attr) _side_arg_dynamic_pointer(_val, SIDE_TYPE_BYTE_ORDER_LE, SIDE_PARAM(_attr))
1560 #define side_arg_dynamic_float_binary16_le(_val, _attr) _side_arg_dynamic_float_binary16(_val, SIDE_TYPE_BYTE_ORDER_LE, SIDE_PARAM(_attr))
1561 #define side_arg_dynamic_float_binary32_le(_val, _attr) _side_arg_dynamic_float_binary32(_val, SIDE_TYPE_BYTE_ORDER_LE, SIDE_PARAM(_attr))
1562 #define side_arg_dynamic_float_binary64_le(_val, _attr) _side_arg_dynamic_float_binary64(_val, SIDE_TYPE_BYTE_ORDER_LE, SIDE_PARAM(_attr))
1563 #define side_arg_dynamic_float_binary128_le(_val, _attr) _side_arg_dynamic_float_binary128(_val, SIDE_TYPE_BYTE_ORDER_LE, SIDE_PARAM(_attr))
1564
1565 /* Big endian */
1566 #define side_arg_dynamic_u16_be(_val, _attr) _side_arg_dynamic_u16(_val, SIDE_TYPE_BYTE_ORDER_BE, SIDE_PARAM(_attr))
1567 #define side_arg_dynamic_u32_be(_val, _attr) _side_arg_dynamic_u32(_val, SIDE_TYPE_BYTE_ORDER_BE, SIDE_PARAM(_attr))
1568 #define side_arg_dynamic_u64_be(_val, _attr) _side_arg_dynamic_u64(_val, SIDE_TYPE_BYTE_ORDER_BE, SIDE_PARAM(_attr))
1569 #define side_arg_dynamic_s16_be(_val, _attr) _side_arg_dynamic_s16(_val, SIDE_TYPE_BYTE_ORDER_BE, SIDE_PARAM(_attr))
1570 #define side_arg_dynamic_s32_be(_val, _attr) _side_arg_dynamic_s32(_val, SIDE_TYPE_BYTE_ORDER_BE, SIDE_PARAM(_attr))
1571 #define side_arg_dynamic_s64_be(_val, _attr) _side_arg_dynamic_s64(_val, SIDE_TYPE_BYTE_ORDER_BE, SIDE_PARAM(_attr))
1572 #define side_arg_dynamic_pointer_be(_val, _attr) _side_arg_dynamic_pointer(_val, SIDE_TYPE_BYTE_ORDER_BE, SIDE_PARAM(_attr))
1573 #define side_arg_dynamic_float_binary16_be(_val, _attr) _side_arg_dynamic_float_binary16(_val, SIDE_TYPE_BYTE_ORDER_BE, SIDE_PARAM(_attr))
1574 #define side_arg_dynamic_float_binary32_be(_val, _attr) _side_arg_dynamic_float_binary32(_val, SIDE_TYPE_BYTE_ORDER_BE, SIDE_PARAM(_attr))
1575 #define side_arg_dynamic_float_binary64_be(_val, _attr) _side_arg_dynamic_float_binary64(_val, SIDE_TYPE_BYTE_ORDER_BE, SIDE_PARAM(_attr))
1576 #define side_arg_dynamic_float_binary128_be(_val, _attr) _side_arg_dynamic_float_binary128(_val, SIDE_TYPE_BYTE_ORDER_BE, SIDE_PARAM(_attr))
1577
1578 #define side_arg_dynamic_vla(_vla) \
1579 { \
1580 .type = SIDE_TYPE_DYNAMIC_VLA, \
1581 .u = { \
1582 .side_dynamic = { \
1583 .side_dynamic_vla = (_vla), \
1584 }, \
1585 }, \
1586 }
1587
1588 #define side_arg_dynamic_vla_visitor(_dynamic_vla_visitor, _ctx, _attr) \
1589 { \
1590 .type = SIDE_TYPE_DYNAMIC_VLA_VISITOR, \
1591 .u = { \
1592 .side_dynamic = { \
1593 .side_dynamic_vla_visitor = { \
1594 .app_ctx = _ctx, \
1595 .visitor = _dynamic_vla_visitor, \
1596 .attr = _attr, \
1597 .nr_attr = SIDE_ARRAY_SIZE(SIDE_PARAM(_attr)), \
1598 }, \
1599 }, \
1600 }, \
1601 }
1602
1603 #define side_arg_dynamic_struct(_struct) \
1604 { \
1605 .type = SIDE_TYPE_DYNAMIC_STRUCT, \
1606 .u = { \
1607 .side_dynamic = { \
1608 .side_dynamic_struct = (_struct), \
1609 }, \
1610 }, \
1611 }
1612
1613 #define side_arg_dynamic_struct_visitor(_dynamic_struct_visitor, _ctx, _attr) \
1614 { \
1615 .type = SIDE_TYPE_DYNAMIC_STRUCT_VISITOR, \
1616 .u = { \
1617 .side_dynamic = { \
1618 .side_dynamic_struct_visitor = { \
1619 .app_ctx = _ctx, \
1620 .visitor = _dynamic_struct_visitor, \
1621 .attr = _attr, \
1622 .nr_attr = SIDE_ARRAY_SIZE(SIDE_PARAM(_attr)), \
1623 }, \
1624 }, \
1625 }, \
1626 }
1627
1628 #define side_arg_dynamic_define_vec(_identifier, _sav, _attr) \
1629 const struct side_arg _identifier##_vec[] = { _sav }; \
1630 const struct side_arg_dynamic_vla _identifier = { \
1631 .sav = _identifier##_vec, \
1632 .attr = _attr, \
1633 .len = SIDE_ARRAY_SIZE(_identifier##_vec), \
1634 .nr_attr = SIDE_ARRAY_SIZE(SIDE_PARAM(_attr)), \
1635 }
1636
1637 #define side_arg_dynamic_define_struct(_identifier, _struct_fields, _attr) \
1638 const struct side_arg_dynamic_field _identifier##_fields[] = { _struct_fields }; \
1639 const struct side_arg_dynamic_struct _identifier = { \
1640 .fields = _identifier##_fields, \
1641 .attr = _attr, \
1642 .len = SIDE_ARRAY_SIZE(_identifier##_fields), \
1643 .nr_attr = SIDE_ARRAY_SIZE(SIDE_PARAM(_attr)), \
1644 }
1645
1646 #define side_arg_define_vec(_identifier, _sav) \
1647 const struct side_arg _identifier##_vec[] = { _sav }; \
1648 const struct side_arg_vec _identifier = { \
1649 .sav = _identifier##_vec, \
1650 .len = SIDE_ARRAY_SIZE(_identifier##_vec), \
1651 }
1652
1653 #define side_arg_dynamic_field(_name, _elem) \
1654 { \
1655 .field_name = _name, \
1656 .elem = _elem, \
1657 }
1658
1659 /*
1660 * Event instrumentation description registration, runtime enabled state
1661 * check, and instrumentation invocation.
1662 */
1663
1664 #define side_arg_list(...) __VA_ARGS__
1665
1666 #define side_event_cond(_identifier) \
1667 if (side_unlikely(__atomic_load_n(&side_event_enable__##_identifier, \
1668 __ATOMIC_RELAXED)))
1669
1670 #define side_event_call(_identifier, _sav) \
1671 { \
1672 const struct side_arg side_sav[] = { _sav }; \
1673 const struct side_arg_vec side_arg_vec = { \
1674 .sav = side_sav, \
1675 .len = SIDE_ARRAY_SIZE(side_sav), \
1676 }; \
1677 side_call(&(_identifier), &side_arg_vec); \
1678 }
1679
1680 #define side_event(_identifier, _sav) \
1681 side_event_cond(_identifier) \
1682 side_event_call(_identifier, SIDE_PARAM(_sav))
1683
1684 #define side_event_call_variadic(_identifier, _sav, _var_fields, _attr) \
1685 { \
1686 const struct side_arg side_sav[] = { _sav }; \
1687 const struct side_arg_vec side_arg_vec = { \
1688 .sav = side_sav, \
1689 .len = SIDE_ARRAY_SIZE(side_sav), \
1690 }; \
1691 const struct side_arg_dynamic_field side_fields[] = { _var_fields }; \
1692 const struct side_arg_dynamic_struct var_struct = { \
1693 .fields = side_fields, \
1694 .attr = _attr, \
1695 .len = SIDE_ARRAY_SIZE(side_fields), \
1696 .nr_attr = SIDE_ARRAY_SIZE(SIDE_PARAM(_attr)), \
1697 }; \
1698 side_call_variadic(&(_identifier), &side_arg_vec, &var_struct); \
1699 }
1700
1701 #define side_event_variadic(_identifier, _sav, _var, _attr) \
1702 side_event_cond(_identifier) \
1703 side_event_call_variadic(_identifier, SIDE_PARAM(_sav), SIDE_PARAM(_var), SIDE_PARAM(_attr))
1704
1705 #define _side_define_event(_linkage, _identifier, _provider, _event, _loglevel, _fields, _attr, _flags) \
1706 _linkage uintptr_t side_event_enable__##_identifier __attribute__((section("side_event_enable"))); \
1707 _linkage struct side_event_description __attribute__((section("side_event_description"))) \
1708 _identifier = { \
1709 .enabled = &(side_event_enable__##_identifier), \
1710 .provider_name = _provider, \
1711 .event_name = _event, \
1712 .fields = _fields, \
1713 .attr = _attr, \
1714 .callbacks = &side_empty_callback, \
1715 .flags = (_flags), \
1716 .version = 0, \
1717 .loglevel = _loglevel, \
1718 .nr_fields = SIDE_ARRAY_SIZE(SIDE_PARAM(_fields)), \
1719 .nr_attr = SIDE_ARRAY_SIZE(SIDE_PARAM(_attr)), \
1720 .nr_callbacks = 0, \
1721 }; \
1722 static const struct side_event_description *side_event_ptr__##_identifier \
1723 __attribute__((section("side_event_description_ptr"), used)) = &(_identifier);
1724
1725 #define side_static_event(_identifier, _provider, _event, _loglevel, _fields, _attr) \
1726 _side_define_event(static, _identifier, _provider, _event, _loglevel, SIDE_PARAM(_fields), \
1727 SIDE_PARAM(_attr), 0)
1728
1729 #define side_static_event_variadic(_identifier, _provider, _event, _loglevel, _fields, _attr) \
1730 _side_define_event(static, _identifier, _provider, _event, _loglevel, SIDE_PARAM(_fields), \
1731 SIDE_PARAM(_attr), SIDE_EVENT_FLAG_VARIADIC)
1732
1733 #define side_hidden_event(_identifier, _provider, _event, _loglevel, _fields, _attr) \
1734 _side_define_event(__attribute__((visibility("hidden"))), _identifier, _provider, _event, \
1735 _loglevel, SIDE_PARAM(_fields), SIDE_PARAM(_attr), 0)
1736
1737 #define side_hidden_event_variadic(_identifier, _provider, _event, _loglevel, _fields, _attr) \
1738 _side_define_event(__attribute__((visibility("hidden"))), _identifier, _provider, _event, \
1739 _loglevel, SIDE_PARAM(_fields), SIDE_PARAM(_attr), SIDE_EVENT_FLAG_VARIADIC)
1740
1741 #define side_export_event(_identifier, _provider, _event, _loglevel, _fields, _attr) \
1742 _side_define_event(__attribute__((visibility("default"))), _identifier, _provider, _event, \
1743 _loglevel, SIDE_PARAM(_fields), SIDE_PARAM(_attr), 0)
1744
1745 #define side_export_event_variadic(_identifier, _provider, _event, _loglevel, _fields, _attr) \
1746 _side_define_event(__attribute__((visibility("default"))), _identifier, _provider, _event, \
1747 _loglevel, SIDE_PARAM(_fields), SIDE_PARAM(_attr), SIDE_EVENT_FLAG_VARIADIC)
1748
1749 #define side_declare_event(_identifier) \
1750 extern uintptr_t side_event_enable_##_identifier; \
1751 extern struct side_event_description _identifier
1752
1753 #ifdef __cplusplus
1754 extern "C" {
1755 #endif
1756
1757 extern const struct side_callback side_empty_callback;
1758
1759 void side_call(const struct side_event_description *desc,
1760 const struct side_arg_vec *side_arg_vec);
1761 void side_call_variadic(const struct side_event_description *desc,
1762 const struct side_arg_vec *side_arg_vec,
1763 const struct side_arg_dynamic_struct *var_struct);
1764
1765 struct side_events_register_handle *side_events_register(struct side_event_description **events,
1766 uint32_t nr_events);
1767 void side_events_unregister(struct side_events_register_handle *handle);
1768
1769 /*
1770 * Userspace tracer registration API. This allows userspace tracers to
1771 * register event notification callbacks to be notified of the currently
1772 * registered instrumentation, and to register their callbacks to
1773 * specific events.
1774 */
1775 typedef void (*side_tracer_callback_func)(const struct side_event_description *desc,
1776 const struct side_arg_vec *side_arg_vec,
1777 void *priv);
1778 typedef void (*side_tracer_callback_variadic_func)(const struct side_event_description *desc,
1779 const struct side_arg_vec *side_arg_vec,
1780 const struct side_arg_dynamic_struct *var_struct,
1781 void *priv);
1782
1783 int side_tracer_callback_register(struct side_event_description *desc,
1784 side_tracer_callback_func call,
1785 void *priv);
1786 int side_tracer_callback_variadic_register(struct side_event_description *desc,
1787 side_tracer_callback_variadic_func call_variadic,
1788 void *priv);
1789 int side_tracer_callback_unregister(struct side_event_description *desc,
1790 side_tracer_callback_func call,
1791 void *priv);
1792 int side_tracer_callback_variadic_unregister(struct side_event_description *desc,
1793 side_tracer_callback_variadic_func call_variadic,
1794 void *priv);
1795
1796 enum side_tracer_notification {
1797 SIDE_TRACER_NOTIFICATION_INSERT_EVENTS,
1798 SIDE_TRACER_NOTIFICATION_REMOVE_EVENTS,
1799 };
1800
1801 /* Callback is invoked with side library internal lock held. */
1802 struct side_tracer_handle *side_tracer_event_notification_register(
1803 void (*cb)(enum side_tracer_notification notif,
1804 struct side_event_description **events, uint32_t nr_events, void *priv),
1805 void *priv);
1806 void side_tracer_event_notification_unregister(struct side_tracer_handle *handle);
1807
1808 /*
1809 * Explicit hooks to initialize/finalize the side instrumentation
1810 * library. Those are also library constructor/destructor.
1811 */
1812 void side_init(void);
1813 void side_exit(void);
1814
1815 /*
1816 * The following constructors/destructors perform automatic registration
1817 * of the declared side events. Those may have to be called explicitly
1818 * in a statically linked library.
1819 */
1820
1821 /*
1822 * These weak symbols, the constructor, and destructor take care of
1823 * registering only _one_ instance of the side instrumentation per
1824 * shared-ojbect (or for the whole main program).
1825 */
1826 extern struct side_event_description * __start_side_event_description_ptr[]
1827 __attribute__((weak, visibility("hidden")));
1828 extern struct side_event_description * __stop_side_event_description_ptr[]
1829 __attribute__((weak, visibility("hidden")));
1830 int side_event_description_ptr_registered
1831 __attribute__((weak, visibility("hidden")));
1832 struct side_events_register_handle *side_events_handle
1833 __attribute__((weak, visibility("hidden")));
1834
1835 static void
1836 side_event_description_ptr_init(void)
1837 __attribute__((no_instrument_function))
1838 __attribute__((constructor));
1839 static void
1840 side_event_description_ptr_init(void)
1841 {
1842 if (side_event_description_ptr_registered++)
1843 return;
1844 side_events_handle = side_events_register(__start_side_event_description_ptr,
1845 __stop_side_event_description_ptr - __start_side_event_description_ptr);
1846 }
1847
1848 static void
1849 side_event_description_ptr_exit(void)
1850 __attribute__((no_instrument_function))
1851 __attribute__((destructor));
1852 static void
1853 side_event_description_ptr_exit(void)
1854 {
1855 if (--side_event_description_ptr_registered)
1856 return;
1857 side_events_unregister(side_events_handle);
1858 side_events_handle = NULL;
1859 }
1860
1861 #ifdef __cplusplus
1862 }
1863 #endif
1864
1865 #endif /* _SIDE_TRACE_H */
This page took 0.084987 seconds and 5 git commands to generate.