} SIDE_PACKED;
struct side_type {
- uint32_t type; /* enum side_type_label */
+ side_enum_t(enum side_type_label, uint32_t) type;
union {
/* Stack-copy basic types */
struct side_type_null side_null;
} SIDE_PACKED;
struct side_arg {
- uint32_t type; /* enum side_type_label */
+ side_enum_t(enum side_type_label, uint32_t) type;
union {
union side_arg_static side_static;
union side_arg_dynamic side_dynamic;
#define side_type_null(_attr...) \
{ \
- .type = SIDE_TYPE_NULL, \
+ .type = SIDE_ENUM_INIT(SIDE_TYPE_NULL), \
.u = { \
.side_null = { \
.attr = SIDE_PTR_INIT(SIDE_PARAM_SELECT_ARG1(_, ##_attr, side_attr_list())), \
#define side_type_bool(_attr...) \
{ \
- .type = SIDE_TYPE_BOOL, \
+ .type = SIDE_ENUM_INIT(SIDE_TYPE_BOOL), \
.u = { \
.side_bool = { \
.attr = SIDE_PTR_INIT(SIDE_PARAM_SELECT_ARG1(_, ##_attr, side_attr_list())), \
#define side_type_byte(_attr...) \
{ \
- .type = SIDE_TYPE_BYTE, \
+ .type = SIDE_ENUM_INIT(SIDE_TYPE_BYTE), \
.u = { \
.side_byte = { \
.attr = SIDE_PTR_INIT(SIDE_PARAM_SELECT_ARG1(_, ##_attr, side_attr_list())), \
#define _side_type_string(_type, _byte_order, _unit_size, _attr) \
{ \
- .type = _type, \
+ .type = SIDE_ENUM_INIT(_type), \
.u = { \
.side_string = { \
.attr = SIDE_PTR_INIT(_attr), \
#define side_type_dynamic() \
{ \
- .type = SIDE_TYPE_DYNAMIC, \
+ .type = SIDE_ENUM_INIT(SIDE_TYPE_DYNAMIC), \
}
#define _side_type_integer(_type, _signedness, _byte_order, _integer_size, _len_bits, _attr) \
{ \
- .type = _type, \
+ .type = SIDE_ENUM_INIT(_type), \
.u = { \
.side_integer = { \
.attr = SIDE_PTR_INIT(_attr), \
#define _side_type_float(_type, _byte_order, _float_size, _attr) \
{ \
- .type = _type, \
+ .type = SIDE_ENUM_INIT(_type), \
.u = { \
.side_float = { \
.attr = SIDE_PTR_INIT(_attr), \
#define side_type_enum(_mappings, _elem_type) \
{ \
- .type = SIDE_TYPE_ENUM, \
+ .type = SIDE_ENUM_INIT(SIDE_TYPE_ENUM), \
.u = { \
.side_enum = { \
.mappings = SIDE_PTR_INIT(_mappings), \
#define side_type_enum_bitmap(_mappings, _elem_type) \
{ \
- .type = SIDE_TYPE_ENUM_BITMAP, \
+ .type = SIDE_ENUM_INIT(SIDE_TYPE_ENUM_BITMAP), \
.u = { \
.side_enum_bitmap = { \
.mappings = SIDE_PTR_INIT(_mappings), \
#define side_type_struct(_struct) \
{ \
- .type = SIDE_TYPE_STRUCT, \
+ .type = SIDE_ENUM_INIT(SIDE_TYPE_STRUCT), \
.u = { \
.side_struct = SIDE_PTR_INIT(_struct), \
}, \
#define side_type_variant(_variant) \
{ \
- .type = SIDE_TYPE_VARIANT, \
+ .type = SIDE_ENUM_INIT(SIDE_TYPE_VARIANT), \
.u = { \
.side_variant = SIDE_PTR_INIT(_variant), \
}, \
#define side_type_array(_elem_type, _length, _attr...) \
{ \
- .type = SIDE_TYPE_ARRAY, \
+ .type = SIDE_ENUM_INIT(SIDE_TYPE_ARRAY), \
.u = { \
.side_array = { \
.elem_type = SIDE_PTR_INIT(_elem_type), \
#define side_type_vla(_elem_type, _attr...) \
{ \
- .type = SIDE_TYPE_VLA, \
+ .type = SIDE_ENUM_INIT(SIDE_TYPE_VLA), \
.u = { \
.side_vla = { \
.elem_type = SIDE_PTR_INIT(_elem_type), \
#define side_type_vla_visitor(_elem_type, _visitor, _attr...) \
{ \
- .type = SIDE_TYPE_VLA_VISITOR, \
+ .type = SIDE_ENUM_INIT(SIDE_TYPE_VLA_VISITOR), \
.u = { \
.side_vla_visitor = { \
.elem_type = SIDE_PTR_INIT(_elem_type), \
#define side_type_gather_byte(_offset, _access_mode, _attr...) \
{ \
- .type = SIDE_TYPE_GATHER_BYTE, \
+ .type = SIDE_ENUM_INIT(SIDE_TYPE_GATHER_BYTE), \
.u = { \
.side_gather = { \
.u = { \
#define _side_type_gather_bool(_byte_order, _offset, _bool_size, _offset_bits, _len_bits, _access_mode, _attr...) \
{ \
- .type = SIDE_TYPE_GATHER_BOOL, \
+ .type = SIDE_ENUM_INIT(SIDE_TYPE_GATHER_BOOL), \
.u = { \
.side_gather = { \
.u = { \
#define _side_type_gather_integer(_type, _signedness, _byte_order, _offset, \
_integer_size, _offset_bits, _len_bits, _access_mode, _attr...) \
{ \
- .type = _type, \
+ .type = SIDE_ENUM_INIT(_type), \
.u = { \
.side_gather = { \
.u = { \
#define _side_type_gather_float(_byte_order, _offset, _float_size, _access_mode, _attr...) \
{ \
- .type = SIDE_TYPE_GATHER_FLOAT, \
+ .type = SIDE_ENUM_INIT(SIDE_TYPE_GATHER_FLOAT), \
.u = { \
.side_gather = { \
.u = { \
#define _side_type_gather_string(_offset, _byte_order, _unit_size, _access_mode, _attr...) \
{ \
- .type = SIDE_TYPE_GATHER_STRING, \
+ .type = SIDE_ENUM_INIT(SIDE_TYPE_GATHER_STRING), \
.u = { \
.side_gather = { \
.u = { \
#define side_type_gather_enum(_mappings, _elem_type) \
{ \
- .type = SIDE_TYPE_GATHER_ENUM, \
+ .type = SIDE_ENUM_INIT(SIDE_TYPE_GATHER_ENUM), \
.u = { \
.side_enum = { \
.mappings = SIDE_PTR_INIT(_mappings), \
#define side_type_gather_struct(_struct_gather, _offset, _size, _access_mode) \
{ \
- .type = SIDE_TYPE_GATHER_STRUCT, \
+ .type = SIDE_ENUM_INIT(SIDE_TYPE_GATHER_STRUCT), \
.u = { \
.side_gather = { \
.u = { \
#define side_type_gather_array(_elem_type_gather, _length, _offset, _access_mode, _attr...) \
{ \
- .type = SIDE_TYPE_GATHER_ARRAY, \
+ .type = SIDE_ENUM_INIT(SIDE_TYPE_GATHER_ARRAY), \
.u = { \
.side_gather = { \
.u = { \
#define side_type_gather_vla(_elem_type_gather, _offset, _access_mode, _length_type_gather, _attr...) \
{ \
- .type = SIDE_TYPE_GATHER_VLA, \
+ .type = SIDE_ENUM_INIT(SIDE_TYPE_GATHER_VLA), \
.u = { \
.side_gather = { \
.u = { \
/* Stack-copy field arguments */
-#define side_arg_null(_val) { .type = SIDE_TYPE_NULL }
-#define side_arg_bool(_val) { .type = SIDE_TYPE_BOOL, .u = { .side_static = { .bool_value = { .side_bool8 = !!(_val) } } } }
-#define side_arg_byte(_val) { .type = SIDE_TYPE_BYTE, .u = { .side_static = { .byte_value = (_val) } } }
-#define side_arg_string(_val) { .type = SIDE_TYPE_STRING_UTF8, .u = { .side_static = { .string_value = SIDE_PTR_INIT(_val) } } }
-#define side_arg_string16(_val) { .type = SIDE_TYPE_STRING_UTF16, .u = { .side_static = { .string_value = SIDE_PTR_INIT(_val) } } }
-#define side_arg_string32(_val) { .type = SIDE_TYPE_STRING_UTF32, .u = { .side_static = { .string_value = SIDE_PTR_INIT(_val) } } }
-
-#define side_arg_u8(_val) { .type = SIDE_TYPE_U8, .u = { .side_static = { .integer_value = { .side_u8 = (_val) } } } }
-#define side_arg_u16(_val) { .type = SIDE_TYPE_U16, .u = { .side_static = { .integer_value = { .side_u16 = (_val) } } } }
-#define side_arg_u32(_val) { .type = SIDE_TYPE_U32, .u = { .side_static = { .integer_value = { .side_u32 = (_val) } } } }
-#define side_arg_u64(_val) { .type = SIDE_TYPE_U64, .u = { .side_static = { .integer_value = { .side_u64 = (_val) } } } }
-#define side_arg_s8(_val) { .type = SIDE_TYPE_S8, .u = { .side_static = { .integer_value = { .side_s8 = (_val) } } } }
-#define side_arg_s16(_val) { .type = SIDE_TYPE_S16, .u = { .side_static = { .integer_value = { .side_s16 = (_val) } } } }
-#define side_arg_s32(_val) { .type = SIDE_TYPE_S32, .u = { .side_static = { .integer_value = { .side_s32 = (_val) } } } }
-#define side_arg_s64(_val) { .type = SIDE_TYPE_S64, .u = { .side_static = { .integer_value = { .side_s64 = (_val) } } } }
-#define side_arg_pointer(_val) { .type = SIDE_TYPE_POINTER, .u = { .side_static = { .integer_value = { .side_uptr = (uintptr_t) (_val) } } } }
-#define side_arg_float_binary16(_val) { .type = SIDE_TYPE_FLOAT_BINARY16, .u = { .side_static = { .float_value = { .side_float_binary16 = (_val) } } } }
-#define side_arg_float_binary32(_val) { .type = SIDE_TYPE_FLOAT_BINARY32, .u = { .side_static = { .float_value = { .side_float_binary32 = (_val) } } } }
-#define side_arg_float_binary64(_val) { .type = SIDE_TYPE_FLOAT_BINARY64, .u = { .side_static = { .float_value = { .side_float_binary64 = (_val) } } } }
-#define side_arg_float_binary128(_val) { .type = SIDE_TYPE_FLOAT_BINARY128, .u = { .side_static = { .float_value = { .side_float_binary128 = (_val) } } } }
-
-#define side_arg_struct(_side_type) { .type = SIDE_TYPE_STRUCT, .u = { .side_static = { .side_struct = SIDE_PTR_INIT(_side_type) } } }
+#define side_arg_null(_val) { .type = SIDE_ENUM_INIT(SIDE_TYPE_NULL) }
+#define side_arg_bool(_val) { .type = SIDE_ENUM_INIT(SIDE_TYPE_BOOL), .u = { .side_static = { .bool_value = { .side_bool8 = !!(_val) } } } }
+#define side_arg_byte(_val) { .type = SIDE_ENUM_INIT(SIDE_TYPE_BYTE), .u = { .side_static = { .byte_value = (_val) } } }
+#define side_arg_string(_val) { .type = SIDE_ENUM_INIT(SIDE_TYPE_STRING_UTF8), .u = { .side_static = { .string_value = SIDE_PTR_INIT(_val) } } }
+#define side_arg_string16(_val) { .type = SIDE_ENUM_INIT(SIDE_TYPE_STRING_UTF16), .u = { .side_static = { .string_value = SIDE_PTR_INIT(_val) } } }
+#define side_arg_string32(_val) { .type = SIDE_ENUM_INIT(SIDE_TYPE_STRING_UTF32), .u = { .side_static = { .string_value = SIDE_PTR_INIT(_val) } } }
+
+#define side_arg_u8(_val) { .type = SIDE_ENUM_INIT(SIDE_TYPE_U8), .u = { .side_static = { .integer_value = { .side_u8 = (_val) } } } }
+#define side_arg_u16(_val) { .type = SIDE_ENUM_INIT(SIDE_TYPE_U16), .u = { .side_static = { .integer_value = { .side_u16 = (_val) } } } }
+#define side_arg_u32(_val) { .type = SIDE_ENUM_INIT(SIDE_TYPE_U32), .u = { .side_static = { .integer_value = { .side_u32 = (_val) } } } }
+#define side_arg_u64(_val) { .type = SIDE_ENUM_INIT(SIDE_TYPE_U64), .u = { .side_static = { .integer_value = { .side_u64 = (_val) } } } }
+#define side_arg_s8(_val) { .type = SIDE_ENUM_INIT(SIDE_TYPE_S8), .u = { .side_static = { .integer_value = { .side_s8 = (_val) } } } }
+#define side_arg_s16(_val) { .type = SIDE_ENUM_INIT(SIDE_TYPE_S16), .u = { .side_static = { .integer_value = { .side_s16 = (_val) } } } }
+#define side_arg_s32(_val) { .type = SIDE_ENUM_INIT(SIDE_TYPE_S32), .u = { .side_static = { .integer_value = { .side_s32 = (_val) } } } }
+#define side_arg_s64(_val) { .type = SIDE_ENUM_INIT(SIDE_TYPE_S64), .u = { .side_static = { .integer_value = { .side_s64 = (_val) } } } }
+#define side_arg_pointer(_val) { .type = SIDE_ENUM_INIT(SIDE_TYPE_POINTER), .u = { .side_static = { .integer_value = { .side_uptr = (uintptr_t) (_val) } } } }
+#define side_arg_float_binary16(_val) { .type = SIDE_ENUM_INIT(SIDE_TYPE_FLOAT_BINARY16), .u = { .side_static = { .float_value = { .side_float_binary16 = (_val) } } } }
+#define side_arg_float_binary32(_val) { .type = SIDE_ENUM_INIT(SIDE_TYPE_FLOAT_BINARY32), .u = { .side_static = { .float_value = { .side_float_binary32 = (_val) } } } }
+#define side_arg_float_binary64(_val) { .type = SIDE_ENUM_INIT(SIDE_TYPE_FLOAT_BINARY64), .u = { .side_static = { .float_value = { .side_float_binary64 = (_val) } } } }
+#define side_arg_float_binary128(_val) { .type = SIDE_ENUM_INIT(SIDE_TYPE_FLOAT_BINARY128), .u = { .side_static = { .float_value = { .side_float_binary128 = (_val) } } } }
+
+#define side_arg_struct(_side_type) { .type = SIDE_ENUM_INIT(SIDE_TYPE_STRUCT), .u = { .side_static = { .side_struct = SIDE_PTR_INIT(_side_type) } } }
#define side_arg_define_variant(_identifier, _selector_val, _option) \
const struct side_arg_variant _identifier = { \
}
#define side_arg_variant(_side_variant) \
{ \
- .type = SIDE_TYPE_VARIANT, \
+ .type = SIDE_ENUM_INIT(SIDE_TYPE_VARIANT), \
.u = { \
.side_static = { \
.side_variant = SIDE_PTR_INIT(_side_variant), \
}, \
}
-#define side_arg_array(_side_type) { .type = SIDE_TYPE_ARRAY, .u = { .side_static = { .side_array = SIDE_PTR_INIT(_side_type) } } }
-#define side_arg_vla(_side_type) { .type = SIDE_TYPE_VLA, .u = { .side_static = { .side_vla = SIDE_PTR_INIT(_side_type) } } }
-#define side_arg_vla_visitor(_ctx) { .type = SIDE_TYPE_VLA_VISITOR, .u = { .side_static = { .side_vla_app_visitor_ctx = (_ctx) } } }
+#define side_arg_array(_side_type) { .type = SIDE_ENUM_INIT(SIDE_TYPE_ARRAY), .u = { .side_static = { .side_array = SIDE_PTR_INIT(_side_type) } } }
+#define side_arg_vla(_side_type) { .type = SIDE_ENUM_INIT(SIDE_TYPE_VLA), .u = { .side_static = { .side_vla = SIDE_PTR_INIT(_side_type) } } }
+#define side_arg_vla_visitor(_ctx) { .type = SIDE_ENUM_INIT(SIDE_TYPE_VLA_VISITOR), .u = { .side_static = { .side_vla_app_visitor_ctx = (_ctx) } } }
/* Gather field arguments */
-#define side_arg_gather_bool(_ptr) { .type = SIDE_TYPE_GATHER_BOOL, .u = { .side_static = { .side_bool_gather_ptr = SIDE_PTR_INIT(_ptr) } } }
-#define side_arg_gather_byte(_ptr) { .type = SIDE_TYPE_GATHER_BYTE, .u = { .side_static = { .side_byte_gather_ptr = SIDE_PTR_INIT(_ptr) } } }
-#define side_arg_gather_pointer(_ptr) { .type = SIDE_TYPE_GATHER_POINTER, .u = { .side_static = { .side_integer_gather_ptr = SIDE_PTR_INIT(_ptr) } } }
-#define side_arg_gather_integer(_ptr) { .type = SIDE_TYPE_GATHER_INTEGER, .u = { .side_static = { .side_integer_gather_ptr = SIDE_PTR_INIT(_ptr) } } }
-#define side_arg_gather_float(_ptr) { .type = SIDE_TYPE_GATHER_FLOAT, .u = { .side_static = { .side_float_gather_ptr = SIDE_PTR_INIT(_ptr) } } }
-#define side_arg_gather_string(_ptr) { .type = SIDE_TYPE_GATHER_STRING, .u = { .side_static = { .side_string_gather_ptr = SIDE_PTR_INIT(_ptr) } } }
-#define side_arg_gather_struct(_ptr) { .type = SIDE_TYPE_GATHER_STRUCT, .u = { .side_static = { .side_struct_gather_ptr = SIDE_PTR_INIT(_ptr) } } }
-#define side_arg_gather_array(_ptr) { .type = SIDE_TYPE_GATHER_ARRAY, .u = { .side_static = { .side_array_gather_ptr = SIDE_PTR_INIT(_ptr) } } }
-#define side_arg_gather_vla(_ptr, _length_ptr) { .type = SIDE_TYPE_GATHER_VLA, .u = { .side_static = { .side_vla_gather = { .ptr = SIDE_PTR_INIT(_ptr), .length_ptr = SIDE_PTR_INIT(_length_ptr) } } } }
+#define side_arg_gather_bool(_ptr) { .type = SIDE_ENUM_INIT(SIDE_TYPE_GATHER_BOOL), .u = { .side_static = { .side_bool_gather_ptr = SIDE_PTR_INIT(_ptr) } } }
+#define side_arg_gather_byte(_ptr) { .type = SIDE_ENUM_INIT(SIDE_TYPE_GATHER_BYTE), .u = { .side_static = { .side_byte_gather_ptr = SIDE_PTR_INIT(_ptr) } } }
+#define side_arg_gather_pointer(_ptr) { .type = SIDE_ENUM_INIT(SIDE_TYPE_GATHER_POINTER), .u = { .side_static = { .side_integer_gather_ptr = SIDE_PTR_INIT(_ptr) } } }
+#define side_arg_gather_integer(_ptr) { .type = SIDE_ENUM_INIT(SIDE_TYPE_GATHER_INTEGER), .u = { .side_static = { .side_integer_gather_ptr = SIDE_PTR_INIT(_ptr) } } }
+#define side_arg_gather_float(_ptr) { .type = SIDE_ENUM_INIT(SIDE_TYPE_GATHER_FLOAT), .u = { .side_static = { .side_float_gather_ptr = SIDE_PTR_INIT(_ptr) } } }
+#define side_arg_gather_string(_ptr) { .type = SIDE_ENUM_INIT(SIDE_TYPE_GATHER_STRING), .u = { .side_static = { .side_string_gather_ptr = SIDE_PTR_INIT(_ptr) } } }
+#define side_arg_gather_struct(_ptr) { .type = SIDE_ENUM_INIT(SIDE_TYPE_GATHER_STRUCT), .u = { .side_static = { .side_struct_gather_ptr = SIDE_PTR_INIT(_ptr) } } }
+#define side_arg_gather_array(_ptr) { .type = SIDE_ENUM_INIT(SIDE_TYPE_GATHER_ARRAY), .u = { .side_static = { .side_array_gather_ptr = SIDE_PTR_INIT(_ptr) } } }
+#define side_arg_gather_vla(_ptr, _length_ptr) { .type = SIDE_ENUM_INIT(SIDE_TYPE_GATHER_VLA), .u = { .side_static = { .side_vla_gather = { .ptr = SIDE_PTR_INIT(_ptr), .length_ptr = SIDE_PTR_INIT(_length_ptr) } } } }
/* Dynamic field arguments */
#define side_arg_dynamic_null(_attr...) \
{ \
- .type = SIDE_TYPE_DYNAMIC_NULL, \
+ .type = SIDE_ENUM_INIT(SIDE_TYPE_DYNAMIC_NULL), \
.u = { \
.side_dynamic = { \
.side_null = { \
#define side_arg_dynamic_bool(_val, _attr...) \
{ \
- .type = SIDE_TYPE_DYNAMIC_BOOL, \
+ .type = SIDE_ENUM_INIT(SIDE_TYPE_DYNAMIC_BOOL), \
.u = { \
.side_dynamic = { \
.side_bool = { \
#define side_arg_dynamic_byte(_val, _attr...) \
{ \
- .type = SIDE_TYPE_DYNAMIC_BYTE, \
+ .type = SIDE_ENUM_INIT(SIDE_TYPE_DYNAMIC_BYTE), \
.u = { \
.side_dynamic = { \
.side_byte = { \
#define _side_arg_dynamic_string(_val, _byte_order, _unit_size, _attr...) \
{ \
- .type = SIDE_TYPE_DYNAMIC_STRING, \
+ .type = SIDE_ENUM_INIT(SIDE_TYPE_DYNAMIC_STRING), \
.u = { \
.side_dynamic = { \
.side_string = { \
#define _side_arg_dynamic_integer(_field, _val, _type, _signedness, _byte_order, _integer_size, _len_bits, _attr...) \
{ \
- .type = _type, \
+ .type = SIDE_ENUM_INIT(_type), \
.u = { \
.side_dynamic = { \
.side_integer = { \
#define _side_arg_dynamic_float(_field, _val, _type, _byte_order, _float_size, _attr...) \
{ \
- .type = _type, \
+ .type = SIDE_ENUM_INIT(_type), \
.u = { \
.side_dynamic = { \
.side_float = { \
#define side_arg_dynamic_vla(_vla) \
{ \
- .type = SIDE_TYPE_DYNAMIC_VLA, \
+ .type = SIDE_ENUM_INIT(SIDE_TYPE_DYNAMIC_VLA), \
.u = { \
.side_dynamic = { \
.side_dynamic_vla = SIDE_PTR_INIT(_vla), \
#define side_arg_dynamic_vla_visitor(_dynamic_vla_visitor, _ctx, _attr...) \
{ \
- .type = SIDE_TYPE_DYNAMIC_VLA_VISITOR, \
+ .type = SIDE_ENUM_INIT(SIDE_TYPE_DYNAMIC_VLA_VISITOR), \
.u = { \
.side_dynamic = { \
.side_dynamic_vla_visitor = { \
#define side_arg_dynamic_struct(_struct) \
{ \
- .type = SIDE_TYPE_DYNAMIC_STRUCT, \
+ .type = SIDE_ENUM_INIT(SIDE_TYPE_DYNAMIC_STRUCT), \
.u = { \
.side_dynamic = { \
.side_dynamic_struct = SIDE_PTR_INIT(_struct), \
#define side_arg_dynamic_struct_visitor(_dynamic_struct_visitor, _ctx, _attr...) \
{ \
- .type = SIDE_TYPE_DYNAMIC_STRUCT_VISITOR, \
+ .type = SIDE_ENUM_INIT(SIDE_TYPE_DYNAMIC_STRUCT_VISITOR), \
.u = { \
.side_dynamic = { \
.side_dynamic_struct_visitor = { \
const struct side_type *elem_type = side_ptr_get(type_desc->u.side_enum.elem_type);
union int64_value v64;
- if (elem_type->type != item->type) {
+ if (side_enum_get(elem_type->type) != side_enum_get(item->type)) {
fprintf(stderr, "ERROR: Unexpected enum element type\n");
abort();
}
{
uint32_t stride_bit;
- switch (elem_type->type) {
+ switch (side_enum_get(elem_type->type)) {
case SIDE_TYPE_BYTE:
stride_bit = 8;
break;
uint32_t i, print_count = 0, stride_bit, nr_items;
const struct side_arg *array_item;
- switch (enum_elem_type->type) {
+ switch (side_enum_get(enum_elem_type->type)) {
case SIDE_TYPE_U8: /* Fall-through */
case SIDE_TYPE_BYTE: /* Fall-through */
case SIDE_TYPE_U16: /* Fall-through */
for (bit = mapping->range_begin; bit <= mapping->range_end; bit++) {
if (bit > (nr_items * stride_bit) - 1)
break;
- if (elem_type->type == SIDE_TYPE_BYTE) {
+ if (side_enum_get(elem_type->type) == SIDE_TYPE_BYTE) {
uint8_t v = array_item[bit / 8].u.side_static.byte_value;
if (v & (1ULL << (bit % 8))) {
match = true;
{
enum side_type_label type;
- switch (type_desc->type) {
+ switch (side_enum_get(type_desc->type)) {
case SIDE_TYPE_ENUM:
- switch (item->type) {
+ switch (side_enum_get(item->type)) {
case SIDE_TYPE_U8:
case SIDE_TYPE_U16:
case SIDE_TYPE_U32:
break;
case SIDE_TYPE_ENUM_BITMAP:
- switch (item->type) {
+ switch (side_enum_get(item->type)) {
case SIDE_TYPE_U8:
case SIDE_TYPE_BYTE:
case SIDE_TYPE_U16:
break;
case SIDE_TYPE_GATHER_ENUM:
- switch (item->type) {
+ switch (side_enum_get(item->type)) {
case SIDE_TYPE_GATHER_INTEGER:
break;
default:
break;
case SIDE_TYPE_DYNAMIC:
- switch (item->type) {
+ switch (side_enum_get(item->type)) {
case SIDE_TYPE_DYNAMIC_NULL:
case SIDE_TYPE_DYNAMIC_BOOL:
case SIDE_TYPE_DYNAMIC_INTEGER:
break;
default:
- if (type_desc->type != item->type) {
+ if (side_enum_get(type_desc->type) != side_enum_get(item->type)) {
fprintf(stderr, "ERROR: type mismatch between description and arguments\n");
abort();
}
break;
}
- if (type_desc->type == SIDE_TYPE_ENUM || type_desc->type == SIDE_TYPE_ENUM_BITMAP ||
- type_desc->type == SIDE_TYPE_GATHER_ENUM)
- type = (enum side_type_label) type_desc->type;
+ if (side_enum_get(type_desc->type) == SIDE_TYPE_ENUM || side_enum_get(type_desc->type) == SIDE_TYPE_ENUM_BITMAP || side_enum_get(type_desc->type) == SIDE_TYPE_GATHER_ENUM)
+ type = side_enum_get(type_desc->type);
else
- type = (enum side_type_label) item->type;
+ type = side_enum_get(item->type);
printf("{ ");
switch (type) {
union int64_value v64;
uint32_t i;
- if (selector_type->type != side_arg_variant->selector.type) {
+ if (side_enum_get(selector_type->type) != side_enum_get(side_arg_variant->selector.type)) {
fprintf(stderr, "ERROR: Unexpected variant selector type\n");
abort();
}
- switch (selector_type->type) {
+ switch (side_enum_get(selector_type->type)) {
case SIDE_TYPE_U8:
case SIDE_TYPE_U16:
case SIDE_TYPE_U32:
uint32_t len;
printf("{ ");
- switch (type_desc->type) {
+ switch (side_enum_get(type_desc->type)) {
/* Gather basic types */
case SIDE_TYPE_GATHER_BOOL:
len = tracer_print_gather_bool_type(&type_desc->u.side_gather, ptr);
for (i = 0; i < type_gather->u.side_array.type.length; i++) {
const struct side_type *elem_type = side_ptr_get(type_gather->u.side_array.type.elem_type);
- switch (elem_type->type) {
+ switch (side_enum_get(elem_type->type)) {
case SIDE_TYPE_GATHER_VLA:
fprintf(stderr, "<gather VLA only supported within gather structures>\n");
abort();
uint32_t i, length;
/* Access length */
- switch (length_type->type) {
+ switch (side_enum_get(length_type->type)) {
case SIDE_TYPE_GATHER_INTEGER:
break;
default:
for (i = 0; i < length; i++) {
const struct side_type *elem_type = side_ptr_get(type_gather->u.side_vla.type.elem_type);
- switch (elem_type->type) {
+ switch (side_enum_get(elem_type->type)) {
case SIDE_TYPE_GATHER_VLA:
fprintf(stderr, "<gather VLA only supported within gather structures>\n");
abort();
void tracer_print_dynamic(const struct side_arg *item)
{
printf("{ ");
- switch (item->type) {
+ switch (side_enum_get(item->type)) {
/* Dynamic basic types */
case SIDE_TYPE_DYNAMIC_NULL:
tracer_print_type_header("::", side_ptr_get(item->u.side_dynamic.side_null.attr),